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
This commit is contained in:
46
package.json
Normal file
46
package.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user