@a5c-ai/agent-mux-adapters 5.0.1-staging.69cb593ea → 5.0.1-staging.69cb593ea536
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/adapter-install.d.ts +1 -0
- package/dist/agent-mux-remote-adapter.d.ts +1 -0
- package/dist/amp-adapter.d.ts +1 -0
- package/dist/auth-config.d.ts +1 -0
- package/dist/babysitter-adapter.d.ts +1 -0
- package/dist/base-adapter-helpers.d.ts +1 -0
- package/dist/base-adapter.d.ts +1 -0
- package/dist/claude-adapter.d.ts +1 -0
- package/dist/claude-agent-sdk-adapter.d.ts +1 -0
- package/dist/claude-code/runtime-hooks/ephemeral-config.d.ts +1 -0
- package/dist/claude-code/runtime-hooks/hook-socket-server.d.ts +1 -0
- package/dist/claude-code/runtime-hooks/lifecycle.d.ts +1 -0
- package/dist/claude-remote-control-adapter.d.ts +1 -0
- package/dist/codex-adapter.d.ts +1 -0
- package/dist/codex-sdk-adapter.d.ts +1 -0
- package/dist/codex-sdk-mocks.d.ts +1 -0
- package/dist/codex-websocket-adapter.d.ts +1 -0
- package/dist/codex-websocket-connection.d.ts +1 -0
- package/dist/copilot-adapter.d.ts +1 -0
- package/dist/cursor-adapter.d.ts +1 -0
- package/dist/droid-adapter.d.ts +1 -0
- package/dist/gemini-adapter.d.ts +1 -0
- package/dist/hermes-adapter.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/mcp-plugins.d.ts +1 -0
- package/dist/omp-adapter.d.ts +1 -0
- package/dist/openclaw-adapter.d.ts +1 -0
- package/dist/opencode-adapter.d.ts +1 -0
- package/dist/opencode-http-adapter.d.ts +1 -0
- package/dist/opencode-http-connection.d.ts +1 -0
- package/dist/pi-adapter.d.ts +1 -0
- package/dist/pi-sdk-adapter.d.ts +1 -0
- package/dist/programmatic-adapter-base.d.ts +1 -0
- package/dist/provider-translation.d.ts +1 -0
- package/dist/qwen-adapter.d.ts +1 -0
- package/dist/remote-adapter-base.d.ts +1 -0
- package/dist/session-fs.d.ts +1 -0
- package/dist/shared/runtime-hooks-virtual.d.ts +1 -0
- package/dist/translate-for-harness.d.ts +1 -0
- package/dist/translations/claude-translation.d.ts +1 -0
- package/dist/translations/codex-translation.d.ts +1 -0
- package/dist/translations/gemini-translation.d.ts +1 -0
- package/dist/translations/generic-openai-translation.d.ts +1 -0
- package/dist/translations/opencode-translation.d.ts +1 -0
- package/dist/translations/pi-translation.d.ts +1 -0
- package/package.json +3 -3
|
@@ -18,3 +18,4 @@ export interface InstallContext {
|
|
|
18
18
|
}
|
|
19
19
|
export declare function runInstall(ctx: InstallContext, opts: AdapterInstallOptions): Promise<InstallResult>;
|
|
20
20
|
export declare function runUpdate(ctx: InstallContext, opts: AdapterUpdateOptions): Promise<InstallResult>;
|
|
21
|
+
//# sourceMappingURL=adapter-install.d.ts.map
|
|
@@ -64,3 +64,4 @@ export declare class AgentMuxRemoteAdapter extends BaseAgentAdapter {
|
|
|
64
64
|
install(opts?: import('@a5c-ai/agent-mux-core').AdapterInstallOptions): Promise<import('@a5c-ai/agent-mux-core').InstallResult>;
|
|
65
65
|
update(opts?: import('@a5c-ai/agent-mux-core').AdapterUpdateOptions): Promise<import('@a5c-ai/agent-mux-core').InstallResult>;
|
|
66
66
|
}
|
|
67
|
+
//# sourceMappingURL=agent-mux-remote-adapter.d.ts.map
|
package/dist/amp-adapter.d.ts
CHANGED
package/dist/auth-config.d.ts
CHANGED
|
@@ -42,3 +42,4 @@ export declare function readAuthConfigIdentity(candidates: string[], tokenKeys?:
|
|
|
42
42
|
* Never throws — keytar is treated as a soft optional dependency.
|
|
43
43
|
*/
|
|
44
44
|
export declare function tryKeychainLookup(service: string, account: string): Promise<string | null>;
|
|
45
|
+
//# sourceMappingURL=auth-config.d.ts.map
|
package/dist/base-adapter.d.ts
CHANGED
package/dist/claude-adapter.d.ts
CHANGED
|
@@ -9,3 +9,4 @@ export interface ClaudeRuntimeHookConfig {
|
|
|
9
9
|
export declare function cleanupStaleClaudeRuntimeHookDirs(): Promise<void>;
|
|
10
10
|
export declare function removeClaudeRuntimeHookConfig(dir: string): Promise<void>;
|
|
11
11
|
export declare function createClaudeRuntimeHookConfig(runId: string): Promise<ClaudeRuntimeHookConfig>;
|
|
12
|
+
//# sourceMappingURL=ephemeral-config.d.ts.map
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import type { RunOptions, RuntimeHookDispatcher, RuntimeHookSetup } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
export declare function setupClaudeRuntimeHooks(options: RunOptions, dispatcher: RuntimeHookDispatcher): Promise<RuntimeHookSetup | void>;
|
|
3
|
+
//# sourceMappingURL=lifecycle.d.ts.map
|
package/dist/codex-adapter.d.ts
CHANGED
|
@@ -48,3 +48,4 @@ export declare function createChatCompletion(params: {
|
|
|
48
48
|
temperature: number;
|
|
49
49
|
}): Promise<AsyncIterable<OpenAICompletionChunk>>;
|
|
50
50
|
export declare function executeMockFunction(name: string, arguments_: string): Promise<string>;
|
|
51
|
+
//# sourceMappingURL=codex-sdk-mocks.d.ts.map
|
package/dist/cursor-adapter.d.ts
CHANGED
package/dist/droid-adapter.d.ts
CHANGED
package/dist/gemini-adapter.d.ts
CHANGED
package/dist/hermes-adapter.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -30,3 +30,4 @@ export { QwenAdapter } from './qwen-adapter.js';
|
|
|
30
30
|
export { BabysitterAdapter } from './babysitter-adapter.js';
|
|
31
31
|
export type { HarnessProviderTranslation } from './provider-translation.js';
|
|
32
32
|
export { translateForHarness } from './translate-for-harness.js';
|
|
33
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/mcp-plugins.d.ts
CHANGED
|
@@ -12,3 +12,4 @@ export declare function mcpInstallPlugin(configPaths: string | Record<string, st
|
|
|
12
12
|
export declare function mcpUninstallPlugin(configPaths: string | Record<string, string>, pluginId: string, options?: {
|
|
13
13
|
global?: boolean;
|
|
14
14
|
}): Promise<void>;
|
|
15
|
+
//# sourceMappingURL=mcp-plugins.d.ts.map
|
package/dist/omp-adapter.d.ts
CHANGED
package/dist/pi-adapter.d.ts
CHANGED
package/dist/pi-sdk-adapter.d.ts
CHANGED
package/dist/qwen-adapter.d.ts
CHANGED
package/dist/session-fs.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ProviderConfig } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
import type { HarnessProviderTranslation } from '../provider-translation.js';
|
|
3
3
|
export declare function translateForClaude(config: ProviderConfig): HarnessProviderTranslation;
|
|
4
|
+
//# sourceMappingURL=claude-translation.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ProviderConfig } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
import type { HarnessProviderTranslation } from '../provider-translation.js';
|
|
3
3
|
export declare function translateForCodex(config: ProviderConfig): HarnessProviderTranslation;
|
|
4
|
+
//# sourceMappingURL=codex-translation.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ProviderConfig } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
import type { HarnessProviderTranslation } from '../provider-translation.js';
|
|
3
3
|
export declare function translateForGemini(config: ProviderConfig): HarnessProviderTranslation;
|
|
4
|
+
//# sourceMappingURL=gemini-translation.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ProviderConfig } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
import type { HarnessProviderTranslation } from '../provider-translation.js';
|
|
3
3
|
export declare function translateForGenericOpenAI(config: ProviderConfig): HarnessProviderTranslation;
|
|
4
|
+
//# sourceMappingURL=generic-openai-translation.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ProviderConfig } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
import type { HarnessProviderTranslation } from '../provider-translation.js';
|
|
3
3
|
export declare function translateForOpenCode(config: ProviderConfig): HarnessProviderTranslation;
|
|
4
|
+
//# sourceMappingURL=opencode-translation.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ProviderConfig } from '@a5c-ai/agent-mux-core';
|
|
2
2
|
import type { HarnessProviderTranslation } from '../provider-translation.js';
|
|
3
3
|
export declare function translateForPi(config: ProviderConfig): HarnessProviderTranslation;
|
|
4
|
+
//# sourceMappingURL=pi-translation.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/agent-mux-adapters",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.69cb593ea536",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Built-in agent adapters for agent-mux",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"prepublishOnly": "npm run build"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@a5c-ai/agent-catalog": "5.0.1-staging.
|
|
56
|
-
"@a5c-ai/agent-mux-core": "5.0.1-staging.
|
|
55
|
+
"@a5c-ai/agent-catalog": "5.0.1-staging.69cb593ea536",
|
|
56
|
+
"@a5c-ai/agent-mux-core": "5.0.1-staging.69cb593ea536",
|
|
57
57
|
"@anthropic-ai/claude-agent-sdk": "^0.2.113",
|
|
58
58
|
"ws": "^8.20.0"
|
|
59
59
|
}
|