fix: add missing plugin declarations and fix hardcoded paths #23

Merged
lmiranda merged 1 commits from development into main 2025-12-12 15:57:20 +00:00
4 changed files with 70 additions and 11 deletions
Showing only changes of commit cff97eb3bb - Show all commits

View File

@@ -1,11 +1,11 @@
{
"mcpServers": {
"netbox": {
"command": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/netbox/.venv/bin/python",
"command": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/netbox/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/netbox",
"cwd": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/netbox",
"env": {
"PYTHONPATH": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/netbox"
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/netbox"
}
}
}

View File

@@ -8,5 +8,18 @@
},
"license": "MIT",
"keywords": ["cleanup", "hygiene", "automation", "hooks", "maintenance"],
"repository": "https://github.com/bandit-labs/project-hygiene"
"repository": "https://github.com/bandit-labs/project-hygiene",
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/cleanup.sh"
}
]
}
]
}
}

View File

@@ -14,5 +14,51 @@
"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"
}
}
}

View File

@@ -1,19 +1,19 @@
{
"mcpServers": {
"gitea": {
"command": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/gitea/.venv/bin/python",
"command": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/gitea/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/gitea",
"cwd": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/gitea",
"env": {
"PYTHONPATH": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/gitea"
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/gitea"
}
},
"wikijs": {
"command": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/wikijs/.venv/bin/python",
"command": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/wikijs/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/wikijs",
"cwd": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/wikijs",
"env": {
"PYTHONPATH": "/home/lmiranda/repos/bandit/support-claude-mktplace/mcp-servers/wikijs"
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}/../../mcp-servers/wikijs"
}
}
}