claude-dev-env 1.53.0 → 1.54.0
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/agents/clean-coder.md +1 -1
- package/package.json +1 -1
- package/skills/bugteam/SKILL.md +1 -1
- package/skills/bugteam/reference/audit-and-teammates.md +1 -1
- package/skills/bugteam/reference/team-setup.md +1 -1
- package/skills/qbug/SKILL.md +1 -1
- package/skills/qbug/test_qbug_skill_audit_schema.py +3 -3
package/agents/clean-coder.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: clean-coder
|
|
3
3
|
description: "Use PROACTIVELY for ALL code generation — feature development, bug fixes, refactoring, hook creation, automation scripts, and any task that produces code. Internalizes CODE_RULES.md and the 8-dimension readability standard so thoroughly that /check finds zero issues. The definitive code-writing agent."
|
|
4
4
|
tools: Read, Write, Edit, Bash, Grep, Glob, Task, Skill
|
|
5
|
-
model:
|
|
5
|
+
model: fable
|
|
6
6
|
color: green
|
|
7
7
|
---
|
|
8
8
|
|
package/package.json
CHANGED
package/skills/bugteam/SKILL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: bugteam
|
|
3
3
|
description: >-
|
|
4
4
|
Open pull request audit–fix until convergence: CODE_RULES gate, clean-room
|
|
5
|
-
audit (`code-quality-agent`, opus) and fix (`clean-coder`,
|
|
5
|
+
audit (`code-quality-agent`, opus) and fix (`clean-coder`, fable), per-loop
|
|
6
6
|
GitHub reviews, 20-audit cap; grant then revoke `.claude/**`. Spawns
|
|
7
7
|
background subagents (`Agent(..., run_in_background=true)`). Triggers: '/bugteam', 'run
|
|
8
8
|
the bug team', 'auto-fix the PR until clean', 'loop audit and fix'.
|
|
@@ -110,7 +110,7 @@ truth.
|
|
|
110
110
|
|
|
111
111
|
- **Subagent roles (spawned per loop, not at invocation start):**
|
|
112
112
|
- `bugfind` — `code-quality-agent`, model opus (Opus 4.7 at default xhigh effort)
|
|
113
|
-
- `bugfix` — `clean-coder`, model
|
|
113
|
+
- `bugfix` — `clean-coder`, model fable
|
|
114
114
|
|
|
115
115
|
### Loop state block
|
|
116
116
|
|
package/skills/qbug/SKILL.md
CHANGED
|
@@ -107,7 +107,7 @@ Then call `Agent` twice in the same message — the primary clean-coder and the
|
|
|
107
107
|
```
|
|
108
108
|
Agent(
|
|
109
109
|
subagent_type="clean-coder",
|
|
110
|
-
model="
|
|
110
|
+
model="fable",
|
|
111
111
|
description="qbug primary audit/fix cycle for PR <number>",
|
|
112
112
|
prompt="<filled cycle XML; see § Subagent cycle prompt>",
|
|
113
113
|
run_in_background=False
|
|
@@ -113,10 +113,10 @@ def test_contract_should_require_files_opened_in_proof_of_absence() -> None:
|
|
|
113
113
|
)
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
def
|
|
116
|
+
def test_step2_spawn_should_include_model_fable_parameter() -> None:
|
|
117
117
|
skill_text = _load_skill_text()
|
|
118
|
-
assert 'model="
|
|
119
|
-
"Step 2 Agent() spawn template must include model=\"
|
|
118
|
+
assert 'model="fable"' in skill_text, (
|
|
119
|
+
"Step 2 Agent() spawn template must include model=\"fable\" for the primary subagent"
|
|
120
120
|
)
|
|
121
121
|
|
|
122
122
|
|