metaharness 0.4.2 → 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/dist/bin.js +0 -0
- package/dist/harness-bin.js +0 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/templates/minimal/CLAUDE.md.tmpl +1 -0
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/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)),
|