- 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
19 lines
407 B
JSON
19 lines
407 B
JSON
{
|
|
"$schema": "https://app.kilo.ai/config.json",
|
|
"instructions": [".kilo/rules/*.md"],
|
|
"skills": {
|
|
"paths": [".kilo/skills"]
|
|
},
|
|
"agent": {
|
|
"pipeline-runner": {
|
|
"description": "Runs agent pipeline with Gitea logging",
|
|
"mode": "subagent",
|
|
"permission": {
|
|
"read": "allow",
|
|
"write": "allow",
|
|
"bash": "allow",
|
|
"task": "allow"
|
|
}
|
|
}
|
|
}
|
|
} |