Initial agent implementation
Some checks failed
Build and Push Agent / build (push) Failing after 50s

- Node.js Alpine base with Claude Code CLI
- MCP configuration for backend communication
- Git and development tools pre-installed
- K8s deployment manifests
- CI/CD workflow for automatic builds

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hector Ros
2026-01-20 01:23:30 +01:00
commit 1db98be556
6 changed files with 119 additions and 0 deletions

12
mcp-config.json Normal file
View File

@@ -0,0 +1,12 @@
{
"mcpServers": {
"aiworker-backend": {
"command": "node",
"args": ["-e", "console.log('MCP client placeholder')"],
"env": {
"BACKEND_URL": "http://backend.control-plane.svc.cluster.local:3000",
"MCP_SERVER_URL": "http://backend.control-plane.svc.cluster.local:3100"
}
}
}
}