@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.
- package/README.md +22 -7
- 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
|
-
**
|
|
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
|
-
|
|
172
|
-
|
|
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 ~/.
|
|
180
|
+
ln -sf ~/.agents/skills/autonomous-workflow/templates/agent.template.md \
|
|
175
181
|
~/.claude/agents/autonomous-workflow.md
|
|
176
182
|
```
|
|
177
183
|
|
|
178
|
-
|
|
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
|
-
|
|
182
|
-
|
|
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
|