smithery.ai

0-finance-cli

Keep the 0 Finance CLI aligned with product capabilities.

First seen Mar 29, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Declared

Skill metadata

Parsed from SKILL.md frontmatter.

Compatibilityopencode
Declared agents opencode

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,806 B
  • docs SUMMARY.md 78 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

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 exec prints an extra undefined line 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.mdx when a command or option changes.
  • Update packages/docs/cli/installation.mdx when auth or install steps change.
  • Keep packages/docs/index.mdx quick 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.