@simplysm/claude 13.0.12 → 13.0.14
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/README.md +15 -1
- package/claude/skills/sd-brainstorm/SKILL.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,6 +73,8 @@ Collaborative design exploration before implementation. Helps turn ideas into fu
|
|
|
73
73
|
- Proposes 2-3 approaches with trade-offs
|
|
74
74
|
- Presents design in 200-300 word sections with validation
|
|
75
75
|
- Saves validated design to `docs/plans/YYYY-MM-DD-<topic>-design.md`
|
|
76
|
+
- Recommends implementation path (A: worktree isolation, B: direct on current branch)
|
|
77
|
+
- Supports yolo mode for auto-execution of all implementation steps
|
|
76
78
|
|
|
77
79
|
### sd-plan
|
|
78
80
|
|
|
@@ -87,7 +89,7 @@ Creates comprehensive implementation plans with TDD, assuming the implementer ha
|
|
|
87
89
|
- Creates bite-sized tasks (2-5 minutes each)
|
|
88
90
|
- Each task includes: exact file paths, complete code, test commands with expected output
|
|
89
91
|
- Saves plan to `docs/plans/YYYY-MM-DD-<feature-name>.md`
|
|
90
|
-
-
|
|
92
|
+
- Auto-executes `sd-plan-dev` in yolo mode; otherwise waits for confirmation
|
|
91
93
|
|
|
92
94
|
**Task structure:**
|
|
93
95
|
1. Write the failing test
|
|
@@ -312,6 +314,18 @@ Instructs Claude to read `@simplysm/*` package documentation from local `node_mo
|
|
|
312
314
|
node_modules/@simplysm/{package-name}/README.md
|
|
313
315
|
```
|
|
314
316
|
|
|
317
|
+
### sd-language
|
|
318
|
+
|
|
319
|
+
Instructs Claude to respond in the system's configured language setting, while keeping technical terms, code identifiers, and library names unchanged. English error messages and logs are preserved in their original form.
|
|
320
|
+
|
|
321
|
+
### sd-naming-conventions
|
|
322
|
+
|
|
323
|
+
Enforces function naming conventions including prohibition of `Async` suffix (async is the default) and use of `Sync` suffix for synchronous versions when both exist.
|
|
324
|
+
|
|
325
|
+
### sd-workflow-rules
|
|
326
|
+
|
|
327
|
+
Defines workflow behavior including the rule to not auto-proceed after skill completion—report results and stop, waiting for explicit user instructions before the next step.
|
|
328
|
+
|
|
315
329
|
## Status Line
|
|
316
330
|
|
|
317
331
|
`sd-statusline.js` displays a Claude Code status bar with:
|
|
@@ -52,7 +52,7 @@ Design complete! Here's how to proceed:
|
|
|
52
52
|
1. /sd-worktree add <name> — Create a worktree branch
|
|
53
53
|
2. /sd-plan — Break into detailed tasks
|
|
54
54
|
3. /sd-plan-dev — Execute tasks in parallel (includes TDD + review)
|
|
55
|
-
4. /sd-check
|
|
55
|
+
4. /sd-check — Verify All
|
|
56
56
|
5. /sd-commit — Commit
|
|
57
57
|
6. /sd-worktree merge — Merge back to main
|
|
58
58
|
7. /sd-worktree clean — Remove worktree
|
|
@@ -61,7 +61,7 @@ Design complete! Here's how to proceed:
|
|
|
61
61
|
|
|
62
62
|
1. /sd-plan — Break into detailed tasks
|
|
63
63
|
2. /sd-plan-dev — Execute tasks in parallel (includes TDD + review)
|
|
64
|
-
3. /sd-check
|
|
64
|
+
3. /sd-check — Verify All
|
|
65
65
|
4. /sd-commit — Commit
|
|
66
66
|
|
|
67
67
|
You can start from any step or skip steps as needed.
|