@gw-tools/gw 0.56.3 → 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 +21 -14
- 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,32 +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
|
-
Install the skill
|
|
171
|
+
Install the skill + agent either **globally** or **per-project**:
|
|
169
172
|
|
|
170
|
-
|
|
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):
|
|
173
|
+
**Global** (personal use — works in all projects):
|
|
177
174
|
|
|
178
175
|
```bash
|
|
179
|
-
|
|
180
|
-
|
|
176
|
+
npx skills add https://github.com/mthines/gw-tools \
|
|
177
|
+
--skill autonomous-workflow create-plan create-walkthrough confidence \
|
|
178
|
+
--global --yes && \
|
|
179
|
+
mkdir -p ~/.claude/agents && \
|
|
180
|
+
ln -sf ~/.agents/skills/autonomous-workflow/templates/agent.template.md \
|
|
181
181
|
~/.claude/agents/autonomous-workflow.md
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
-
|
|
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):
|
|
185
187
|
|
|
186
188
|
```bash
|
|
187
|
-
|
|
188
|
-
|
|
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 \
|
|
189
194
|
.claude/agents/autonomous-workflow.md && \
|
|
190
|
-
ln -sf
|
|
195
|
+
ln -sf .agents/skills/autonomous-workflow/templates/routing-rule.template.md \
|
|
191
196
|
.claude/rules/autonomous-workflow-routing.md
|
|
192
197
|
```
|
|
193
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
|
+
|
|
194
201
|
Then say _"implement X independently"_ and the agent takes over. It will:
|
|
195
202
|
|
|
196
203
|
- Create isolated worktrees for each task
|