用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/different-ai/agent-bank --skill 0-finance-cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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
基于 SOC 职业分类
正在显示 SKILL.md
| 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.