metaharness 0.2.0 → 0.2.1
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/index.js +1 -1
- package/package.json +3 -2
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.2.
|
|
187
|
+
const DARWIN_VERSION = '^0.2.2';
|
|
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.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "MetaHarness — 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": {
|
|
@@ -96,7 +96,8 @@
|
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
98
|
"kolorist": "^1.8.0",
|
|
99
|
-
"prompts": "^2.4.2"
|
|
99
|
+
"prompts": "^2.4.2",
|
|
100
|
+
"@metaharness/darwin": "^0.2.2"
|
|
100
101
|
},
|
|
101
102
|
"peerDependencies": {
|
|
102
103
|
"@metaharness/kernel": "^0.1.0"
|