worclaude 1.3.7 → 1.3.9
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
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
1. Update docs/spec/PROGRESS.md with what was completed this session
|
|
2
|
-
2.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
2. **Version bump (only when on `develop` targeting `main`):**
|
|
3
|
+
- Check what changed since last version using the versioning policy in git-conventions.md
|
|
4
|
+
- Template or CLI behavior changes → patch bump
|
|
5
|
+
- New command/feature → minor bump
|
|
6
|
+
- Breaking change → major bump
|
|
7
|
+
- Only docs/CI/tests/PROGRESS.md → no bump needed
|
|
8
|
+
- If bump needed: update `version` in package.json
|
|
9
|
+
3. Stage all changes: git add -A
|
|
10
|
+
4. Write a clear, conventional commit message
|
|
11
|
+
5. Push to the current branch
|
|
12
|
+
6. Create a PR with:
|
|
6
13
|
- Clear title matching conventional commit format
|
|
7
14
|
- Description of changes
|
|
8
15
|
- Testing done
|
|
@@ -11,12 +11,7 @@
|
|
|
11
11
|
"Bash(env:*)", "Bash(printenv:*)",
|
|
12
12
|
|
|
13
13
|
"// -- Git --",
|
|
14
|
-
"Bash(git
|
|
15
|
-
"Bash(git branch:*)", "Bash(git checkout:*)",
|
|
16
|
-
"Bash(git add:*)", "Bash(git commit:*)", "Bash(git push:*)",
|
|
17
|
-
"Bash(git pull:*)", "Bash(git fetch:*)", "Bash(git merge:*)",
|
|
18
|
-
"Bash(git stash:*)", "Bash(git worktree:*)",
|
|
19
|
-
"Bash(git rebase:*)", "Bash(git cherry-pick:*)", "Bash(git tag:*)",
|
|
14
|
+
"Bash(git:*)",
|
|
20
15
|
"Bash(gh:*)",
|
|
21
16
|
|
|
22
17
|
"// -- Common Dev Tools --",
|
|
@@ -24,8 +19,16 @@
|
|
|
24
19
|
"Bash(cp:*)", "Bash(mv:*)",
|
|
25
20
|
"Bash(curl:*)", "Bash(wget:*)",
|
|
26
21
|
"Bash(tar:*)", "Bash(zip:*)", "Bash(unzip:*)",
|
|
22
|
+
"Bash(rm:*)",
|
|
27
23
|
"Bash(make:*)",
|
|
28
24
|
|
|
25
|
+
"Bash(npm test:*)", "Bash(npm run:*)", "Bash(cd:*)",
|
|
26
|
+
|
|
27
|
+
"// -- Read Permissions --",
|
|
28
|
+
"Read(src/**)", "Read(tests/**)", "Read(templates/**)",
|
|
29
|
+
"Read(docs/**)", "Read(.claude/**)",
|
|
30
|
+
"Read(*.md)", "Read(*.json)", "Read(*.js)",
|
|
31
|
+
|
|
29
32
|
"// -- Edit Permissions --",
|
|
30
33
|
"Edit(.claude/**)", "Edit(docs/**)",
|
|
31
34
|
"Edit(src/**)", "Edit(tests/**)", "Edit(test/**)",
|