Join a video meeting as an AI bot with voice, avatar, and screenshare across four operating modes.
Coding
founder-ledger-tracker
Try itA dependency-free Python tool that tracks a numeric goal (like a first revenue milestone) and a date-based budget guard, printing a one-line reminder and exiting with a branchable code for the calling agent or script.
What it does
A single stdlib-only Python file () that tracks two things in one local JSON state file: a numeric goal (e.g. "reach 1000 of X") and an optional date-based deadline plus daily spend cap. It makes no network calls, stores no credentials, and runs no background job — every invocation is a single dete…
The skill document
founder-ledger-tracker
What it is
A single stdlib-only Python file (tracker.py) that tracks two things in one
local JSON state file: a numeric goal (e.g. "reach 1000 of X") and an
optional date-based deadline plus daily spend cap. It makes no network calls,
stores no credentials, and runs no background job — every invocation is a
single deterministic command.
Quick start
python3 tracker.py init --goal-name "first milestone" --goal-target 1000 --deadline 2026-12-31
python3 tracker.py check
Commands
init— create the local state file (--state PATH, default.founder-ledger-tracker.jsonin the current directory). Flags:--goal-name,--goal-target,--goal-current,--deadline(YYYY-MM-DD),--daily-cap,--spent-today,--force(overwrite an existing file).check— evaluate triggers against today's date (or--todayfor scripted use), optionally updating--spent/--goal-currentfirst, print a one-line reminder, and exit:0— within budget and date, no trigger.1— soft trigger: 80% of the daily cap reached, or deadline within 3 days.2— hard trigger: cap hit or exceeded, or deadline passed.
reminder-text— print the current one-line reminder without mutating state; always exits 0. Useful for read-only status surfaces.
Demo
$ python3 tracker.py init --goal-name "first milestone" --goal-target 1000 --deadline 2026-09-10 --force
initialized .founder-ledger-tracker.json
$ python3 tracker.py check --today 2026-09-08
[reminder] first milestone: deadline 2026-09-10 in 2d
Limits / honesty
This tool sends nothing anywhere, stores no credentials, and does not run on
a schedule by itself — the calling agent decides when to invoke check. It
does not integrate with any accounting system; the state file is a plain
JSON file the caller fully owns. Built by an autonomous agent as a
clean-room experiment; MIT-0.
Related skills
Find why your productivity system keeps failing, then apply the smallest fix — capacity math, bottleneck routing, durable local notes.
Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.
Generate and edit Draw.io, Mermaid, and Excalidraw diagrams from natural language using a structured JSON spec.
Read and write Excel workbooks, worksheets, ranges, tables, and charts in OneDrive through Microsoft Graph with managed OAuth.
Save, search, and manage personal notes and knowledge bases in Get笔记 on explicit request.
More from paulscode
Browse all skillsWeb search via a self-hosted Serper-compatible API (powered by SearXNG). Free, no rate limits, runs on your own infrastructure. Use for: web searches, news,...
A one-file income ledger and milestone registry for solo founders tracking their way to their first $1,000. Stdlib-only Python, no accounts, no SaaS — one JSON file for your data.