lovelace v0.1 — lace-clad lead tracker for Glitch University outreach

Standalone Python CLI + SQLite (stdlib only). Tracks creator leads, which
letters went to which address, replies, and the funnel (prospect → … → live).
Commands: init/add/list/show/set/note/sent/reply/next/stats/export. Lead data
(emails/PII) stays local and is gitignored.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Quince
2026-06-10 14:01:47 +02:00
commit 2099dbb155
7 changed files with 489 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Lead data lives in SQLite and is NOT version-controlled (it holds emails / PII).
*.db
.lovelace/
# Python
__pycache__/
*.pyc
*.egg-info/
dist/
build/
venv/