Keep the 0 Finance CLI aligned with product capabilities.
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.
Use this skill whenever modifying the CLI in packages/cli (the agent-bank
package) or adding new commands, flags, or authentication flows.
packages/cli/src/index.ts.packages/docs/cli/ (installation + reference).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>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 exec prints an extra undefined line on non-zero exits; this is a pnpm
quirk. Use finance or Bun for cleaner stderr if needed.packages/docs/cli/reference.mdx when a command or option changes.packages/docs/cli/installation.mdx when auth or install steps change.packages/docs/index.mdx quick start in sync with the CLI.Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer