Business & Growth Skills Router
A router skill that picks the right one of four growth skills: customer success, sales engineering, revenue operations, or contract/proposal writing.
What it does
Acts as a dispatcher for a bundle of four business skills. When a revenue or growth request is ambiguous, it consults a routing table that maps request signals (churn risk, RFP coverage, forecast accuracy, contracts) to exactly one specialized skill, asking a single clarifying question when multiple rows match.
The router itself ships no tools — it points Claude to the chosen skill's SKILL.md and its Python scoring scripts, and reminds you that contract/deal output is a draft for human legal review.
Who it's for
- SaaS/B2B operators wearing multiple hats across CS, sales, and RevOps
- Teams that installed several business skills and want deterministic routing
- Anyone who prefers script-computed metrics over eyeballed estimates
Examples
- "Which accounts are at risk this quarter?" → routes to customer-success-manager and runs the health score calculator
- "Should we bid on this RFP?" → routes to sales-engineer for requirement coverage and a competitive matrix
- "Check pipeline coverage and forecast MAPE" → routes to revenue-operations
· · · Install guide · · ·
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 && mkdir -p ~/.claude/skills && 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/ - Also copy the child skills that contain the actual tooling: customer-success-manager, sales-engineer, revenue-operations, contract-and-proposal-writer.
- Restart Claude Code and try a prompt like "analyze which accounts are at churn risk".
- Verify Python 3 with
python3 --versionif you plan to run the scoring scripts.