metaharness 0.4.1 → 0.4.3
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 +1 -1
- package/dist/bin.js +0 -0
- package/dist/harness-bin.js +0 -0
- package/dist/index.js +1 -1
- package/dist/meta-proxy.d.ts +1 -1
- package/dist/meta-proxy.js +1 -1
- package/package.json +2 -2
- package/templates/minimal/CLAUDE.md.tmpl +1 -0
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.
|
|
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
|
```
|
package/dist/bin.js
CHANGED
|
File without changes
|
package/dist/harness-bin.js
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
@@ -184,7 +184,7 @@ export function templateDir(id) {
|
|
|
184
184
|
return join(TEMPLATES_ROOT, id.replace(/:/g, '_'));
|
|
185
185
|
}
|
|
186
186
|
/** ADR-147: the darwin version a scaffolded harness depends on. */
|
|
187
|
-
const DARWIN_VERSION = '^0.
|
|
187
|
+
const DARWIN_VERSION = '^0.8.0';
|
|
188
188
|
/** ADR-147: the real `evolve` skill emitted into every darwin-integrated harness. */
|
|
189
189
|
function darwinEvolveSkill(name) {
|
|
190
190
|
return `---
|
package/dist/meta-proxy.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const META_PROXY_VERSION = "0.
|
|
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";
|
package/dist/meta-proxy.js
CHANGED
|
@@ -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.
|
|
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.
|
|
3
|
+
"version": "0.4.3",
|
|
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": {
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"dependencies": {
|
|
99
99
|
"kolorist": "^1.8.0",
|
|
100
100
|
"prompts": "^2.4.2",
|
|
101
|
-
"@metaharness/darwin": "^0.
|
|
101
|
+
"@metaharness/darwin": "^0.8.0",
|
|
102
102
|
"@metaharness/weight-eft": "^0.1.0",
|
|
103
103
|
"@metaharness/redblue": "^0.1.1",
|
|
104
104
|
"@metaharness/flywheel": "^0.1.1"
|
|
@@ -16,6 +16,7 @@ After `{{name}} init`, the following are available:
|
|
|
16
16
|
|---|---|
|
|
17
17
|
| `{{name}} init` | Scaffold the harness into the current project |
|
|
18
18
|
| `{{name}} doctor` | Health check the install |
|
|
19
|
+
| `{{name}} --version` | Print the kernel version |
|
|
19
20
|
|
|
20
21
|
Run `{{name}} --help` for the full list. Memory ranking and routing are kernel
|
|
21
22
|
primitives used programmatically (see [@metaharness/kernel](https://www.npmjs.com/package/@metaharness/kernel)),
|