← Back to list

0-finance-cli
by different-ai
CLI-first banking for agents
⭐ 175🍴 32📅 Jan 23, 2026
SKILL.md
name: 0-finance-cli description: Keep the 0 Finance CLI aligned with product capabilities. compatibility: opencode
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
- Identify the product capability being exposed.
- Add or update the matching CLI command in
packages/cli/src/index.ts. - Update CLI docs in
packages/docs/cli/(installation + reference). - Update product docs or landing pages if the CLI entrypoint changes.
- 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; usepnpm --filter agent-bank exec tsx src/index.ts ...instead.pnpm execprints an extraundefinedline on non-zero exits; this is a pnpm quirk. Usefinanceor 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.
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
✓人気
GitHub Stars 100以上
+5
✓最近の活動
1ヶ月以内に更新
+10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon


