summaryrefslogtreecommitdiffstats
path: root/TODO.md
AgeCommit message (Collapse)AuthorFilesLines
2026-07-05feat(budget): tx edit --budget and budget update (v0.5.0)HEADv0.5.0masterDanilo M.1-5/+3
Add two deferred budget follow-ups: - tx edit --budget: re-assign a budget on an existing transaction, mirroring the existing tx add --budget flag (name/id resolved, hard error on miss). Resolves the ISSUES.md backfill wish. - budget update: rename a budget and/or edit its auto-budget fields via PUT /budgets/{id}; only fields passed are sent, empty is a hard error. New command adds to the CLI surface without breaking callers, so this is a MINOR bump (0.4.1 -> 0.5.0). Docs (README, SKILL.md), completion, and TODO synced. The tx add --budget-id item stays open (still YAGNI). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03docs: log deferred budget follow-ups in TODO.md (tx edit --budget, budget ↵Danilo M.1-0/+9
update, --budget-id) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03docs: mark budget group done in TODO.md (v0.4.0/v0.4.1)Danilo M.1-1/+2
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03fix(budget): flatten limit commands to 2-token leaves (limit-list/limit-set)Danilo M.1-0/+10
The CLI dispatcher (cli.py _build_parser) and completion generator both partition the command name on the first space, nesting only two levels (group + leaf). A three-token 'budget limit set' registers but is unreachable via the CLI (invalid choice: 'limit'); the mocked unit suite missed this because it calls handlers directly, bypassing dispatch. Flatten to 'budget limit-list' / 'budget limit-set' (hyphenated 2-token leaf), matching every other command. Logged the n-level dispatcher refactor in TODO.md for when a future group needs real sub-subcommands. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-01feat: completion suggests --type values per commandv0.3.4Danilo M.1-1/+3
Tab-completing --type now offers the valid values instead of nothing: account list -> asset/expense/revenue/liability, account create -> asset/expense/revenue, tx add/edit -> withdrawal/deposit/transfer. Keyed per command off a static FLAG_VALUES map in gen_completion.py (types are a fixed Firefly enum, so no API call in the completion). Partial input filters and unrelated flags still complete normally. Completion-only: no CLI/JSON/exit change, ships under v0.3.4. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30Updated TODO.mdDanilo M.1-0/+3
2026-06-30test: cover --human _VIEWS; add TODO.mdDanilo M.1-0/+29
Add unit tests for each output view (account, tag, account balance, category): right columns surfaced, API plumbing dropped. Add TODO.md listing the deferred command groups and follow-up work. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>