Egyszerű CLI alapú follow-up tracker (mini CRM álláskereséshez és kommunikáció követéshez).
- helyi SQLite adatbázis
- adat tárolása Windows alatt %APPDATA%/trackr, Linux/macOS alatt ~/.trackr
- YAML import/export
- egyszerű workflow státuszok: created, waitme, waityou, finished
- aktivitás napló és teljes eseménytörténet
- opcionális description mező
- clipboard alapú használat
- automatikus metaadat felismerés (email, telefonszám, URL-ek, LinkedIn)
- egyedi metaadatok támogatása
pipx install .
vagy
pip install -e .
trackr init
trackr add devops-role "DevOps Engineer Budapest" --desc "OpenShift pozíció recruiter kapcsolattal"
trackr state devops-role waityou trackr note devops-role "CV elküldve" trackr set-review devops-role 2026-03-23
trackr list trackr review trackr activity trackr history devops-role
trackr apply devops-role --state waityou --next-review 2026-03-25
trackr apply devops-role --note "LinkedIn follow-up elküldve"
trackr add-from-clipboard job-1
trackr add-from-clipboard job-1 --source linkedin
trackr note-from-clipboard job-1
trackr add-from-clipboard job-1 --meta company=EPAM --meta person=John
A clipboard tartalomból automatikusan felismeri:
- email címek
- telefonszámok
- URL-ek
- LinkedIn linkek
Példa:
{ "email": "recruiter@example.com", "phone": "+36301234567", "linkedin": "https://linkedin.com/in/example", "source": "linkedin" }
items:
- id: devops-role-FixY title: DevOps Engineer - Budapest description: | OpenShift fókuszú szerep. Recruiter: fix Y state: waityou next_review: 2026-03-23 meta: recruiter: fix Y source: linkedin email: fixy@example.com
trackr export-yaml backup.yaml
- trackr history <item_id> teljes eseménytörténetet mutat
- trackr list --fields id,title,state tömör listát ad
MIT