@gw-tools/gw 0.56.2 → 0.56.4

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 +22 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -148,6 +148,9 @@ npx skills add https://github.com/mthines/gw-tools --skill
148
148
  Available skills:
149
149
 
150
150
  - **autonomous-workflow** - Autonomous feature development from requirements to PR
151
+ - **create-plan** - Generate structured implementation plan artifacts
152
+ - **create-walkthrough** - Generate PR walkthrough summaries
153
+ - **confidence** - Quality gate for plan, code, or bug analysis validation
151
154
  - **git-worktree-workflows** - Master Git worktrees and gw workflows
152
155
  - **gw-config-management** - Configure gw for your project type (Next.js, monorepos, etc.)
153
156
 
@@ -165,24 +168,36 @@ Once installed, your AI agent can:
165
168
 
166
169
  Want Claude Code to autonomously implement features end-to-end?
167
170
 
168
- **Global setup (once):**
171
+ Install the skill + agent either **globally** or **per-project**:
172
+
173
+ **Global** (personal use — works in all projects):
169
174
 
170
175
  ```bash
171
- # Install skill + agent definition
172
- npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes && \
176
+ npx skills add https://github.com/mthines/gw-tools \
177
+ --skill autonomous-workflow create-plan create-walkthrough confidence \
178
+ --global --yes && \
173
179
  mkdir -p ~/.claude/agents && \
174
- ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
180
+ ln -sf ~/.agents/skills/autonomous-workflow/templates/agent.template.md \
175
181
  ~/.claude/agents/autonomous-workflow.md
176
182
  ```
177
183
 
178
- **Per-project auto-trigger:**
184
+ Installs all skills to `~/.agents/skills/` and links the agent definition into `~/.claude/agents/` so it's available in every project.
185
+
186
+ **Per-project** (team use — committable to git):
179
187
 
180
188
  ```bash
181
- mkdir -p .claude/rules && \
182
- ln -sf ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
189
+ npx skills add https://github.com/mthines/gw-tools \
190
+ --skill autonomous-workflow create-plan create-walkthrough confidence \
191
+ --yes && \
192
+ mkdir -p .claude/agents .claude/rules && \
193
+ ln -sf .agents/skills/autonomous-workflow/templates/agent.template.md \
194
+ .claude/agents/autonomous-workflow.md && \
195
+ ln -sf .agents/skills/autonomous-workflow/templates/routing-rule.template.md \
183
196
  .claude/rules/autonomous-workflow-routing.md
184
197
  ```
185
198
 
199
+ Installs all skills to `.agents/skills/` in your project and links the agent + routing rule into `.claude/`. All paths are relative, so the setup can be committed and shared with your team.
200
+
186
201
  Then say _"implement X independently"_ and the agent takes over. It will:
187
202
 
188
203
  - Create isolated worktrees for each task
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gw-tools/gw",
3
- "version": "0.56.2",
3
+ "version": "0.56.4",
4
4
  "description": "A command-line tool for managing git worktrees - copy files between worktrees with ease",
5
5
  "keywords": [
6
6
  "git",