metaharness 0.4.1 → 0.4.2

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 CHANGED
@@ -84,7 +84,7 @@ of normal harness scaffolding. Install it only when you want a locally bound,
84
84
  Claude-compatible routing endpoint with Meta-Proxy's own Cognitum OAuth flow:
85
85
 
86
86
  ```bash
87
- npx metaharness proxy install --yes # signed v0.4.1 download; checksum + Ed25519 verified
87
+ npx metaharness proxy install --yes # signed v0.7.1 download; checksum + Ed25519 verified
88
88
  npx metaharness proxy run -- claude # starts the sidecar and routes this Claude session through it
89
89
  npx metaharness proxy run --policy critical -- claude -p "review this migration"
90
90
  ```
@@ -1,4 +1,4 @@
1
- export declare const META_PROXY_VERSION = "0.4.1";
1
+ export declare const META_PROXY_VERSION = "0.7.1";
2
2
  export declare const META_PROXY_RELEASE_BASE = "https://github.com/cognitum-one/meta-proxy-dist/releases/download";
3
3
  /** The release signing key, pinned in the client rather than fetched from GitHub. */
4
4
  export declare const META_PROXY_SIGNING_PUBKEY_PEM = "-----BEGIN PUBLIC KEY-----\nMCowBQYDK2VwAyEAjhLDomjIGdcltYC7j+aiESQFD4LWoHaULietG1PuDjw=\n-----END PUBLIC KEY-----\n";
@@ -12,7 +12,7 @@ import { createHash, createHmac, createPublicKey, verify as verifySignature } fr
12
12
  import { chmodSync, closeSync, existsSync, mkdirSync, mkdtempSync, openSync, readFileSync, readdirSync, renameSync, rmSync, statSync, writeFileSync, } from 'node:fs';
13
13
  import { homedir } from 'node:os';
14
14
  import { basename, join } from 'node:path';
15
- export const META_PROXY_VERSION = '0.4.1';
15
+ export const META_PROXY_VERSION = '0.7.1';
16
16
  export const META_PROXY_RELEASE_BASE = 'https://github.com/cognitum-one/meta-proxy-dist/releases/download';
17
17
  /** The release signing key, pinned in the client rather than fetched from GitHub. */
18
18
  export const META_PROXY_SIGNING_PUBKEY_PEM = `-----BEGIN PUBLIC KEY-----
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metaharness",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "MetaHarness \u2014 mint a custom AI agent harness from any repo. Browser Studio + `npx metaharness` CLI. Runs on Claude Code, Codex, pi.dev, Hermes, OpenClaw, RVM.",
5
5
  "homepage": "https://github.com/ruvnet/agent-harness-generator",
6
6
  "repository": {