cc-dev-template 0.1.41 → 0.1.42

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-dev-template",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "description": "Structured AI-assisted development framework for Claude Code",
5
5
  "bin": {
6
6
  "cc-dev-template": "./bin/install.js"
@@ -21,14 +21,14 @@ This requires full conversation context. Handle it yourself rather than delegati
21
21
 
22
22
  **1. Run the code simplifier**
23
23
 
24
- Run the `code-simplifier` agent on your staged changes before committing. This refines code for clarity and consistency.
24
+ Run the code-simplifier agent on your staged changes before committing. This refines code for clarity and consistency.
25
25
 
26
26
  1. Stage your changes with `git add`
27
- 2. Invoke the Task tool with `subagent_type: "code-simplifier"` targeting the staged files
27
+ 2. Launch the code-simplifier agent (look for it in available subagent types) targeting the staged files
28
28
  3. Run the build and tests to verify nothing broke
29
29
  4. Fix any issues before proceeding to commit
30
30
 
31
- Note: The code-simplifier is a plugin. If the subagent type doesn't exist, proceed to step 2.
31
+ Note: The code-simplifier is a plugin. If no code-simplifier agent is available, proceed to step 2.
32
32
 
33
33
  **2. Commit your work**
34
34