This commit is contained in:
2026-04-05 16:14:23 +08:00
parent 9936b2b92c
commit 33d7460ea0
19 changed files with 1515 additions and 2 deletions

28
kilo.json Normal file
View File

@@ -0,0 +1,28 @@
{
"agents": {
"default": "code",
"allowed": ["code", "architect", "ask", "debug"]
},
"commands": {
"dir": ".kilo/command"
},
"rules": {
"dir": ".kilo/agent"
},
"skills": {
"dir": ".kilo/skill"
},
"hooks": {
"beforeFileWrite": "pnpm lint --fix",
"afterTaskComplete": "pnpm lint"
},
"context": {
"maxTokens": 8000,
"includePatterns": ["src/**/*.ts", "src/**/*.vue", "src/**/*.tsx"],
"excludePatterns": ["node_modules", "dist", ".git"]
},
"logging": {
"level": "info",
"file": ".kilo/logs/kilo.log"
}
}