T-505 added the kind-discriminator to wait_for_job's response payload but missed the claim-SQL: tryClaimJob does INNER JOIN tasks ON cj.task_id, which matches NO rows for IDEA_*-jobs (task_id IS NULL by design — M12 schema). Result: idea-jobs sit forever in QUEUED, never picked up. Reproduced live: IDEA-002 (cmoshh2ne...) had a IDEA_GRILL job queued at 10:26 that 2 active workers ignored for 14+ minutes. Fix: LEFT JOIN tasks. plan_snapshot stays empty for idea-jobs (no verify-flow needed for grill/make-plan). Bump to 0.6.1 since 0.6.0 production deploy has the broken claim-SQL. Tests: 153/153 still green. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "scrum4me-mcp",
|
|
"version": "0.6.1",
|
|
"description": "MCP server for Scrum4Me — exposes dev-flow tools and prompts via the Model Context Protocol",
|
|
"type": "module",
|
|
"bin": {
|
|
"scrum4me-mcp": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"prisma",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "tsx src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"prisma:generate": "prisma generate",
|
|
"postinstall": "prisma generate || true",
|
|
"typecheck": "tsc --noEmit",
|
|
"sync-schema": "bash scripts/sync-schema.sh",
|
|
"test": "vitest run"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"scrum4me",
|
|
"claude"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"@prisma/adapter-pg": "^7.8.0",
|
|
"@prisma/client": "^7.8.0",
|
|
"pg": "^8.13.1",
|
|
"yaml": "^2.8.4",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.0",
|
|
"@types/pg": "^8.11.10",
|
|
"prisma": "^7.8.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|