@simplysm/claude 13.0.23 → 13.0.24
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.
|
@@ -41,6 +41,13 @@ Start by understanding the current project context, then ask questions one at a
|
|
|
41
41
|
|
|
42
42
|
**Next Steps Guide:**
|
|
43
43
|
|
|
44
|
+
Before presenting the workflow paths, check git status for uncommitted changes. If there are any uncommitted changes (staged, unstaged, or untracked files), prepend the following warning before the workflow guide:
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
⚠️ You have uncommitted changes.
|
|
48
|
+
To use Path A (worktree branch isolation), run `/sd-commit all` first to commit your current changes.
|
|
49
|
+
```
|
|
50
|
+
|
|
44
51
|
Present the following two workflow paths so the user can see the full process and choose.
|
|
45
52
|
Display the guide in the **user's configured language** (follow the language settings from CLAUDE.md or system instructions).
|
|
46
53
|
|
|
@@ -17,7 +17,14 @@ If an argument is provided, run against that path. Otherwise, run against the en
|
|
|
17
17
|
Before running any verification, confirm the project environment is properly set up.
|
|
18
18
|
Run these checks **in parallel** and report results before proceeding.
|
|
19
19
|
|
|
20
|
-
### 1.
|
|
20
|
+
### 1. Root package.json version
|
|
21
|
+
|
|
22
|
+
Read the root `package.json` and check the `version` field.
|
|
23
|
+
The major version must be `13` (e.g., `13.x.x`). If the major version is not `13`, stop and report:
|
|
24
|
+
|
|
25
|
+
> "This skill requires simplysm v13. Current version: {version}"
|
|
26
|
+
|
|
27
|
+
### 2. pnpm workspace
|
|
21
28
|
|
|
22
29
|
Verify this is a pnpm project:
|
|
23
30
|
|
|
@@ -27,7 +34,7 @@ ls pnpm-workspace.yaml pnpm-lock.yaml
|
|
|
27
34
|
|
|
28
35
|
Both files must exist. If missing, stop and report to the user.
|
|
29
36
|
|
|
30
|
-
###
|
|
37
|
+
### 3. package.json scripts
|
|
31
38
|
|
|
32
39
|
Read the root `package.json` and confirm these scripts are defined:
|
|
33
40
|
|
|
@@ -36,7 +43,7 @@ Read the root `package.json` and confirm these scripts are defined:
|
|
|
36
43
|
|
|
37
44
|
If either is missing, stop and report to the user.
|
|
38
45
|
|
|
39
|
-
###
|
|
46
|
+
### 4. Vitest config
|
|
40
47
|
|
|
41
48
|
Verify vitest is configured:
|
|
42
49
|
|