cc-dev-template 0.1.40 → 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.40",
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"
@@ -19,15 +19,16 @@ This requires full conversation context. Handle it yourself rather than delegati
19
19
 
20
20
  ## Steps
21
21
 
22
- **1. Run code simplifier (if available)**
22
+ **1. Run the code simplifier**
23
23
 
24
- If the `code-simplifier` subagent is available (it's a plugin, not always present), run it on your staged changes before committing. This automatically 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
- - Check if you have access to the `code-simplifier` subagent type
27
- - If available and there are staged changes, invoke it targeting those files
28
- - If the agent isn't available, skip this step silently and proceed to commit
29
- - After simplification, run the build and any tests as a sanity check to ensure nothing broke
30
- - If tests/build fail, fix the issues before proceeding to commit
26
+ 1. Stage your changes with `git add`
27
+ 2. Launch the code-simplifier agent (look for it in available subagent types) targeting the staged files
28
+ 3. Run the build and tests to verify nothing broke
29
+ 4. Fix any issues before proceeding to commit
30
+
31
+ Note: The code-simplifier is a plugin. If no code-simplifier agent is available, proceed to step 2.
31
32
 
32
33
  **2. Commit your work**
33
34