1d6da18b18
- Developer role (react extract): delegates to workflowAsAgent("develop")
- Submitter role: push branch + create PR
- solve-issue now 3-role parent: preparer → developer → submitter
- Removed direct planner/coder/reviewer/committer from solve-issue
- 188 tests passing
Fixes #59
37 lines
1.2 KiB
JSON
37 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"outDir": "dist",
|
|
"types": ["bun-types"]
|
|
},
|
|
"references": [
|
|
{ "path": "packages/workflow" },
|
|
{ "path": "packages/workflow-agent-llm" },
|
|
{ "path": "packages/workflow-role-committer" },
|
|
{ "path": "packages/workflow-role-coder" },
|
|
{ "path": "packages/workflow-role-planner" },
|
|
{ "path": "packages/workflow-role-preparer" },
|
|
{ "path": "packages/workflow-role-reviewer" },
|
|
{ "path": "packages/workflow-role-submitter" },
|
|
{ "path": "packages/workflow-role-tester" },
|
|
{ "path": "packages/workflow-agent-cursor" },
|
|
{ "path": "packages/workflow-agent-hermes" },
|
|
{ "path": "packages/workflow-util-agent" },
|
|
{ "path": "packages/cli-workflow" },
|
|
{ "path": "packages/workflow-template-solve-issue" },
|
|
{ "path": "packages/workflow-template-develop" }
|
|
]
|
|
}
|