@simplysm/sd-claude 13.0.42 → 13.0.44
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.
|
@@ -14,9 +14,23 @@ Stages and commits changes using Conventional Commits format. Two modes: **defau
|
|
|
14
14
|
|
|
15
15
|
## Mode
|
|
16
16
|
|
|
17
|
-
- **Default mode** (no arguments): Stage
|
|
17
|
+
- **Default mode** (no arguments): Stage files relevant to the current conversation context. Always a **single commit**.
|
|
18
18
|
- **"all" mode** (`$ARGUMENTS` is "all"): Target **all** changed/untracked files. May produce multiple commits.
|
|
19
19
|
|
|
20
|
+
## File Selection Rules
|
|
21
|
+
|
|
22
|
+
**NEVER arbitrarily exclude files.** The ONLY valid reason to exclude a file is:
|
|
23
|
+
- It is in `.gitignore`
|
|
24
|
+
- It is completely unrelated to the conversation context (default mode only)
|
|
25
|
+
|
|
26
|
+
**Do NOT exclude files based on:**
|
|
27
|
+
- File type or extension (e.g., `.styles.ts`, `.config.ts`)
|
|
28
|
+
- Folder name or path (e.g., `node_modules` is handled by `.gitignore`)
|
|
29
|
+
- Personal judgment about importance or "cleanliness"
|
|
30
|
+
- Assumption that generated/config/style files are unimportant
|
|
31
|
+
|
|
32
|
+
**When in doubt, INCLUDE the file.** Over-inclusion is always better than silent exclusion.
|
|
33
|
+
|
|
20
34
|
## Context
|
|
21
35
|
|
|
22
36
|
- Current status: !`git status`
|