You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update release URL tag format and README for patchloom v0.1.4 (#99)
- Fix View Release URL to use patchloom-v tag format (was producing 404s)
- Update README batch description from JSON to line-oriented format
- Add Homebrew, shell script, and cargo install methods to README
Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,12 @@ Or search for **Patchloom** in the Extensions view (`Ctrl+Shift+X` / `Cmd+Shift+
25
25
26
26
## Get started in 30 seconds
27
27
28
-
1. Install the [Patchloom CLI](https://github.com/patchloom/patchloom/releases) (or run **Patchloom: Install Patchloom** from the command palette)
28
+
1. Install the [Patchloom CLI](https://github.com/patchloom/patchloom) (or run **Patchloom: Install Patchloom** from the command palette)
29
+
```sh
30
+
brew install patchloom/tap/patchloom # macOS / Linux (Homebrew)
31
+
curl -LsSf https://github.com/patchloom/patchloom/releases/latest/download/patchloom-installer.sh | sh # shell script
32
+
cargo install patchloom # from source
33
+
```
29
34
2. Open a project and run **Patchloom: Setup Workspace**
30
35
31
36
<palign="center">
@@ -83,7 +88,7 @@ Click it to see full diagnostics, including per-editor MCP configuration status
83
88
84
89
### Batch operations
85
90
86
-
`Patchloom: Batch Apply` opens a JSON plan template where you can compose multiple operations (replace, tidy, doc set). The extension pipes the plan to `patchloom batch --apply` so all changes land atomically.
91
+
`Patchloom: Batch Apply` opens a line-oriented plan template where you can compose multiple operations (replace, tidy, doc set). The extension pipes the plan to `patchloom batch --apply` so all changes land atomically.
87
92
88
93
### Output channel
89
94
@@ -103,7 +108,7 @@ The extension detects outdated CLI builds and warns with upgrade guidance. It re
103
108
|`Patchloom: Initialize Project`| Generate or diff `AGENTS.md` from `patchloom agent-rules`|
104
109
|`Patchloom: Configure MCP`| Inject Patchloom MCP server config into editor config files |
105
110
|`Patchloom: Quick Action`| Build a Patchloom CLI command from an interactive picker |
106
-
|`Patchloom: Batch Apply`| Open a JSON batch plan and execute all operations atomically |
111
+
|`Patchloom: Batch Apply`| Open a batch plan and execute all operations atomically |
107
112
|`Patchloom: Show Output`| Open the Patchloom output channel for CLI logs and diagnostics |
108
113
|`Patchloom: Show Status`| Display binary readiness, version, compatibility, and workspace state |
109
114
|`Patchloom: Verify MCP Server`| Spawn the MCP server and verify it responds to a JSON-RPC initialize request |
0 commit comments