mirror of
https://github.com/cexll/myclaude.git
synced 2026-02-05 02:30:26 +08:00
Core Changes: - **Skills System**: Added codeagent, product-requirements, prototype-prompt-generator to skill-rules.json - **Config Cleanup**: Removed deprecated gh module from config.json - **Workflow Update**: Changed memorys/CLAUDE.md to use codeagent skill instead of codex Details: - config.json:88-119: Removed gh module (github-workflow directory doesn't exist) - skills/skill-rules.json:24-114: Added 3 new skills with keyword/pattern triggers - codeagent: multi-backend, parallel task execution - product-requirements: PRD, requirements gathering - prototype-prompt-generator: UI/UX design specifications - memorys/CLAUDE.md:3,24-25: Updated Codex skill → Codeagent skill Verification: - All skill activation tests PASS - codeagent skill triggers correctly on keyword match Generated with swe-agent-bot Co-Authored-By: swe-agent-bot <agent@swe-agent.ai>
90 lines
2.5 KiB
JSON
90 lines
2.5 KiB
JSON
{
|
|
"version": "1.0",
|
|
"install_dir": "~/.claude",
|
|
"log_file": "install.log",
|
|
"modules": {
|
|
"dev": {
|
|
"enabled": true,
|
|
"description": "Core dev workflow with Codex integration",
|
|
"operations": [
|
|
{
|
|
"type": "merge_dir",
|
|
"source": "dev-workflow",
|
|
"description": "Merge commands/ and agents/ into install dir"
|
|
},
|
|
{
|
|
"type": "copy_file",
|
|
"source": "memorys/CLAUDE.md",
|
|
"target": "CLAUDE.md",
|
|
"description": "Copy core role and guidelines"
|
|
},
|
|
{
|
|
"type": "copy_file",
|
|
"source": "skills/codex/SKILL.md",
|
|
"target": "skills/codex/SKILL.md",
|
|
"description": "Install codex skill"
|
|
},
|
|
{
|
|
"type": "run_command",
|
|
"command": "bash install.sh",
|
|
"description": "Install codeagent-wrapper binary",
|
|
"env": {
|
|
"INSTALL_DIR": "${install_dir}"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"bmad": {
|
|
"enabled": false,
|
|
"description": "BMAD agile workflow with multi-agent orchestration",
|
|
"operations": [
|
|
{
|
|
"type": "merge_dir",
|
|
"source": "bmad-agile-workflow",
|
|
"description": "Merge BMAD commands and agents"
|
|
},
|
|
{
|
|
"type": "copy_file",
|
|
"source": "docs/BMAD-WORKFLOW.md",
|
|
"target": "docs/BMAD-WORKFLOW.md",
|
|
"description": "Copy BMAD workflow documentation"
|
|
}
|
|
]
|
|
},
|
|
"requirements": {
|
|
"enabled": false,
|
|
"description": "Requirements-driven development workflow",
|
|
"operations": [
|
|
{
|
|
"type": "merge_dir",
|
|
"source": "requirements-driven-workflow",
|
|
"description": "Merge requirements workflow commands and agents"
|
|
},
|
|
{
|
|
"type": "copy_file",
|
|
"source": "docs/REQUIREMENTS-WORKFLOW.md",
|
|
"target": "docs/REQUIREMENTS-WORKFLOW.md",
|
|
"description": "Copy requirements workflow documentation"
|
|
}
|
|
]
|
|
},
|
|
"essentials": {
|
|
"enabled": true,
|
|
"description": "Core development commands and utilities",
|
|
"operations": [
|
|
{
|
|
"type": "merge_dir",
|
|
"source": "development-essentials",
|
|
"description": "Merge essential development commands"
|
|
},
|
|
{
|
|
"type": "copy_file",
|
|
"source": "docs/DEVELOPMENT-COMMANDS.md",
|
|
"target": "docs/DEVELOPMENT-COMMANDS.md",
|
|
"description": "Copy development commands documentation"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|