mirror of
https://github.com/cexll/myclaude.git
synced 2025-12-24 13:47:58 +08:00
- Create separate directories for each plugin (requirements-driven-workflow/, bmad-agile-workflow/, development-essentials/, advanced-ai-agents/) - Update marketplace.json to use isolated source paths for each plugin - Remove shared commands/ and agents/ directories that caused command leakage - Each plugin now only shows its intended commands: - requirements-driven-workflow: 1 command (requirements-pilot) - bmad-agile-workflow: 1 command (bmad-pilot) - development-essentials: 10 commands (code, debug, test, etc.) - advanced-ai-agents: 0 commands (agents only) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "development-essentials",
|
|
"source": "./",
|
|
"description": "Essential development commands for coding, debugging, testing, optimization, and documentation",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Claude Code Dev Workflows",
|
|
"url": "https://github.com/yourusername/myclaude"
|
|
},
|
|
"homepage": "https://github.com/yourusername/myclaude",
|
|
"repository": "https://github.com/yourusername/myclaude",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"code",
|
|
"debug",
|
|
"test",
|
|
"optimize",
|
|
"review",
|
|
"bugfix",
|
|
"refactor",
|
|
"documentation"
|
|
],
|
|
"category": "essentials",
|
|
"strict": false,
|
|
"commands": [
|
|
"./commands/code.md",
|
|
"./commands/debug.md",
|
|
"./commands/test.md",
|
|
"./commands/optimize.md",
|
|
"./commands/review.md",
|
|
"./commands/bugfix.md",
|
|
"./commands/refactor.md",
|
|
"./commands/docs.md",
|
|
"./commands/ask.md",
|
|
"./commands/think.md"
|
|
],
|
|
"agents": [
|
|
"./agents/code.md",
|
|
"./agents/bugfix.md",
|
|
"./agents/bugfix-verify.md",
|
|
"./agents/optimize.md",
|
|
"./agents/debug.md"
|
|
]
|
|
} |