Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.13.1 - 2026-08-23
## Unreleased

- Keep Beeper account selector aliases internal while returning plain,
bounded-JSON-safe account projections from contact and messaging reads.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ The skill teaches Codex, Claude Code, Cursor, and other compatible coding
agents when to use Wrench, how to preserve its trust boundaries, and how to
install the CLI if it is missing. Start a new agent session after installation.

Install the current immutable CLI release from the `v0.13.1` tag:
Install the current immutable CLI release from the `v0.13.0` tag:

```sh
bun add --global github:hraness/wrench#v0.13.1
bun add --global github:hraness/wrench#v0.13.0
wrench adapter sync-bundled --json
wrench doctor
```
Expand All @@ -102,7 +102,7 @@ Install Wrench in an agent or application that owns its own model, planning,
tool loop, approvals, and interface:

```sh
bun add github:hraness/wrench#v0.13.1
bun add github:hraness/wrench#v0.13.0
```

```ts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hraness/wrench",
"version": "0.13.1",
"version": "0.13.0",
"description": "Open-source CLI and TypeScript SDK for precise web capabilities for AI agents: page capture, verified media archives, encrypted reads, and typed provider operations.",
"license": "MIT",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions skills/wrench/references/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ When the user asked to install or use Wrench, install the current immutable
release and its reviewed bundled adapter manifests:

```sh
bun add --global github:hraness/wrench#v0.13.1
bun add --global github:hraness/wrench#v0.13.0
wrench adapter sync-bundled --json
wrench --help
wrench doctor --json
Expand All @@ -31,7 +31,7 @@ Do not clone the repository merely to run the CLI. Importing the SDK is a
separate project dependency and does not install a global command:

```sh
bun add github:hraness/wrench#v0.13.1
bun add github:hraness/wrench#v0.13.0
```

## Add only required optional tools
Expand Down
2 changes: 1 addition & 1 deletion src/media/manifest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ function trackedYtDlpManifest(
describe("Wrench media manifest", () => {
test("uses one Wrench-owned schema and transcriber identity", () => {
expect(WRENCH_MEDIA_SCHEMA_VERSION).toBe(1);
expect(WRENCH_MEDIA_VERSION).toBe("0.13.1");
expect(WRENCH_MEDIA_VERSION).toBe("0.13.0");
expect(localTranscriptVariantSegments(localIdentity)).toEqual([
"transcript",
"local",
Expand Down
2 changes: 1 addition & 1 deletion src/media/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import {
import { compareUtf8 } from "./utf8-order";

export const WRENCH_MEDIA_SCHEMA_VERSION = 1 as const;
export const WRENCH_MEDIA_VERSION = "0.13.1" as const;
export const WRENCH_MEDIA_VERSION = "0.13.0" as const;
export const WRENCH_MEDIA_MANIFEST_FILE = "wrench-media.json" as const;
export const WRENCH_MEDIA_CHECKSUM_FILE = "manifest-sha256.txt" as const;
const MAX_ITEM_ENTRIES = 4_096;
Expand Down
2 changes: 1 addition & 1 deletion website/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const REPOSITORY_URL = "https://github.com/hraness/wrench" as const;
export const PUBLISHER_URL = "https://github.com/hraness" as const;
export const SKILL_INSTALL_COMMAND = "npx skills add hraness/wrench" as const;
export const SKILL_INSTALL_COMMAND_BUNX = "bunx skills add hraness/wrench" as const;
export const CONTENT_REVIEWED_RELEASE = "v0.13.1" as const;
export const CONTENT_REVIEWED_RELEASE = "v0.13.0" as const;
export const DEFAULT_POSTHOG_HOST = "https://us.i.posthog.com" as const;

export const PUBLIC_PAGES = [
Expand Down