fix: use directory path format for commands/agents/skills

Claude Code requires simple directory paths like "./commands/"
not object declarations with individual entries.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-12 11:48:06 -05:00
parent cff97eb3bb
commit 011251c84e
2 changed files with 5 additions and 70 deletions

View File

@@ -15,50 +15,7 @@
"wikijs",
"agile"
],
"commands": {
"sprint-plan": {
"description": "Plan a new sprint with Gitea issues and Wiki.js documentation",
"source": "commands/sprint-plan.md"
},
"sprint-start": {
"description": "Start sprint execution with orchestrator coordination",
"source": "commands/sprint-start.md"
},
"sprint-status": {
"description": "Get current sprint status and progress report",
"source": "commands/sprint-status.md"
},
"sprint-close": {
"description": "Close sprint and capture lessons learned",
"source": "commands/sprint-close.md"
},
"labels-sync": {
"description": "Sync label taxonomy from Gitea organization",
"source": "commands/labels-sync.md"
},
"initial-setup": {
"description": "Initialize projman configuration for a new project",
"source": "commands/initial-setup.md"
}
},
"agents": {
"planner": {
"description": "Architecture analysis and sprint planning agent",
"source": "agents/planner.md"
},
"orchestrator": {
"description": "Sprint execution coordinator and progress tracker",
"source": "agents/orchestrator.md"
},
"executor": {
"description": "Implementation agent that follows execution prompts",
"source": "agents/executor.md"
}
},
"skills": {
"label-taxonomy": {
"description": "Gitea label taxonomy reference for issue classification",
"source": "skills/label-taxonomy"
}
}
"commands": "./commands/",
"agents": "./agents/",
"skills": "./skills/"
}