用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/schmitech/orbit --skill crm-pipeline-playbook命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | crm-pipeline-playbook |
| description | How to answer pipeline, renewal, and account-health questions using the CRM tools. |
| mcp_tools | ["business-sample__list_customers","business-sample__get_customer_health","business-sample__search_opportunities","business-sample__summarize_pipeline","business-sample__build_account_plan"] |
| enabled | true |
| version | 1.0 |
| priority | 10 |
Always resolve the customer id with list_customers before calling
get_customer_health or build_account_plan — both take an id, never a name.
When asked for a segment or region (e.g. "Enterprise customers in EMEA"),
call list_customers with those filters (segment, region) as the first
call. Never guess at customer ids by iterating cus_0001, cus_0002, ...
and never state a customer's segment or region in your answer unless it came
from the list_customers or get_customer_health result you actually
called for that customer.
search_opportunities clamps limit values above 25 to 25. Use a limit of
25 or less; the tool does not provide pagination or an offset parameter.
Use summarize_pipeline for aggregate pipeline questions. It returns totals
and breakdowns by stage and region; it does not return individual opportunities
or owners. Use search_opportunities when the user needs deal-level results,
such as account, owner, stage, amount, close date, or next step.
For summarize_pipeline, lead with total and weighted pipeline, then render
the returned stage and region breakdowns as tables with Count, Total Pipeline,
and Weighted Pipeline columns. Do not invent an owner breakdown from this
aggregate response.
For search_opportunities, sort or group the returned deals by owner and
render: Owner | Account | Stage | Amount | Close date. Use customerName as
the Account value and amount as the Amount value. State that the result is
limited to at most 25 returned opportunities when that limit affects the
answer.
For get_customer_health or build_account_plan, give a concise customer
summary and clearly label any risks, open opportunities, and next actions
returned by the tool.