mirror of
https://github.com/cexll/myclaude.git
synced 2026-02-05 02:30:26 +08:00
- Add OmO multi-agent orchestrator documentation to README.md and README_CN.md - Fix marketplace.json to follow official Claude Code plugin schema - Add $schema field and move version/description to top level - Create proper .claude-plugin/plugin.json for all plugins - Remove non-standard marketplace.json from plugin subdirectories - Simplify plugin names: omo, dev, requirements, bmad, essentials Generated with SWE-Agent.ai Co-Authored-By: SWE-Agent.ai <noreply@swe-agent.ai>
48 lines
1.7 KiB
JSON
48 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
"name": "myclaude",
|
|
"version": "5.6.1",
|
|
"description": "Professional multi-agent development workflows with OmO orchestration, Requirements-Driven and BMAD methodologies",
|
|
"owner": {
|
|
"name": "cexll",
|
|
"email": "evanxian9@gmail.com"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "omo",
|
|
"description": "Multi-agent orchestration for code analysis, bug investigation, fix planning, and implementation with intelligent routing to specialized agents",
|
|
"version": "5.6.1",
|
|
"source": "./skills/omo",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "dev",
|
|
"description": "Lightweight development workflow with requirements clarification, parallel codex execution, and mandatory 90% test coverage",
|
|
"version": "5.6.1",
|
|
"source": "./dev-workflow",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "requirements",
|
|
"description": "Requirements-driven development workflow with quality gates for practical feature implementation",
|
|
"version": "5.6.1",
|
|
"source": "./requirements-driven-workflow",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "bmad",
|
|
"description": "Full BMAD agile workflow with role-based agents (PO, Architect, SM, Dev, QA) and interactive approval gates",
|
|
"version": "5.6.1",
|
|
"source": "./bmad-agile-workflow",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "dev-kit",
|
|
"description": "Essential development commands for coding, debugging, testing, optimization, and documentation",
|
|
"version": "5.6.1",
|
|
"source": "./development-essentials",
|
|
"category": "productivity"
|
|
}
|
|
]
|
|
}
|