create-mono-agent 0.8.0 → 0.9.0

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 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,6 +10,12 @@ Three equivalent entry points, one behaviour:
10
10
  - `npx create-mono-agent` — the same, spelled explicitly.
11
11
  - `npm i -g create-mono-agent` — a global install that puts the natural `mono-agent` command on your `PATH`.
12
12
 
13
+ On macOS, a one-off `npm create`/npx wizard may start the finished agent in the
14
+ background. Before it does, `@mono-agent/agent-app` copies the exact executing
15
+ package through npm into a private, verified runtime under
16
+ `~/.mono-agent/runtimes/agent-app/`; launchd never keeps a disposable npm-cache
17
+ path. This does not install a global command or mutate `PATH`.
18
+
13
19
  The bare `mono-agent` npm name is unavailable — npm rejects it as too similar to
14
20
  an unrelated `monoagent` package — so this installer follows the `create-*`
15
21
  convention while still exposing the ergonomic `mono-agent` bin.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mono-agent",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "npm-init style installer for the mono-agent CLI: `npm create mono-agent`. Ships both a `create-mono-agent` and a `mono-agent` bin, each delegating to the @mono-agent/agent-app CLI.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -17,7 +17,7 @@
17
17
  "README.md"
18
18
  ],
19
19
  "dependencies": {
20
- "@mono-agent/agent-app": "0.8.0"
20
+ "@mono-agent/agent-app": "0.9.0"
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "public"