AgentSkillsCN

install-claude-stack

安装最优的 Claude Code 插件栈(Superpowers + oh-my-claudecode + context7 + serena)。验证现有安装,仅安装缺失的插件。可通过“安装 Claude 插件栈”、“设置 Claude 环境”、“Claude 环境安装”等指令触发。

SKILL.md
--- frontmatter
name: install-claude-stack
description: >
  Install optimal Claude Code plugin stack (superpowers + oh-my-claudecode + context7 + serena).
  Verifies existing installations, installs only missing plugins.
  Triggers on "install claude stack", "setup claude", "claude 환경 설치".

Install Claude Stack

Plugin-based Claude Code optimal stack installation.

Stack Components

PluginMarketplaceRole
superpowersclaude-plugins-officialTDD/workflow, brainstorming, writing-plans
oh-my-claudecodeomcHUD, 32 agents, autopilot/ralph/ultrawork
context7claude-plugins-officialUp-to-date library documentation
serenaclaude-plugins-officialSemantic code analysis

Usage

bash
/install-claude-stack                     # Verify → Install missing (interactive)
/install-claude-stack --auto              # Full automatic installation
/install-claude-stack --check             # Verify only (no installation)
/install-claude-stack --module <name>     # Install specific module only

Module Options

ModuleDescription
superpowersSuperpowers plugin only
omcoh-my-claudecode plugin only
context7Context7 plugin only
serenaSerena plugin only

Workflow

Phase 1: Prerequisites Verification

Check Claude Code CLI is installed:

bash
claude --version

If not installed, guide user to https://claude.ai/code

Phase 2: Plugin Verification

Check each plugin's installation status:

bash
# Check enabled plugins in settings.json
cat ~/.claude/settings.json | grep -A 20 "enabledPlugins"

Expected plugins:

  • superpowers@claude-plugins-official
  • oh-my-claudecode@omc
  • context7@claude-plugins-official
  • serena@claude-plugins-official

Phase 3: Installation

Install only missing plugins:

3.1 Add Marketplaces

code
/plugin marketplace add claude-plugins-official
/plugin marketplace add omc

3.2 Install Plugins

Superpowers:

code
/plugin install superpowers@claude-plugins-official

oh-my-claudecode:

code
/plugin install oh-my-claudecode@omc

Context7:

code
/plugin install context7@claude-plugins-official

Serena:

code
/plugin install serena@claude-plugins-official

Phase 4: Post-Install Setup

oh-my-claudecode setup (recommended):

code
/oh-my-claudecode:omc-setup

Phase 5: Verification

Re-verify all plugins and generate report:

code
╔══════════════════════════════════════════════════════════════╗
║              Claude Stack Installation Report                 ║
╠══════════════════════════════════════════════════════════════╣
║  Plugins                                                      ║
║  ├─ superpowers@claude-plugins-official    ✓                 ║
║  ├─ oh-my-claudecode@omc                   ✓                 ║
║  ├─ context7@claude-plugins-official       ✓                 ║
║  └─ serena@claude-plugins-official         ✓                 ║
╠══════════════════════════════════════════════════════════════╣
║  Features Available                                           ║
║  ├─ TDD/Workflow (superpowers)             ✓                 ║
║  ├─ HUD StatusLine (omc)                   ✓                 ║
║  ├─ 32 Agents (omc)                        ✓                 ║
║  ├─ Autopilot/Ralph/Ultrawork (omc)        ✓                 ║
║  ├─ Latest Docs (context7)                 ✓                 ║
║  └─ Code Analysis (serena)                 ✓                 ║
╚══════════════════════════════════════════════════════════════╝

Plugin Details

superpowers

SkillDescription
test-driven-developmentTDD enforcement
brainstormingRequirements exploration
writing-plansImplementation planning
executing-plansPlan execution with checkpoints
systematic-debuggingStructured debugging
verification-before-completionPre-commit verification

oh-my-claudecode

FeatureDescription
HUDReal-time status display
autopilotFull autonomous execution
ralphPersistent loop until completion
ultraworkMaximum parallel execution
32 agentsSpecialized task agents

context7

FeatureDescription
resolve-library-idFind library documentation
get-library-docsFetch latest docs

Usage: Include "use context7" in prompts.

serena

FeatureDescription
Semantic analysisCode structure understanding
Symbol navigationFind/replace symbols
Memory systemPersistent project context

Error Handling

Error TypeHandling
Marketplace not foundRetry add command
Plugin install failedCheck network → Retry
Plugin conflictDisable conflicting plugin

Post-Installation

After successful installation:

code
╔══════════════════════════════════════════════════════════════╗
║                    Installation Complete!                     ║
╠══════════════════════════════════════════════════════════════╣
║  Next Steps:                                                  ║
║                                                              ║
║  1. Run OMC setup:                                           ║
║     /oh-my-claudecode:omc-setup                              ║
║                                                              ║
║  2. Try these commands:                                      ║
║     "use context7: React 19"    # Latest docs               ║
║     "autopilot: build X"        # Auto execution            ║
║     "tdd: implement Y"          # Test-first                ║
║                                                              ║
║  3. View HUD status in terminal statusline                   ║
║                                                              ║
╚══════════════════════════════════════════════════════════════╝

Reference