plugins/claude/code/.claude-plugin/plugin.json

73 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "code",
"description": "Core development plugin for Host UK monorepo - core CLI integration, formatting hooks, and autonomous workflows",
"version": "0.1.0",
"author": {
"name": "Host UK",
"email": "hello@host.uk.com"
},
"homepage": "https://github.com/host-uk/core-agent",
"repository": {
"type": "git",
"url": "https://github.com/host-uk/core-agent.git"
},
"license": "EUPL-1.2",
"keywords": [
"devops",
"monorepo",
"go",
"php",
"laravel"
],
"mcp": {
"server": "go run google/mcp/main.go",
"tools": [
{
"name": "core_go_test",
"description": "Run Go tests",
"parameters": {
"type": "object",
"properties": {
"filter": {
"type": "string"
},
"coverage": {
"type": "boolean",
"default": false
}
}
}
},
{
"name": "core_dev_health",
"description": "Check monorepo status",
"parameters": {
"type": "object",
"properties": {}
}
},
{
"name": "core_dev_commit",
"description": "Commit changes across repos",
"parameters": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"repos": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"message"
]
}
}
]
}
}