@cotal-ai/cmux 0.11.1 → 0.11.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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -8,5 +8,14 @@ depending on this package.
8
8
  **Tier:** `extensions/`. Peer-depends [`@cotal-ai/core`](../../packages/core); self-registers on
9
9
  import.
10
10
 
11
+ Install it into the published CLI, then select it explicitly:
12
+
13
+ ```bash
14
+ cotal ext add @cotal-ai/cmux
15
+ cotal supervise --runtime cmux
16
+ ```
17
+
18
+ Library composition roots can instead `import "@cotal-ai/cmux"` directly.
19
+
11
20
  See [docs/architecture.md](../../docs/architecture.md) (*Manager*) and the
12
21
  [root AGENTS.md](../../AGENTS.md) for the tier rules.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/cmux",
3
3
  "description": "Cotal cmux integration: a cmux Runtime and TerminalLayout provider for spawning agents into cmux tabs.",
4
- "version": "0.11.1",
4
+ "version": "0.11.3",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -17,11 +17,12 @@
17
17
  "import": "./dist/index.js"
18
18
  }
19
19
  },
20
- "dependencies": {
21
- "@cotal-ai/core": "0.11.1"
20
+ "peerDependencies": {
21
+ "@cotal-ai/core": "*"
22
22
  },
23
23
  "devDependencies": {
24
- "tsx": "^4.22.4"
24
+ "tsx": "^4.22.4",
25
+ "@cotal-ai/core": "0.11.3"
25
26
  },
26
27
  "files": [
27
28
  "dist"