From d084af1af0ffe5dbb872879c82701668935c00d1 Mon Sep 17 00:00:00 2001 From: Mathias Bergqvist Date: Fri, 17 Apr 2026 20:54:40 +0200 Subject: [PATCH] chore: add ingestion server tasks and update MCP registration --- .context/mcp.json | 2 +- Taskfile.yml | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.context/mcp.json b/.context/mcp.json index ab5dfb8..45b7f61 100644 --- a/.context/mcp.json +++ b/.context/mcp.json @@ -6,7 +6,7 @@ }, "supervisor": { "url": "http://localhost:3200/mcp", - "description": "Skill workers — TDD (red/green/refactor), more coming" + "description": "Hyperguild SDO — skill workers (tdd, retrospective), brain tools (brain_query, brain_write), session logging, tier detection" } } } diff --git a/Taskfile.yml b/Taskfile.yml index 04cb9bf..9bf34b9 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -73,3 +73,24 @@ tasks: curl -s -X POST http://localhost:${SUPERVISOR_PORT:-3200}/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | jq . + + ingestion:build: + desc: Build ingestion server binary + cmds: + - go build -o bin/ingestion-server ./cmd/server + dir: ingestion + + ingestion:dev: + desc: Run ingestion server in development mode + env: + INGEST_BRAIN_DIR: "{{.ROOT_DIR}}/brain" + INGEST_PORT: "3300" + cmds: + - go run ./cmd/server + dir: ingestion + + ingestion:test: + desc: Run ingestion tests + cmds: + - go test ./... -v + dir: ingestion