@simplysm/sd-claude 13.0.49 → 13.0.51

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.
@@ -1,6 +1,7 @@
1
1
  # Workflow Rules
2
2
 
3
3
  - **No auto-proceeding after skill completion**: When the user explicitly invokes a skill, report the result and **stop** once the skill finishes. Do not guess the next step and proceed arbitrarily. Wait for explicit user instructions if further work is needed.
4
+ - **Exception — yolo mode**: When a skill explicitly defines a "yolo mode" that chains multiple skills sequentially (e.g., sd-plan's "Path A: yolo"), auto-proceeding is permitted for the duration of that chain. Each step MUST still be invoked via the Skill tool.
4
5
 
5
6
  ## Problem-Solving Principles
6
7
 
@@ -139,7 +139,6 @@ Repeat Steps 1-3 until all 3 checks pass.
139
139
 
140
140
  If you find yourself doing ANY of these, you're violating the skill:
141
141
 
142
- - Treating sd-check as a command to invoke (`Skill: sd-check Args: ...`)
143
142
  - Including build or dev server in verification
144
143
  - Using Task/agent instead of background Bash
145
144
  - Not re-verifying after every fix
@@ -180,7 +179,6 @@ If you find yourself doing ANY of these, you're violating the skill:
180
179
  | "Let me ask which path to check" | Default to full project - explicit behavior |
181
180
  | "I'll try one more fix approach" | After 2-3 attempts → recommend /sd-debug |
182
181
  | "Tests are independent of types" | Type fixes affect tests - always re-run ALL |
183
- | "I'll invoke sd-check skill with args" | sd-check is EXACT STEPS, not a command |
184
182
  | "I'm confident it passes" | Confidence is not evidence — run the check |
185
183
  | "It should work now" | "Should" = no evidence — run the check |
186
184
  | "I already verified earlier" | Earlier is not now — re-run after every change |
@@ -160,7 +160,7 @@ You can start from any step or skip steps as needed.
160
160
  - Briefly explain why (1 sentence)
161
161
  - Do NOT auto-proceed. Wait for user's choice.
162
162
 
163
- **Yolo mode:** If the user responds with "Path A: yolo" or "Path B: yolo" (or similar intent like "A yolo", "B 자동"), execute all steps of the chosen path sequentially without stopping between steps.
163
+ **Yolo mode:** If the user responds with "Path A: yolo" or "Path B: yolo" (or similar intent like "A yolo", "B 자동"), execute all steps of the chosen path sequentially without stopping between steps. **Each `/sd-*` step MUST be invoked via the Skill tool** (e.g., `Skill("sd-worktree", "add <name>")`, `Skill("sd-plan-dev")`, `Skill("sd-check")`, `Skill("sd-commit")`, `Skill("sd-worktree", "merge")`, `Skill("sd-worktree", "clean")`). Do NOT execute the underlying git/shell commands directly — always delegate to the skill.
164
164
 
165
165
  **Yolo sd-check — include dependents:** NEVER check only modified packages. Also check all packages that depend on them:
166
166
  1. Identify modified packages from `git diff --name-only`
@@ -32,9 +32,6 @@ cd .worktrees/<name> # Move into the worktree
32
32
  ```
33
33
 
34
34
  - All subsequent work should be done inside the worktree
35
- - Suggest next steps:
36
- 1. **brainstorming** (`/sd-brainstorm`)
37
- 2. **writing-plans** (`/sd-plan`)
38
35
 
39
36
  ### rebase — Rebase onto main branch
40
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/sd-claude",
3
- "version": "13.0.49",
3
+ "version": "13.0.51",
4
4
  "description": "Simplysm Claude Code CLI — asset installer and cross-platform npx wrapper",
5
5
  "author": "김석래",
6
6
  "license": "Apache-2.0",