@gw-tools/gw 0.20.5 → 0.20.7
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 +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ A command-line tool for managing git worktrees, built with Deno.
|
|
|
7
7
|
- [gw - Git Worktree Tools](#gw---git-worktree-tools)
|
|
8
8
|
- [Table of Contents](#table-of-contents)
|
|
9
9
|
- [Quick Start](#quick-start)
|
|
10
|
+
- [🎓 AI Skills (for Claude Code, Copilot, Cursor, etc.)](#-ai-skills-for-claude-code-copilot-cursor-etc)
|
|
10
11
|
- [Initial Setup: Secrets in the Default Branch](#initial-setup-secrets-in-the-default-branch)
|
|
11
12
|
- [First-Time Setup Flow](#first-time-setup-flow)
|
|
12
13
|
- [Why This Matters](#why-this-matters)
|
|
@@ -127,6 +128,35 @@ gw cd feat/another-feature
|
|
|
127
128
|
gw checkout main
|
|
128
129
|
```
|
|
129
130
|
|
|
131
|
+
## 🎓 AI Skills (for Claude Code, Copilot, Cursor, etc.)
|
|
132
|
+
|
|
133
|
+
Enhance your AI agent with gw-tools knowledge using [skills.sh](https://skills.sh):
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
npx skills add https://github.com/mthines/gw-tools --skill @gw-git-worktree-workflows @gw-config-management @gw-autonomous-workflow # installs all skills
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Master Git worktrees and gw workflows
|
|
141
|
+
npx skills add https://github.com/mthines/gw-tools --skill @gw-git-worktree-workflows
|
|
142
|
+
|
|
143
|
+
# Configure gw for your project type (Next.js, monorepos, etc.)
|
|
144
|
+
npx skills add https://github.com/mthines/gw-tools --skill @gw-config-management
|
|
145
|
+
|
|
146
|
+
# Autonomous feature development workflow
|
|
147
|
+
npx skills add https://github.com/mthines/gw-tools --skill @gw-autonomous-workflow
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
Once installed, your AI agent can:
|
|
151
|
+
|
|
152
|
+
- Execute complete feature development cycles autonomously
|
|
153
|
+
- Create worktrees for bug fixes and features automatically
|
|
154
|
+
- Configure gw for your specific project type
|
|
155
|
+
- Navigate between worktrees and manage files
|
|
156
|
+
- Create tested PRs from isolated worktrees
|
|
157
|
+
|
|
158
|
+
📖 **Skill documentation:** [skills/README.md](../../skills/README.md)
|
|
159
|
+
|
|
130
160
|
## Initial Setup: Secrets in the Default Branch
|
|
131
161
|
|
|
132
162
|
**Important:** Before using `gw add` with auto-copy, ensure your secrets and environment files exist in your `defaultBranch` worktree (typically `main`). This worktree is the **source** from which files are copied to new worktrees.
|