cc-dev-template 0.1.40 → 0.1.41
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 +1 -1
- package/src/commands/done.md +8 -7
package/package.json
CHANGED
package/src/commands/done.md
CHANGED
|
@@ -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
|
|
22
|
+
**1. Run the code simplifier**
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
Run the `code-simplifier` agent on your staged changes before committing. This refines code for clarity and consistency.
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
1. Stage your changes with `git add`
|
|
27
|
+
2. Invoke the Task tool with `subagent_type: "code-simplifier"` 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 the subagent type doesn't exist, proceed to step 2.
|
|
31
32
|
|
|
32
33
|
**2. Commit your work**
|
|
33
34
|
|