patchy-cli 0.0.16 → 0.0.17-pr.216.c15e7ee
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 +12 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -221,10 +221,10 @@ Patch sets can include executable scripts that run before and after patches are
|
|
|
221
221
|
```
|
|
222
222
|
patches/
|
|
223
223
|
└── 001-add-feature/
|
|
224
|
-
├── patchy-
|
|
224
|
+
├── patchy-pre-apply # runs before patches
|
|
225
225
|
├── src/file.ts.diff
|
|
226
226
|
├── src/new-file.ts
|
|
227
|
-
└── patchy-
|
|
227
|
+
└── patchy-post-apply # runs after patches
|
|
228
228
|
```
|
|
229
229
|
|
|
230
230
|
### Hook execution
|
|
@@ -298,6 +298,16 @@ patchy base # Interactive
|
|
|
298
298
|
patchy base abc123def # Set base_revision to the specified SHA or tag
|
|
299
299
|
```
|
|
300
300
|
|
|
301
|
+
### `patchy prime`
|
|
302
|
+
|
|
303
|
+
Output AI context for inclusion in `CLAUDE.md` or similar files.
|
|
304
|
+
|
|
305
|
+
```sh
|
|
306
|
+
patchy prime >> CLAUDE.md
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
Outputs a brief description of Patchy, key paths, and essential commands to help AI coding agents understand the project's patch workflow.
|
|
310
|
+
|
|
301
311
|
## License
|
|
302
312
|
|
|
303
313
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17-pr.216.c15e7ee",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"url": "https://github.com/richardgill/patchy"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"patchy-cli-linux-x64": "0.0.
|
|
68
|
-
"patchy-cli-linux-arm64": "0.0.
|
|
69
|
-
"patchy-cli-darwin-x64": "0.0.
|
|
70
|
-
"patchy-cli-darwin-arm64": "0.0.
|
|
71
|
-
"patchy-cli-windows-x64": "0.0.
|
|
67
|
+
"patchy-cli-linux-x64": "0.0.17-pr.216.c15e7ee",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.17-pr.216.c15e7ee",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.17-pr.216.c15e7ee",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.17-pr.216.c15e7ee",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.17-pr.216.c15e7ee"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|