Files
APAW/package.json
swp 35bbdcb08f feat: integrate agent-manager module with KiloCode workflows
- Move agent-manager from packages/opencode/ to src/kilocode/
- Add Gitea client for pipeline logging
- Add pipeline-runner for workflow orchestration
- Create slash commands: /pipeline, /status, /evaluate
- Update AGENTS.md with workflow documentation
- Update README.md with KiloCode integration details
- Add package.json and tsconfig.json for TypeScript compilation
- Remove duplicate files from packages/opencode/

This enables:
- /pipeline <issue> - run full agent pipeline with Gitea logging
- Direct agent invocation via @mention
- Performance tracking and prompt optimization
2026-04-04 01:11:06 +01:00

46 lines
1002 B
JSON

{
"name": "apaw",
"version": "1.0.0",
"description": "Self-improving code pipeline with agent management and Gitea logging",
"type": "module",
"main": "./dist/kilocode/index.js",
"types": "./dist/kilocode/index.d.ts",
"exports": {
".": {
"import": "./dist/kilocode/index.js",
"types": "./dist/kilocode/index.d.ts"
},
"./agent-manager": {
"import": "./dist/kilocode/agent-manager/index.js",
"types": "./dist/kilocode/agent-manager/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "^1.1.6",
"@types/node": "^20.10.0",
"typescript": "^5.4.5"
},
"keywords": [
"agent",
"pipeline",
"workflow",
"gitea",
"automation",
"self-improving",
"kilocode"
],
"license": "MIT",
"workspaces": [
".kilo"
]
}