c04e7c31af
workflow-role-llm now only contains LLM-as-agent specifics: - createRole (wires agent + extract) - createLlmAdapter (OpenAI chat completions agent) workflow-util-role now provides all role infrastructure: - decorators (decorateRole, withDryRun, onFail) - llmExtract / extractMetaOrThrow (structured extraction) - buildDescriptorFromRoles (zod → JSON Schema) - LlmProvider, LlmMessage types
21 lines
567 B
JSON
21 lines
567 B
JSON
{
|
|
"name": "@uncaged/workflow-template-solve-issue",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"build": "echo 'TODO'",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow": "workspace:*",
|
|
"@uncaged/workflow-agent-cursor": "workspace:*",
|
|
"@uncaged/workflow-role-committer": "workspace:*",
|
|
"@uncaged/workflow-role-llm": "workspace:*",
|
|
"@uncaged/workflow-role-reviewer": "workspace:*",
|
|
"@uncaged/workflow-util-role": "workspace:*",
|
|
"zod": "^4.0.0"
|
|
}
|
|
}
|