patchy-cli 0.0.17-pr.216.c15e7ee → 0.0.17-pr.218.b1c5a4e
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 +11 -6
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -260,18 +260,17 @@ Note: `patchy generate` is destructive and will remove any unneeded files in the
|
|
|
260
260
|
|
|
261
261
|
### `patchy apply`
|
|
262
262
|
|
|
263
|
-
Apply patch files from `patches/` into `target_repo`. Patch sets are applied in alphabetical order
|
|
263
|
+
Apply patch files from `patches/` into `target_repo`. Patch sets are applied in alphabetical order.
|
|
264
264
|
|
|
265
265
|
```sh
|
|
266
|
-
patchy apply [--only <patch-set>] [--until <patch-set>] [--
|
|
266
|
+
patchy apply [--only <patch-set>] [--until <patch-set>] [--auto-commit=<mode>] [--target-repo] [--patches-dir] [--dry-run]
|
|
267
267
|
```
|
|
268
268
|
|
|
269
269
|
| Flag | Description |
|
|
270
270
|
|------|-------------|
|
|
271
271
|
| `--only <name>` | Apply only the specified patch set |
|
|
272
272
|
| `--until <name>` | Apply patch sets up to and including the specified one |
|
|
273
|
-
| `--
|
|
274
|
-
| `--edit` | Leave the last patch set uncommitted for manual review |
|
|
273
|
+
| `--auto-commit=<mode>` | Control auto-commit behavior: `all` (commit everything), `interactive` (prompt on last, default), `skip-last` (leave last uncommitted), `off` (commit nothing) |
|
|
275
274
|
|
|
276
275
|
### `patchy repo reset`
|
|
277
276
|
|
|
@@ -300,13 +299,19 @@ patchy base abc123def # Set base_revision to the specified SHA or tag
|
|
|
300
299
|
|
|
301
300
|
### `patchy prime`
|
|
302
301
|
|
|
303
|
-
|
|
302
|
+
Prints a prompt you can include in your `AGENTS.md` / `CLAUDE.md`.
|
|
304
303
|
|
|
304
|
+
Tell your agent to run:
|
|
305
|
+
```sh
|
|
306
|
+
patchy prime
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
Or include it directly:
|
|
305
310
|
```sh
|
|
306
311
|
patchy prime >> CLAUDE.md
|
|
307
312
|
```
|
|
308
313
|
|
|
309
|
-
Outputs a brief description of Patchy, key paths, and essential commands to help AI coding agents understand
|
|
314
|
+
Outputs a brief description of Patchy, key paths, and essential commands to help AI coding agents understand your project's patch workflow.
|
|
310
315
|
|
|
311
316
|
## License
|
|
312
317
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.17-pr.
|
|
3
|
+
"version": "0.0.17-pr.218.b1c5a4e",
|
|
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.17-pr.
|
|
68
|
-
"patchy-cli-linux-arm64": "0.0.17-pr.
|
|
69
|
-
"patchy-cli-darwin-x64": "0.0.17-pr.
|
|
70
|
-
"patchy-cli-darwin-arm64": "0.0.17-pr.
|
|
71
|
-
"patchy-cli-windows-x64": "0.0.17-pr.
|
|
67
|
+
"patchy-cli-linux-x64": "0.0.17-pr.218.b1c5a4e",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.17-pr.218.b1c5a4e",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.17-pr.218.b1c5a4e",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.17-pr.218.b1c5a4e",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.17-pr.218.b1c5a4e"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|