Files
devclaw-gitea/openclaw.plugin.json

33 lines
1.0 KiB
JSON

{
"id": "devclaw",
"name": "DevClaw",
"description": "Multi-project dev/qa pipeline orchestration for OpenClaw. Developer tiers, atomic task management, session health, and audit logging.",
"configSchema": {
"type": "object",
"properties": {
"models": {
"type": "object",
"description": "Model mapping per developer tier (junior, medior, senior, qa)",
"properties": {
"junior": {
"type": "string",
"description": "Junior dev model (default: anthropic/claude-haiku-4-5)"
},
"medior": {
"type": "string",
"description": "Medior dev model (default: anthropic/claude-sonnet-4-5)"
},
"senior": {
"type": "string",
"description": "Senior dev model (default: anthropic/claude-opus-4-5)"
},
"qa": {
"type": "string",
"description": "QA engineer model (default: anthropic/claude-sonnet-4-5)"
}
}
}
}
}
}