@a5c-ai/agent-mux-cli 5.0.1-staging.ceeaa92b2 → 5.0.1-staging.ceeaa92b21a9
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/bootstrap.d.ts +1 -0
- package/dist/commands/adapters.d.ts +1 -0
- package/dist/commands/agent.d.ts +1 -0
- package/dist/commands/auth.d.ts +1 -0
- package/dist/commands/config.d.ts +1 -0
- package/dist/commands/detect-host.d.ts +1 -0
- package/dist/commands/doctor.d.ts +1 -0
- package/dist/commands/gateway/index.d.ts +1 -0
- package/dist/commands/gateway/serve.d.ts +1 -0
- package/dist/commands/gateway/status.d.ts +1 -0
- package/dist/commands/gateway/tokens.d.ts +1 -0
- package/dist/commands/help.d.ts +1 -0
- package/dist/commands/hooks.d.ts +1 -0
- package/dist/commands/install-helpers.d.ts +1 -0
- package/dist/commands/install.d.ts +1 -0
- package/dist/commands/launch-bridge-hooks.d.ts +1 -0
- package/dist/commands/launch-completion-engine.d.ts +1 -0
- package/dist/commands/launch.d.ts +1 -0
- package/dist/commands/mcp.d.ts +1 -0
- package/dist/commands/models.d.ts +1 -0
- package/dist/commands/plugin.d.ts +1 -0
- package/dist/commands/profiles.d.ts +1 -0
- package/dist/commands/remote.d.ts +1 -0
- package/dist/commands/run.d.ts +1 -0
- package/dist/commands/sessions.d.ts +1 -0
- package/dist/commands/skill.d.ts +1 -0
- package/dist/commands/tui.d.ts +1 -0
- package/dist/commands/workspaces.d.ts +1 -0
- package/dist/exit-codes.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/agent-capabilities.d.ts +1 -0
- package/dist/lib/agent-skill-paths.d.ts +1 -0
- package/dist/lib/agent-subagent-paths.d.ts +1 -0
- package/dist/output.d.ts +1 -0
- package/dist/parse-args.d.ts +1 -0
- package/dist/read-stdin.d.ts +1 -0
- package/package.json +6 -6
package/dist/bootstrap.d.ts
CHANGED
package/dist/commands/agent.d.ts
CHANGED
|
@@ -9,3 +9,4 @@ import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
|
|
|
9
9
|
import type { ParsedArgs, FlagDef } from '../parse-args.js';
|
|
10
10
|
export declare const AGENT_FLAGS: Record<string, FlagDef>;
|
|
11
11
|
export declare function agentCommand(_client: AgentMuxClient, args: ParsedArgs): Promise<number>;
|
|
12
|
+
//# sourceMappingURL=agent.d.ts.map
|
package/dist/commands/auth.d.ts
CHANGED
|
@@ -3,3 +3,4 @@ import type { ParsedArgs } from '../../parse-args.js';
|
|
|
3
3
|
import type { FlagDef } from '../../parse-args.js';
|
|
4
4
|
export declare const GATEWAY_FLAGS: Record<string, FlagDef>;
|
|
5
5
|
export declare function gatewayCommand(_client: AgentMuxClient, args: ParsedArgs): Promise<number>;
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -3,3 +3,4 @@ import type { ParsedArgs } from '../../parse-args.js';
|
|
|
3
3
|
export declare const DEFAULT_GATEWAY_CONFIG_PATH: string;
|
|
4
4
|
export declare function loadGatewayConfig(configPath: string): Promise<Partial<GatewayConfig>>;
|
|
5
5
|
export declare function serveGatewayCommand(args: ParsedArgs): Promise<number>;
|
|
6
|
+
//# sourceMappingURL=serve.d.ts.map
|
package/dist/commands/help.d.ts
CHANGED
package/dist/commands/hooks.d.ts
CHANGED
|
@@ -14,3 +14,4 @@ import type { ParsedArgs } from '../parse-args.js';
|
|
|
14
14
|
import type { FlagDef } from '../parse-args.js';
|
|
15
15
|
export declare const HOOKS_FLAGS: Record<string, FlagDef>;
|
|
16
16
|
export declare function hooksCommand(_client: AgentMuxClient, args: ParsedArgs): Promise<number>;
|
|
17
|
+
//# sourceMappingURL=hooks.d.ts.map
|
|
@@ -22,3 +22,4 @@ export interface InstallCommandDeps {
|
|
|
22
22
|
* `amux detect [<agent>] [--all]`, and `amux uninstall <agent>`.
|
|
23
23
|
*/
|
|
24
24
|
export declare function installCommand(client: AgentMuxClient, args: ParsedArgs, deps?: InstallCommandDeps): Promise<number>;
|
|
25
|
+
//# sourceMappingURL=install.d.ts.map
|
package/dist/commands/mcp.d.ts
CHANGED
package/dist/commands/run.d.ts
CHANGED
package/dist/commands/skill.d.ts
CHANGED
|
@@ -8,3 +8,4 @@ import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
|
|
|
8
8
|
import type { ParsedArgs, FlagDef } from '../parse-args.js';
|
|
9
9
|
export declare const SKILL_FLAGS: Record<string, FlagDef>;
|
|
10
10
|
export declare function skillCommand(_client: AgentMuxClient, args: ParsedArgs): Promise<number>;
|
|
11
|
+
//# sourceMappingURL=skill.d.ts.map
|
package/dist/commands/tui.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
|
|
|
2
2
|
import type { ParsedArgs, FlagDef } from '../parse-args.js';
|
|
3
3
|
export declare const WORKSPACE_FLAGS: Record<string, FlagDef>;
|
|
4
4
|
export declare function workspacesCommand(_client: AgentMuxClient, args: ParsedArgs): Promise<number>;
|
|
5
|
+
//# sourceMappingURL=workspaces.d.ts.map
|
package/dist/exit-codes.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -7,3 +7,4 @@ export declare function findProjectRoot(startDir?: string): string;
|
|
|
7
7
|
export declare function getSkillPaths(agent: string, projectRoot?: string): SkillPaths | null;
|
|
8
8
|
export declare function getSkillDir(agent: string, scope: SkillScope, projectRoot?: string): string | null;
|
|
9
9
|
export declare function listSupportedAgents(): string[];
|
|
10
|
+
//# sourceMappingURL=agent-skill-paths.d.ts.map
|
|
@@ -6,3 +6,4 @@ export interface SubagentPaths {
|
|
|
6
6
|
export declare function getSubagentPaths(agent: string, projectRoot?: string): SubagentPaths | null;
|
|
7
7
|
export declare function getSubagentDir(agent: string, scope: SubagentScope, projectRoot?: string): string | null;
|
|
8
8
|
export declare function listSupportedAgents(): string[];
|
|
9
|
+
//# sourceMappingURL=agent-subagent-paths.d.ts.map
|
package/dist/output.d.ts
CHANGED
package/dist/parse-args.d.ts
CHANGED
|
@@ -55,3 +55,4 @@ export declare function flagBool(flags: Record<string, string | boolean | string
|
|
|
55
55
|
* Get a flag value as a string array (for repeatable flags).
|
|
56
56
|
*/
|
|
57
57
|
export declare function flagArr(flags: Record<string, string | boolean | string[]>, name: string): string[];
|
|
58
|
+
//# sourceMappingURL=parse-args.d.ts.map
|
package/dist/read-stdin.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/agent-mux-cli",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.ceeaa92b21a9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "CLI binary (amux) for agent-mux",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"prepublishOnly": "npm run build"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@a5c-ai/agent-mux-gateway": "5.0.1-staging.
|
|
62
|
-
"@a5c-ai/agent-mux-core": "5.0.1-staging.
|
|
63
|
-
"@a5c-ai/agent-mux-adapters": "5.0.1-staging.
|
|
64
|
-
"@a5c-ai/agent-mux-observability": "5.0.1-staging.
|
|
65
|
-
"@a5c-ai/transport-mux": "5.0.1-staging.
|
|
61
|
+
"@a5c-ai/agent-mux-gateway": "5.0.1-staging.ceeaa92b21a9",
|
|
62
|
+
"@a5c-ai/agent-mux-core": "5.0.1-staging.ceeaa92b21a9",
|
|
63
|
+
"@a5c-ai/agent-mux-adapters": "5.0.1-staging.ceeaa92b21a9",
|
|
64
|
+
"@a5c-ai/agent-mux-observability": "5.0.1-staging.ceeaa92b21a9",
|
|
65
|
+
"@a5c-ai/transport-mux": "5.0.1-staging.ceeaa92b21a9",
|
|
66
66
|
"qrcode-terminal": "^0.12.0",
|
|
67
67
|
"yaml": "^2.8.3"
|
|
68
68
|
},
|