metaharness 0.1.18 → 0.1.19

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.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,13 @@
1
- # create-agent-harness
1
+ # metaharness
2
2
 
3
3
  Scaffold your own focused AI agent harness — like [ruflo](https://github.com/ruvnet/ruflo), uniquely yours.
4
4
 
5
+ > Published as **`metaharness`** (the `metaharness` and `harness` CLIs). Earlier versions were published as `create-agent-harness`.
6
+
5
7
  ## Quick start
6
8
 
7
9
  ```bash
8
- npx create-agent-harness my-bot
10
+ npx metaharness my-bot
9
11
  ```
10
12
 
11
13
  You'll be prompted for template, host, description. Out comes a complete npm package ready to `npm publish`.
@@ -13,7 +15,7 @@ You'll be prompted for template, host, description. Out comes a complete npm pac
13
15
  ## Non-interactive
14
16
 
15
17
  ```bash
16
- npx create-agent-harness my-legal-bot \
18
+ npx metaharness my-legal-bot \
17
19
  --template vertical:legal \
18
20
  --host claude-code \
19
21
  --description "Contract redline + risk rating"
@@ -59,7 +61,7 @@ harness help
59
61
  If you've been using ruflo and want your own focused harness from it:
60
62
 
61
63
  ```bash
62
- npx create-agent-harness --from-existing ./
64
+ npx metaharness --from-existing ./
63
65
  ```
64
66
 
65
67
  Lifts agents/skills/commands, rewrites every `ruflo` / `claude-flow` reference, preserves attribution blocks marked with `<!-- ruflo-attribution-block -->`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metaharness",
3
- "version": "0.1.18",
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.",
3
+ "version": "0.1.19",
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": {
7
7
  "type": "git",