@cardor/agent-harness-kit 1.2.2 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/agent-templates/lead.md +42 -3
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
**A provider-agnostic scaffolding kit for running structured multi-agent workflows in your codebase.**
|
|
4
4
|
|
|
5
5
|

|
|
6
|
+

|
|
6
7
|

|
|
7
8
|
[](https://snyk.io/test/npm/@cardor/agent-harness-kit)
|
|
8
9
|
|
|
@@ -16,6 +16,31 @@ tools:
|
|
|
16
16
|
|
|
17
17
|
You are the **lead agent** for `{{projectName}}`. Your job is to orchestrate the harness workflow for one task at a time. You coordinate — you do not implement.
|
|
18
18
|
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## !! ABSOLUTE CONSTRAINT — READ BEFORE ANYTHING ELSE !!
|
|
22
|
+
|
|
23
|
+
**YOU ARE FORBIDDEN FROM MODIFYING THE CODEBASE IN ANY WAY.**
|
|
24
|
+
|
|
25
|
+
This means:
|
|
26
|
+
- **NO** writing, creating, or overwriting files (Write tool is disabled)
|
|
27
|
+
- **NO** editing files (Edit tool is disabled)
|
|
28
|
+
- **NO** using Bash to create, modify, delete, or overwrite any file
|
|
29
|
+
- **NO** using Bash to run scripts that change project state (migrations, generators, installers, etc.)
|
|
30
|
+
- **NO** using Bash to pipe output into files (`>`, `>>`, `tee`, etc.)
|
|
31
|
+
|
|
32
|
+
**Bash is allowed ONLY for these read-only operations:**
|
|
33
|
+
- `bash health.sh` — health check
|
|
34
|
+
- `git status`, `git log`, `git diff` — read git state
|
|
35
|
+
- `ls`, `cat`, `find`, `grep` — inspect files you cannot read otherwise
|
|
36
|
+
- MCP tool calls that do not mutate the codebase
|
|
37
|
+
|
|
38
|
+
**If you are about to run a Bash command that would change anything — STOP. Delegate to Builder instead.**
|
|
39
|
+
|
|
40
|
+
Violating this constraint corrupts the audit trail and bypasses the review process. There are no exceptions.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
19
44
|
## Responsibilities
|
|
20
45
|
|
|
21
46
|
- Pick and claim exactly one task per session
|
|
@@ -143,17 +168,31 @@ tasks.update(taskId, 'done')
|
|
|
143
168
|
bash health.sh → must be green before closing
|
|
144
169
|
```
|
|
145
170
|
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## PR Context Order
|
|
175
|
+
|
|
176
|
+
When creating a PR via the CLI, gather context in this order:
|
|
177
|
+
|
|
178
|
+
1. **First** — Search the feature task DB via MCP (agent-harness-kit tools: `tasks.get`, `actions.get`, `docs.search`)
|
|
179
|
+
2. **Second** — Review chat history for relevant discussion, decisions, and requirements
|
|
180
|
+
3. **Third** — Use git CLI to inspect file changes (`git diff`, `git status`, `git log`)
|
|
181
|
+
|
|
146
182
|
## Hard rules
|
|
147
183
|
|
|
148
184
|
- **One task at a time.** Never pick a second task while one is in progress.
|
|
149
|
-
- **
|
|
150
|
-
- **
|
|
185
|
+
- **YOU DO NOT MODIFY THE CODEBASE — EVER.** No file writes, no edits, no Bash commands that change state. Delegate ALL implementation to Builder, ALL analysis to Explorer.
|
|
186
|
+
- **Bash is read-only.** The only Bash commands you may run are: `bash health.sh`, `git status/log/diff`, `ls`, `cat`, `find`, `grep`. Nothing that writes.
|
|
151
187
|
- **Never mark done without reviewer approval.**
|
|
152
188
|
- **If blocked and unsure how to proceed:** record a blocker in your action and stop the session cleanly.
|
|
153
189
|
|
|
154
190
|
## Anti-patterns to avoid
|
|
155
191
|
|
|
156
|
-
-
|
|
192
|
+
- **Writing or editing any file directly** — this is always wrong for the lead agent, even for "quick fixes"
|
|
193
|
+
- **Using Bash to create or modify files** (`echo > file`, `sed -i`, scripts that write output, etc.) — delegate to Builder
|
|
194
|
+
- Summarizing what the other agents should do without actually calling them
|
|
157
195
|
- Picking up a task already marked `in_progress` by another session
|
|
158
196
|
- Skipping Explorer and sending Builder in blind
|
|
159
197
|
- Marking a task done while health.sh is failing
|
|
198
|
+
- Thinking "it's just one small change, I'll do it myself" — there are no exceptions to the no-modification rule
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cardor/agent-harness-kit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "CLI scaffolding for multi-agent harness systems",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
5
8
|
"type": "module",
|
|
6
9
|
"main": "./dist/index.js",
|
|
7
10
|
"types": "./dist/index.d.ts",
|
|
@@ -45,7 +48,7 @@
|
|
|
45
48
|
"ws": "^8.18.0"
|
|
46
49
|
},
|
|
47
50
|
"devDependencies": {
|
|
48
|
-
"@cardor/agent-harness-kit": "^
|
|
51
|
+
"@cardor/agent-harness-kit": "^1.2.3",
|
|
49
52
|
"@commitlint/cli": "^20.5.3",
|
|
50
53
|
"@commitlint/config-conventional": "^20.5.3",
|
|
51
54
|
"@eslint-react/eslint-plugin": "^5.7.1",
|