Files
leo-claude-mktplace/plugins/projman/.claude-plugin/plugin.json
lmiranda cff97eb3bb fix: add missing plugin declarations and fix hardcoded paths
- projman/plugin.json: Added commands, agents, and skills declarations
- project-hygiene/plugin.json: Added hooks declaration for PostToolUse
- projman/.mcp.json: Changed hardcoded paths to ${CLAUDE_PLUGIN_ROOT}
- cmdb-assistant/.mcp.json: Changed hardcoded paths to ${CLAUDE_PLUGIN_ROOT}

Plugins were not being recognized because plugin.json files only had
metadata but no component declarations.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 10:47:00 -05:00

65 lines
1.9 KiB
JSON

{
"name": "projman",
"version": "0.1.0",
"description": "Sprint planning and project management with Gitea and Wiki.js integration",
"author": {
"name": "Bandit Labs",
"email": "dev@banditlabs.io"
},
"license": "MIT",
"repository": "https://gitea.hotserv.cloud/bandit/support-claude-mktplace",
"keywords": [
"project-management",
"sprint-planning",
"gitea",
"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"
}
}
}