Skip to content

Commit f69d011

Browse files
authored
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>
1 parent 623f60f commit f69d011

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ Or search for **Patchloom** in the Extensions view (`Ctrl+Shift+X` / `Cmd+Shift+
2525

2626
## Get started in 30 seconds
2727

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+
```
2934
2. Open a project and run **Patchloom: Setup Workspace**
3035

3136
<p align="center">
@@ -83,7 +88,7 @@ Click it to see full diagnostics, including per-editor MCP configuration status
8388

8489
### Batch operations
8590

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.
8792

8893
### Output channel
8994

@@ -103,7 +108,7 @@ The extension detects outdated CLI builds and warns with upgrade guidance. It re
103108
| `Patchloom: Initialize Project` | Generate or diff `AGENTS.md` from `patchloom agent-rules` |
104109
| `Patchloom: Configure MCP` | Inject Patchloom MCP server config into editor config files |
105110
| `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 |
107112
| `Patchloom: Show Output` | Open the Patchloom output channel for CLI logs and diagnostics |
108113
| `Patchloom: Show Status` | Display binary readiness, version, compatibility, and workspace state |
109114
| `Patchloom: Verify MCP Server` | Spawn the MCP server and verify it responds to a JSON-RPC initialize request |

src/commands/managedInstall.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export async function updatePatchloom(): Promise<void> {
121121

122122
if (choice === "View Release") {
123123
await vscode.env.openExternal(
124-
vscode.Uri.parse(`${PATCHLOOM_RELEASES_URL}/tag/v${latestVersion}`)
124+
vscode.Uri.parse(`${PATCHLOOM_RELEASES_URL}/tag/patchloom-v${latestVersion}`)
125125
);
126126
return;
127127
}

0 commit comments

Comments
 (0)