Thank you for your purchase! Download your skills below, then follow the install instructions for your tool.
6 skill files (.md) + 3 PowerPoint templates (.pptx)
For Claude Code terminal, VS Code, JetBrains
6 skill files (.md) for any AI app
For Claude.ai, ChatGPT, Gemini, Cursor, Windsurf, Codex, Copilot
.md file (e.g. strategy-coach.md)For power users: install the skills into your specific tool so they load automatically.
Skills live in ~/.claude/skills/. Each skill gets its own folder with a SKILL.md file. Once placed, Claude Code auto-detects them and they appear as /slash-commands.
# Unzip first, then install all skills
cd strategyu-skills
for f in skills/*.md; do
name=$(basename "$f" .md)
mkdir -p ~/.claude/skills/$name
cp "$f" ~/.claude/skills/$name/SKILL.md
done
# Or install a single skill
mkdir -p ~/.claude/skills/strategy-coach
cp skills/strategy-coach.md ~/.claude/skills/strategy-coach/SKILL.mdVerify: open Claude Code and type /strategy-coach — it should autocomplete.
Works in any Claude.ai conversation or project via the Customize option.
.md file directly (e.g. strategy-coach.md, problem-framer.md)For Projects: click the project name, then Project Instructions, and paste the skill content there. Every conversation in that project will use it automatically.
Add skills to a Cowork session for collaborative strategy work.
strategy-coach.md) as contextCursor loads project rules from .cursor/rules/ automatically.
mkdir -p .cursor/rules
cp skills/strategy-coach.md .cursor/rules/strategy-coach.mdc
cp skills/problem-framer.md .cursor/rules/problem-framer.mdc
# Repeat for each skill you wantWindsurf's Cascade AI reads from .windsurf/rules/.
mkdir -p .windsurf/rules
cp skills/*.md .windsurf/rules/Codex reads from AGENTS.md in your project root or ~/.codex/AGENTS.md globally.
# Global (available in all projects)
cat skills/strategy-coach.md >> ~/.codex/AGENTS.md
# Or project-level
cat skills/strategy-coach.md >> ./AGENTS.mdCopilot Chat uses .github/copilot-instructions.md as context for every response.
mkdir -p .github
cat skills/strategy-coach.md >> .github/copilot-instructions.mdGemini reads from the .gemini/ directory in your repository.
mkdir -p .gemini
cp skills/*.md .gemini/For any AI chat that supports custom instructions or system prompts:
strategy-coach.md)These skills work with any model, but you'll get the best results with the most capable ones. Use extended thinking when available — it helps the model follow multi-step frameworks like SCQA and Pyramid Principle more faithfully.
Questions? Email [email protected]