mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
## Plugin Migration Added to pm-agent plugin: - /research: Deep web research with adaptive planning - /index-repo: Repository index (94% token reduction) - Total: 3 commands (pm, research, index-repo) ## Slash Commands Deleted Removed all 27 slash commands from ~/.claude/commands/sc/: - analyze, brainstorm, build, business-panel, cleanup - design, document, estimate, explain, git, help - implement, improve, index, load, pm, reflect - research, save, select-tool, spawn, spec-panel - task, test, troubleshoot, workflow ## Architecture Change Strategy: Minimal start with PM Agent orchestration - PM Agent = orchestrator (統括コマンダー) - Task tool (general-purpose, Explore) = execution - Plugin commands = specialized tasks when needed - Avoid reinventing the wheel (use official tools first) ## Files Changed - .claude-plugin/plugin.json: Added research + index-repo - .claude-plugin/commands/research.md: Copied from slash command - .claude-plugin/commands/index-repo.md: Copied from slash command - ~/.claude/commands/sc/: DELETED (all 27 commands) ## Benefits ✅ Minimal footprint (3 commands vs 27) ✅ Plugin-based distribution ✅ Version control ✅ Easy to extend when needed 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
872 B
JSON
31 lines
872 B
JSON
{
|
|
"name": "pm-agent",
|
|
"version": "1.0.0",
|
|
"description": "Project Manager Agent with 90% confidence checks and zero-footprint memory",
|
|
"author": "SuperClaude Team",
|
|
"commands": [
|
|
{
|
|
"name": "pm",
|
|
"path": "commands/pm.md",
|
|
"description": "Activate PM Agent with confidence-driven workflow"
|
|
},
|
|
{
|
|
"name": "research",
|
|
"path": "commands/research.md",
|
|
"description": "Deep web research with adaptive planning and intelligent search"
|
|
},
|
|
{
|
|
"name": "index-repo",
|
|
"path": "commands/index-repo.md",
|
|
"description": "Create repository structure index for fast context loading (94% token reduction)"
|
|
}
|
|
],
|
|
"skills": [
|
|
{
|
|
"name": "confidence_check",
|
|
"path": "skills/confidence_check.py",
|
|
"description": "Pre-implementation confidence assessment (≥90% required)"
|
|
}
|
|
]
|
|
}
|