CC4PMs Mastery Bonus banner
carlvellotti carlvellotti

CC4PMs Mastery Bonus

AI community

Description

3 Claude Code skills & commands: multi-model council, subagent delegation, and web research

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

CC4PMs Mastery Bonus: Claude Code Skills & Commands

Three power-ups for Claude Code that make it dramatically more useful.

Claude Code at the moment
Skill What It Does Type Prerequisites
/consult-the-council Ask GPT, Gemini, and Grok the same question — get 3 perspectives at once Command API keys for OpenAI, Google, xAI
/spin-up Force Claude to delegate work to parallel subagents instead of doing everything in one thread Command None
/web-research Upgraded web research with Tavily search + Firecrawl scraping Skill Tavily MCP server, Firecrawl CLI

Quick Concepts: Skills vs Commands

Claude Code has two extension types:

  • Commands (.claude/commands/) — Slash commands you invoke manually (e.g., /consult-the-council). They're prompt files that tell Claude what to do.
  • Skills (.claude/skills/) — Automatic behaviors Claude activates when relevant. They include trigger conditions, allowed tools, and reference docs. You can also invoke them manually.

Both live in your project's `.claude/` directory.


Installation

1. `/consult-the-council` — Multi-Model Council

Ask Claude to consult GPT, Gemini, and Grok simultaneously and synthesize their answers. Great for hard decisions, architecture debates, or getting unstuck.

**Install:**

# Copy the command file
cp consult-the-council/consult-the-council.md YOUR_PROJECT/.claude/commands/

# Copy the Python script (put it wherever makes sense for your project)
cp consult-the-council/consult_council.py YOUR_PROJECT/scripts/

**Important:** Update the script path in `consult-the-council.md` (line 31) to match where you put `consult_council.py`.

**Prerequisites:**

# Install Python dependencies
pip3 install openai google-genai

# Set API keys (add to your .env or export them)
OPENAI_API_KEY=sk-...       # https://platform.openai.com/api-keys
G