axexec 1.1.0 → 1.1.1
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/index.d.ts +5 -0
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
* Programmatic API for running agents with credential isolation,
|
|
5
5
|
* config generation, and normalized event streaming.
|
|
6
6
|
*/
|
|
7
|
+
import "./agents/claude-code/adapter.js";
|
|
8
|
+
import "./agents/codex/adapter.js";
|
|
9
|
+
import "./agents/gemini/adapter.js";
|
|
10
|
+
import "./agents/opencode/adapter.js";
|
|
11
|
+
import "./agents/copilot/adapter.js";
|
|
7
12
|
export { runAgent } from "./run-agent.js";
|
|
8
13
|
export { cleanupCredentials } from "./credentials/install-credentials.js";
|
|
9
14
|
export type { ExecutionCredentials, ExecutionDirectories, ExecutionMetadata, RunAgentDiagnostics, RunAgentOptions, RunResult, } from "./types/run-result.js";
|
package/dist/index.js
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
* Programmatic API for running agents with credential isolation,
|
|
5
5
|
* config generation, and normalized event streaming.
|
|
6
6
|
*/
|
|
7
|
+
// Import all adapters to trigger self-registration
|
|
8
|
+
import "./agents/claude-code/adapter.js";
|
|
9
|
+
import "./agents/codex/adapter.js";
|
|
10
|
+
import "./agents/gemini/adapter.js";
|
|
11
|
+
import "./agents/opencode/adapter.js";
|
|
12
|
+
import "./agents/copilot/adapter.js";
|
|
7
13
|
// Main entry point
|
|
8
14
|
export { runAgent } from "./run-agent.js";
|
|
9
15
|
// Cleanup utility for use with preserveConfigDirectory option
|
package/package.json
CHANGED