@a5c-ai/agent-mux-cli 5.0.1-staging.dc2dc1847 → 5.0.1-staging.dc2dc1847b5b

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 (37) hide show
  1. package/dist/bootstrap.d.ts +1 -0
  2. package/dist/commands/adapters.d.ts +1 -0
  3. package/dist/commands/agent.d.ts +1 -0
  4. package/dist/commands/auth.d.ts +1 -0
  5. package/dist/commands/config.d.ts +1 -0
  6. package/dist/commands/detect-host.d.ts +1 -0
  7. package/dist/commands/doctor.d.ts +1 -0
  8. package/dist/commands/gateway/index.d.ts +1 -0
  9. package/dist/commands/gateway/serve.d.ts +1 -0
  10. package/dist/commands/gateway/status.d.ts +1 -0
  11. package/dist/commands/gateway/tokens.d.ts +1 -0
  12. package/dist/commands/help.d.ts +1 -0
  13. package/dist/commands/hooks.d.ts +1 -0
  14. package/dist/commands/install-helpers.d.ts +1 -0
  15. package/dist/commands/install.d.ts +1 -0
  16. package/dist/commands/launch-bridge-hooks.d.ts +1 -0
  17. package/dist/commands/launch-completion-engine.d.ts +1 -0
  18. package/dist/commands/launch.d.ts +1 -0
  19. package/dist/commands/mcp.d.ts +1 -0
  20. package/dist/commands/models.d.ts +1 -0
  21. package/dist/commands/plugin.d.ts +1 -0
  22. package/dist/commands/profiles.d.ts +1 -0
  23. package/dist/commands/remote.d.ts +1 -0
  24. package/dist/commands/run.d.ts +1 -0
  25. package/dist/commands/sessions.d.ts +1 -0
  26. package/dist/commands/skill.d.ts +1 -0
  27. package/dist/commands/tui.d.ts +1 -0
  28. package/dist/commands/workspaces.d.ts +1 -0
  29. package/dist/exit-codes.d.ts +1 -0
  30. package/dist/index.d.ts +1 -0
  31. package/dist/lib/agent-capabilities.d.ts +1 -0
  32. package/dist/lib/agent-skill-paths.d.ts +1 -0
  33. package/dist/lib/agent-subagent-paths.d.ts +1 -0
  34. package/dist/output.d.ts +1 -0
  35. package/dist/parse-args.d.ts +1 -0
  36. package/dist/read-stdin.d.ts +1 -0
  37. package/package.json +6 -6
@@ -11,3 +11,4 @@ import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
11
11
  * Safe to call multiple times — `register()` replaces existing entries.
12
12
  */
13
13
  export declare function registerBuiltInAdapters(client: AgentMuxClient): void;
14
+ //# sourceMappingURL=bootstrap.d.ts.map
@@ -6,3 +6,4 @@
6
6
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
7
7
  import type { ParsedArgs } from '../parse-args.js';
8
8
  export declare function adaptersCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
9
+ //# sourceMappingURL=adapters.d.ts.map
@@ -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
@@ -6,3 +6,4 @@
6
6
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
7
7
  import type { ParsedArgs } from '../parse-args.js';
8
8
  export declare function authCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
9
+ //# sourceMappingURL=auth.d.ts.map
@@ -6,3 +6,4 @@
6
6
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
7
7
  import type { ParsedArgs } from '../parse-args.js';
8
8
  export declare function configCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
9
+ //# sourceMappingURL=config.d.ts.map
@@ -5,3 +5,4 @@
5
5
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
6
6
  import type { ParsedArgs } from '../parse-args.js';
7
7
  export declare function detectHostCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
8
+ //# sourceMappingURL=detect-host.d.ts.map
@@ -1,3 +1,4 @@
1
1
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
2
2
  import type { ParsedArgs } from '../parse-args.js';
3
3
  export declare function doctorCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
4
+ //# sourceMappingURL=doctor.d.ts.map
@@ -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
@@ -1,2 +1,3 @@
1
1
  import type { ParsedArgs } from '../../parse-args.js';
2
2
  export declare function gatewayStatusCommand(args: ParsedArgs): Promise<number>;
3
+ //# sourceMappingURL=status.d.ts.map
@@ -1,2 +1,3 @@
1
1
  import type { ParsedArgs } from '../../parse-args.js';
2
2
  export declare function gatewayTokensCommand(args: ParsedArgs): Promise<number>;
3
+ //# sourceMappingURL=tokens.d.ts.map
@@ -11,3 +11,4 @@ export declare function printHelp(command?: string): void;
11
11
  * Print version.
12
12
  */
13
13
  export declare function printVersion(): void;
14
+ //# sourceMappingURL=help.d.ts.map
@@ -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 declare const silentSpawnRunner: SpawnRunner;
22
22
  * results into a single response.
23
23
  */
24
24
  export declare function runSilently<T>(fn: () => Promise<T>): Promise<T>;
25
+ //# sourceMappingURL=install-helpers.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
@@ -57,3 +57,4 @@ export declare class BridgeHookEmulator {
57
57
  /** Return the current run ID, if one was created during session-start. */
58
58
  getRunId(): string | undefined;
59
59
  }
60
+ //# sourceMappingURL=launch-bridge-hooks.d.ts.map
@@ -5,3 +5,4 @@
5
5
  * This module re-exports them so existing import paths continue to work.
6
6
  */
7
7
  export { createOpenAICompletionEngine, createGoogleCompletionEngine } from '@a5c-ai/transport-mux';
8
+ //# sourceMappingURL=launch-completion-engine.d.ts.map
@@ -55,3 +55,4 @@ export interface LaunchPlan {
55
55
  }
56
56
  export declare function resolveLaunchPlan(input: LaunchPlanInput): LaunchPlan;
57
57
  export declare function launchCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
58
+ //# sourceMappingURL=launch.d.ts.map
@@ -1,3 +1,4 @@
1
1
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
2
2
  import type { ParsedArgs } from '../parse-args.js';
3
3
  export declare function mcpCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
4
+ //# sourceMappingURL=mcp.d.ts.map
@@ -6,3 +6,4 @@
6
6
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
7
7
  import type { ParsedArgs } from '../parse-args.js';
8
8
  export declare function modelsCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
9
+ //# sourceMappingURL=models.d.ts.map
@@ -1,3 +1,4 @@
1
1
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
2
2
  import type { ParsedArgs } from '../parse-args.js';
3
3
  export declare function pluginCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
4
+ //# sourceMappingURL=plugin.d.ts.map
@@ -6,3 +6,4 @@
6
6
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
7
7
  import type { ParsedArgs } from '../parse-args.js';
8
8
  export declare function profilesCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
9
+ //# sourceMappingURL=profiles.d.ts.map
@@ -28,3 +28,4 @@ export interface RemoteCommandDeps {
28
28
  * `amux remote update <host> ...`
29
29
  */
30
30
  export declare function remoteCommand(_client: AgentMuxClient, args: ParsedArgs, deps?: RemoteCommandDeps): Promise<number>;
31
+ //# sourceMappingURL=remote.d.ts.map
@@ -25,3 +25,4 @@ export declare function buildRunOptions(args: ParsedArgs, registeredAgents: Set<
25
25
  * Execute the run command.
26
26
  */
27
27
  export declare function runCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
28
+ //# sourceMappingURL=run.d.ts.map
@@ -6,3 +6,4 @@
6
6
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
7
7
  import type { ParsedArgs } from '../parse-args.js';
8
8
  export declare function sessionsCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
9
+ //# sourceMappingURL=sessions.d.ts.map
@@ -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
@@ -1,3 +1,4 @@
1
1
  import type { AgentMuxClient } from '@a5c-ai/agent-mux-core';
2
2
  import type { ParsedArgs } from '../parse-args.js';
3
3
  export declare function tuiCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
4
+ //# sourceMappingURL=tui.d.ts.map
@@ -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
@@ -30,3 +30,4 @@ export type ExitCodeValue = (typeof ExitCode)[keyof typeof ExitCode];
30
30
  * @see docs/10-cli-reference.md Section 4.1
31
31
  */
32
32
  export declare function errorCodeToExitCode(code: ErrorCode): ExitCodeValue;
33
+ //# sourceMappingURL=exit-codes.d.ts.map
package/dist/index.d.ts CHANGED
@@ -20,3 +20,4 @@ export { main as runCli };
20
20
  * @returns Exit code
21
21
  */
22
22
  export declare function main(argv?: string[]): Promise<number>;
23
+ //# sourceMappingURL=index.d.ts.map
@@ -4,3 +4,4 @@ export interface AgentCapabilities {
4
4
  nativePluginCommand: string;
5
5
  }
6
6
  export declare function detectAgentCapabilities(agent: string): Promise<AgentCapabilities>;
7
+ //# sourceMappingURL=agent-capabilities.d.ts.map
@@ -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
@@ -53,3 +53,4 @@ export declare function printWarning(message: string): void;
53
53
  * Print an info message to stderr.
54
54
  */
55
55
  export declare function printInfo(message: string): void;
56
+ //# sourceMappingURL=output.d.ts.map
@@ -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
@@ -1 +1,2 @@
1
1
  export declare function readStdin(): Promise<string>;
2
+ //# sourceMappingURL=read-stdin.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/agent-mux-cli",
3
- "version": "5.0.1-staging.dc2dc1847",
3
+ "version": "5.0.1-staging.dc2dc1847b5b",
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.dc2dc1847",
62
- "@a5c-ai/agent-mux-core": "5.0.1-staging.dc2dc1847",
63
- "@a5c-ai/agent-mux-adapters": "5.0.1-staging.dc2dc1847",
64
- "@a5c-ai/agent-mux-observability": "5.0.1-staging.dc2dc1847",
65
- "@a5c-ai/transport-mux": "5.0.1-staging.dc2dc1847",
61
+ "@a5c-ai/agent-mux-gateway": "5.0.1-staging.dc2dc1847b5b",
62
+ "@a5c-ai/agent-mux-core": "5.0.1-staging.dc2dc1847b5b",
63
+ "@a5c-ai/agent-mux-adapters": "5.0.1-staging.dc2dc1847b5b",
64
+ "@a5c-ai/agent-mux-observability": "5.0.1-staging.dc2dc1847b5b",
65
+ "@a5c-ai/transport-mux": "5.0.1-staging.dc2dc1847b5b",
66
66
  "qrcode-terminal": "^0.12.0",
67
67
  "yaml": "^2.8.3"
68
68
  },