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.
@@ -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: opus
5
+ model: fable
6
6
  color: green
7
7
  ---
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-dev-env",
3
- "version": "1.53.0",
3
+ "version": "1.54.0",
4
4
  "description": "Claude Code development standards — rules, hooks, agents, commands, and skills",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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`, opus), per-loop
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'.
@@ -144,7 +144,7 @@ Spawn:
144
144
  Agent(
145
145
  subagent_type="clean-coder",
146
146
  name="bugfix-pr<N>-loop<L>",
147
- model="opus",
147
+ model="fable",
148
148
  mode="bypassPermissions",
149
149
  run_in_background=true,
150
150
  description="Bugfix PR <N> loop <L>",
@@ -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 opus (Opus 4.7 at default xhigh effort)
113
+ - `bugfix` — `clean-coder`, model fable
114
114
 
115
115
  ### Loop state block
116
116
 
@@ -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="opus",
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 test_step2_spawn_should_include_model_opus_parameter() -> None:
116
+ def test_step2_spawn_should_include_model_fable_parameter() -> None:
117
117
  skill_text = _load_skill_text()
118
- assert 'model="opus"' in skill_text, (
119
- "Step 2 Agent() spawn template must include model=\"opus\" for the primary subagent"
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