aboutsummaryrefslogtreecommitdiffstats
path: root/firefly_cli/commands/budget.py
AgeCommit message (Collapse)AuthorFilesLines
2026-07-03fix(budget): flatten limit commands to 2-token leaves (limit-list/limit-set)Danilo M.1-2/+2
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-03feat(budget): limit list and limit setDanilo M.1-0/+28
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03feat(budget): delete, enable, disableDanilo M.1-0/+33
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03feat(budget): budget createDanilo M.1-0/+31
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03feat(budget): budget list with current-month defaultDanilo M.1-0/+43
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>