Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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.

UtilitiesBeginner24,1513,405AI score 6/10Last updated: Aug 9, 2026

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

  1. "Which accounts are at risk this quarter?" → routes to customer-success-manager and runs the health score calculator
  2. "Should we bid on this RFP?" → routes to sales-engineer for requirement coverage and a competitive matrix
  3. "Check pipeline coverage and forecast MAPE" → routes to revenue-operations

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/alirezarezvani/claude-skills.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the router: cp -r claude-skills/.gemini/skills/business-growth-skills ~/.claude/skills/
  5. Also copy the child skills that contain the actual tooling: customer-success-manager, sales-engineer, revenue-operations, contract-and-proposal-writer.
  6. Restart Claude Code and try a prompt like "analyze which accounts are at churn risk".
  7. Verify Python 3 with python3 --version if you plan to run the scoring scripts.