@gw-tools/gw 0.56.1 → 0.56.3

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.
Files changed (2) hide show
  1. package/README.md +16 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -165,21 +165,29 @@ Once installed, your AI agent can:
165
165
 
166
166
  Want Claude Code to autonomously implement features end-to-end?
167
167
 
168
- **Global setup (once):**
168
+ Install the skill:
169
169
 
170
170
  ```bash
171
- # Install skill + agent definition
172
- npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes && \
173
- mkdir -p ~/.claude/agents && \
174
- cp ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
171
+ npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes
172
+ ```
173
+
174
+ Then install the agent + routing rule — either globally or per-project:
175
+
176
+ **Global** (personal use):
177
+
178
+ ```bash
179
+ mkdir -p ~/.claude/agents && \
180
+ ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
175
181
  ~/.claude/agents/autonomous-workflow.md
176
182
  ```
177
183
 
178
- **Per-project auto-trigger:**
184
+ **Per-project** (team use — committable to git, customizable):
179
185
 
180
186
  ```bash
181
- mkdir -p .claude/rules && \
182
- cp ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
187
+ mkdir -p .claude/agents .claude/rules && \
188
+ ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
189
+ .claude/agents/autonomous-workflow.md && \
190
+ ln -sf ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
183
191
  .claude/rules/autonomous-workflow-routing.md
184
192
  ```
185
193
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gw-tools/gw",
3
- "version": "0.56.1",
3
+ "version": "0.56.3",
4
4
  "description": "A command-line tool for managing git worktrees - copy files between worktrees with ease",
5
5
  "keywords": [
6
6
  "git",