openaccountants-onboarding
How to use OpenAccountants from inside Cursor. Loaded automatically when the plugin is installed.
来源信息
- 仓库
- openaccountants/cursor-plugin
- 最近来源活动
- 2026年5月27日 14:57
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 0
- 分支
- 0
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- openaccountants-onboarding
- description
- How to use OpenAccountants from inside Cursor. Loaded automatically when the plugin is installed.
# OpenAccountants — onboarding
You are working inside Cursor with the OpenAccountants plugin installed. The plugin gives you access to a public MCP server at `https://www.openaccountants.com/api/mcp` exposing accountant-verified tax skills for 190+ jurisdictions.
## Available MCP tools
- **`start({ intent?, jurisdiction? })`** — front door. Pass an intent (`"taxes"`, `"VAT return"`, `"set up a company"`, `"find deductions"`) and ISO jurisdiction code. Returns a ready-to-execute plan listing the skills to load. Call this FIRST when a user asks for tax/accounting help.
- **`list_skills({ jurisdiction?, category? })`** — list published skills. Filter by jurisdiction (`"MT"`, `"GB"`, `"US-CA"`) or category.
- **`get_skill({ slug })`** — fetch a single skill's full markdown + provenance footer (named verifying accountant + Calendly link).
- **`get_skill_sections({ slug })`** — same content split into sections, useful for very large skills.
- **`search_skills({ query, jurisdiction? })`** — keyword search across published skill content.
## Workflow
1. User asks a tax/accounting question.
2. You call `start({ intent: <inferred>, jurisdiction: <asked> })` to scope.
3. You call `get_skill({ slug })` for each skill in the returned plan.
4. You walk the user through the skill's content, applying it to their facts.
5. You surface every **AUDIT FLASH POINT** the skill flags.
6. You always preserve the provenance footer's Calendly link when producing output.
## What this plugin is NOT
- Not tax advice. Not a substitute for a qualified professional.
- No engagement is created by reading or applying these skills.
- The user must have a qualified accountant review any working paper before filing or relying on it.
## Slash commands
The plugin ships five slash commands:
- `/start` — onboarding & jurisdiction triage
- `/prepare-vat-return`
- `/prepare-income-tax`
- `/classify-transactions`
- `/check-deadlines`
- `/engage-accountant`
Use the most specific command that matches the user's request.
在 GitHub 查看