mit einem Klick
mit einem Klick
Debug production issues on Vercel using logs, database inspection, and proper deployment waiting
Make features testable by design. Testing pyramid from fast (local) to slow (UI). Expose APIs securely for testing.
Manage DNS records for domains hosted on Vercel using the Vercel CLI
Workspace guide to introduce OpenWork and onboard new users.
Access and update company administrative information stored in Notion
Create and register new OpenCode skills in this repo
| name | 0-finance-cli |
| description | Keep the 0 Finance CLI aligned with product capabilities. |
| compatibility | opencode |
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.