Business & Growth Skills Router
An index skill that routes growth and revenue requests to exactly one of four specialist skills: customer success, sales engineering, RevOps, or contracts/proposals.
What it does
Acts as a dispatcher for a bundle of four business skills. It matches signals in your request against a routing table and loads exactly one specialist skill; if several rows match, it asks a single clarifying question first.
- customer-success-manager — health scoring, churn risk, expansion plays
- sales-engineer — RFP/RFI coverage, competitive positioning, PoC plans
- revenue-operations — pipeline coverage, forecast accuracy (MAPE), GTM efficiency
- contract-and-proposal-writer — proposals, contracts, SOWs, DPAs
- Explicitly requires using each skill's Python scorers instead of manual estimates, and treats deal/contract output as drafts for human legal review.
Who it's for
- Customer success managers, sales engineers, and RevOps analysts in B2B/SaaS
- Anyone juggling multiple growth skills who isn't sure which to invoke
- Business development teams drafting proposals and contracts often
Examples
- "Which accounts are at risk this quarter?" → routes to customer-success-manager and runs the health score script
- "Should we bid on this RFP?" → routes to sales-engineer for requirement coverage and competitive matrix
- "Why is our forecast off this month?" → routes to revenue-operations to check pipeline coverage and MAPE
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.gemini/skills/business-growth-skills/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .gemini/skills/business-growth-skills folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/business-growth-skills/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/alirezarezvani/claude-skills.git && cp -r claude-skills/.gemini/skills/business-growth-skills ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/alirezarezvani/claude-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the router:
cp -r claude-skills/.gemini/skills/business-growth-skills ~/.claude/skills/ - The router ships no tools, so also copy the four child skill folders under
business-growth/skills/the same way. - Verify Python 3 with
python3 --versionif you plan to use the metric scorers. - Restart Claude Code and try a prompt like "analyze which accounts are at churn risk" to confirm routing works.