
0 Finance Cli
- 11 installs
- 247 repo stars
- Updated April 3, 2026
- different-ai/agent-bank
Keeps the 0 Finance CLI agent-native by mirroring every new product capability as a matching CLI command and updating the docs.
About
Instructs how to add or update CLI commands in the agent-bank package so the CLI stays in sync with product features, plus how to run and document them. A developer uses it when modifying the 0 Finance CLI.
- Add matching command in packages/cli/src/index.ts and update docs
- Run via Bun or `pnpm exec tsx` to avoid Commander `--` quirks
0 Finance Cli by the numbers
- 11 all-time installs (skills.sh)
- Ranked #391 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/different-ai/agent-bank --skill 0-finance-cliAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 11 |
|---|---|
| repo stars | ★ 247 |
| Last updated | April 3, 2026 |
| Repository | different-ai/agent-bank ↗ |
What it does
Keeps the 0 Finance CLI agent-native by mirroring every new product capability as a matching CLI command and updating the docs.
Files
Purpose
Keep the 0 Finance CLI agent-native: every user-facing capability in 0 Finance should be mirrored in the CLI. If a feature is added to the product, add the corresponding CLI command and update docs.
When to Use
Use this skill whenever modifying the CLI in packages/cli (the agent-bank package) or adding new commands, flags, or authentication flows.
Workflow
1. Identify the product capability being exposed. 2. Add or update the matching CLI command in packages/cli/src/index.ts. 3. Update CLI docs in packages/docs/cli/ (installation + reference). 4. Update product docs or landing pages if the CLI entrypoint changes. 5. Verify the CLI output examples match actual responses.
Testing
Run commands from packages/cli using either Bun or pnpm:
bun --cwd packages/cli run dev -- <command args>pnpm --filter agent-bank exec tsx src/index.ts <command args>
Common Issues
pnpm --filter agent-bank dev -- ...injects a literal--argument, which
Commander treats as end-of-options; use pnpm --filter agent-bank exec tsx src/index.ts ... instead.
pnpm execprints an extraundefinedline on non-zero exits; this is a pnpm
quirk. Use finance or Bun for cleaner stderr if needed.
Documentation Requirements
- Update
packages/docs/cli/reference.mdxwhen a command or option changes. - Update
packages/docs/cli/installation.mdxwhen auth or install steps change. - Keep
packages/docs/index.mdxquick start in sync with the CLI.
Completion Criteria
- CLI functionality matches the product capability.
- Docs reflect the latest CLI behavior.
- If the CLI is user-facing, update the landing quick-start copy.