@a5c-ai/agent-mux 5.0.1-staging.69cb593ea → 5.0.1-staging.6ab464ce4307
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/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Unified dispatch layer for local CLI-based AI coding agents — Claude Code, Codex, Gemini, Copilot, Cursor, OpenCode, and more.
|
|
4
4
|
|
|
5
|
-
This meta-package re-exports `@a5c-ai/agent-mux
|
|
5
|
+
This meta-package re-exports `@a5c-ai/agent-comm-mux`, `@a5c-ai/agent-mux-adapters`, and `@a5c-ai/agent-mux-cli` as one convenient install.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Convenience meta-package: re-exports core + adapters + cli.
|
|
5
5
|
*/
|
|
6
|
-
export * from '@a5c-ai/agent-mux
|
|
6
|
+
export * from '@a5c-ai/agent-comm-mux';
|
|
7
7
|
export * from '@a5c-ai/agent-mux-adapters';
|
|
8
8
|
export * from '@a5c-ai/agent-mux-cli';
|
|
9
9
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/agent-mux",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.6ab464ce4307",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Unified dispatch layer for local CLI-based AI coding agents",
|
|
@@ -54,8 +54,18 @@
|
|
|
54
54
|
"prepublishOnly": "npm run build"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@a5c-ai/agent-mux
|
|
58
|
-
"@a5c-ai/agent-mux-adapters": "5.0.1-staging.
|
|
59
|
-
"@a5c-ai/agent-mux-cli": "5.0.1-staging.
|
|
57
|
+
"@a5c-ai/agent-comm-mux": "5.0.1-staging.6ab464ce4307",
|
|
58
|
+
"@a5c-ai/agent-mux-adapters": "5.0.1-staging.6ab464ce4307",
|
|
59
|
+
"@a5c-ai/agent-mux-cli": "5.0.1-staging.6ab464ce4307"
|
|
60
|
+
},
|
|
61
|
+
"atlas": {
|
|
62
|
+
"layers": [
|
|
63
|
+
"L4",
|
|
64
|
+
"L5",
|
|
65
|
+
"L6"
|
|
66
|
+
],
|
|
67
|
+
"muxes": [
|
|
68
|
+
"agent-mux"
|
|
69
|
+
]
|
|
60
70
|
}
|
|
61
71
|
}
|