Skip to content

Latest commit

 

History

History
98 lines (63 loc) · 2.5 KB

File metadata and controls

98 lines (63 loc) · 2.5 KB

Installation Guide

This guide installs Strategy Consulting Visualization Skill for agent tools that support the SKILL.md convention.

Prerequisites

  • An agent tool that can load local skills.
  • Node.js 18+ for the Skills CLI install, Git for clone-based installation, or curl for direct download.

Skills CLI (Recommended)

The fastest path, and it works across Claude Code, Cursor, Codex, and 70+ other agents (skills.sh):

npx skills add kgraph57/mckinsey-style-visualization-skill

Add -g to install at the user level instead of the current project.

Personal Installation (Claude Code clone install)

Use this when you want the skill available across projects.

git clone https://github.com/kgraph57/mckinsey-style-visualization-skill.git ~/.claude/skills/strategy-consulting-visualization

Project Installation

Use this when the skill should live inside one repository.

mkdir -p .claude/skills
git clone https://github.com/kgraph57/mckinsey-style-visualization-skill.git .claude/skills/strategy-consulting-visualization

Direct Download

Use this when you only need the entrypoint and not the full reference package.

mkdir -p ~/.claude/skills/strategy-consulting-visualization
curl -o ~/.claude/skills/strategy-consulting-visualization/SKILL.md https://raw.githubusercontent.com/kgraph57/mckinsey-style-visualization-skill/main/SKILL.md

For marketplace-quality behavior, clone the full repository instead of downloading only SKILL.md, because the skill references files in references/.

Verify

After clone-based installation:

cd ~/.claude/skills/strategy-consulting-visualization
python3 scripts/validate_skill.py

Expected:

OK: skill package passed validation

Update

cd ~/.claude/skills/strategy-consulting-visualization
git pull
python3 scripts/validate_skill.py

Troubleshooting

Skill Does Not Appear

  1. Confirm the folder contains SKILL.md.
  2. Confirm the skill folder path matches your agent tool's expected skill directory.
  3. Restart the agent tool so it reloads skill metadata.
  4. Check that SKILL.md starts with YAML frontmatter.

References Are Missing

If only SKILL.md was downloaded, clone the full repository so the references/ files are available.

Validation Fails

Run:

python3 scripts/validate_skill.py

Fix the first reported error, then run the command again.

Uninstall

rm -rf ~/.claude/skills/strategy-consulting-visualization