worclaude 1.3.6 → 1.3.8

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,6 +1,6 @@
1
1
  {
2
2
  "name": "worclaude",
3
- "version": "1.3.6",
3
+ "version": "1.3.8",
4
4
  "description": "CLI tool that scaffolds a comprehensive Claude Code workflow into any project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,7 +1,8 @@
1
- 1. Stage all changes: git add -A
2
- 2. Write a clear, conventional commit message
3
- 3. Push to the current branch
4
- 4. Create a PR with:
1
+ 1. Update docs/spec/PROGRESS.md with what was completed this session
2
+ 2. Stage all changes: git add -A
3
+ 3. Write a clear, conventional commit message
4
+ 4. Push to the current branch
5
+ 5. Create a PR with:
5
6
  - Clear title matching conventional commit format
6
7
  - Description of changes
7
8
  - Testing done
@@ -1,9 +1,11 @@
1
- Update docs/spec/PROGRESS.md with:
2
- - What was completed this session
3
- - What's in progress
4
- - Any blockers or decisions needed
5
- - Next steps
1
+ Use this command ONLY when stopping mid-task (unfinished work).
2
+ If the task is complete, use /commit-push-pr instead it handles PROGRESS.md updates.
6
3
 
7
- If ending mid-task, write a handoff document at
8
- docs/handoffs/HANDOFF_{date}.md with enough context
9
- for a fresh session to continue seamlessly.
4
+ When stopping mid-task:
5
+ 1. Update docs/spec/PROGRESS.md with:
6
+ - What's in progress
7
+ - Any blockers or decisions needed
8
+ - Next steps to resume
9
+ 2. Write a handoff document at docs/handoffs/HANDOFF_{date}.md
10
+ with enough context for a fresh session to continue seamlessly.
11
+ 3. Stage and commit the progress update: git add -A && git commit
@@ -26,7 +26,7 @@ See `.claude/skills/` — load only what's relevant:
26
26
  ## Session Protocol
27
27
  **Start:** Read PROGRESS.md → Read `.claude/skills/agent-routing.md` → Read active implementation prompt if any.
28
28
  **During:** One task at a time. Commit after each. Use subagents per routing guide.
29
- **End:** Update PROGRESS.md. Write handoff if ending mid-task.
29
+ **End:** Use /commit-push-pr (updates PROGRESS.md, commits, pushes, creates PR). Use /end only if stopping mid-task.
30
30
 
31
31
  ## Critical Rules
32
32
  1. SPEC.md is source of truth. Do not invent features.
@@ -11,12 +11,7 @@
11
11
  "Bash(env:*)", "Bash(printenv:*)",
12
12
 
13
13
  "// -- Git --",
14
- "Bash(git status:*)", "Bash(git log:*)", "Bash(git diff:*)",
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/**)",