Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

Marketing & SEOBeginner24,1513,405AI score 9/10Last updated: Aug 9, 2026

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

  1. "Which accounts are at risk this quarter?" → routes to customer-success-manager and runs the health score script
  2. "Should we bid on this RFP?" → routes to sales-engineer for requirement coverage and competitive matrix
  3. "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)
  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 && 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. The router ships no tools, so also copy the four child skill folders under business-growth/skills/ the same way.
  6. Verify Python 3 with python3 --version if you plan to use the metric scorers.
  7. Restart Claude Code and try a prompt like "analyze which accounts are at churn risk" to confirm routing works.