-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkimi.plugin.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathkimi.plugin.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "do-it",
"version": "0.16.0",
"description": "Autonomy-first AI coding workflow with task-fit skills, advisory routing tiers, and evidence-backed completion.",
"keywords": [
"agentic-workflow",
"ai-agents",
"do-it",
"workflow",
"skills"
],
"author": "tdwhere123",
"homepage": "https://github.com/tdwhere123/do-it",
"license": "MIT",
"interface": {
"displayName": "do-it",
"shortDescription": "Stop asking the agent to remember process. Advisory Light/Standard/Heavy routing, write-time quality lint, and completion reminders tied to evidence."
},
"skills": "./skills/do-it/",
"commands": "./commands/",
"hooks": [
{
"event": "UserPromptSubmit",
"command": "./hooks/prompt-submit.sh"
},
{
"event": "UserPromptSubmit",
"command": "./hooks/behavior-feedback.sh"
},
{
"event": "PostToolUse",
"matcher": "Edit|Write",
"command": "./hooks/write-quality-lint.sh"
},
{
"event": "Stop",
"command": "./hooks/verification-gate.sh"
}
]
}