aui-agent-builder 0.4.6 → 0.4.7
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/api-client/apollo-client.d.ts +102 -5
- package/dist/api-client/apollo-client.d.ts.map +1 -1
- package/dist/api-client/apollo-client.js +136 -5
- package/dist/api-client/apollo-client.js.map +1 -1
- package/dist/commands/import-agent.d.ts +2 -5
- package/dist/commands/import-agent.d.ts.map +1 -1
- package/dist/commands/import-agent.js +1 -1
- package/dist/commands/import-agent.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +10 -3
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/integration-mcp-test.d.ts +0 -2
- package/dist/commands/integration-mcp-test.d.ts.map +1 -1
- package/dist/commands/integration-mcp-test.js +41 -135
- package/dist/commands/integration-mcp-test.js.map +1 -1
- package/dist/commands/integration-mcp-url.d.ts +6 -7
- package/dist/commands/integration-mcp-url.d.ts.map +1 -1
- package/dist/commands/integration-mcp-url.js +10 -29
- package/dist/commands/integration-mcp-url.js.map +1 -1
- package/dist/commands/integration-toolkits.d.ts +4 -11
- package/dist/commands/integration-toolkits.d.ts.map +1 -1
- package/dist/commands/integration-toolkits.js +6 -28
- package/dist/commands/integration-toolkits.js.map +1 -1
- package/dist/commands/integration-tools.d.ts +5 -15
- package/dist/commands/integration-tools.d.ts.map +1 -1
- package/dist/commands/integration-tools.js +17 -63
- package/dist/commands/integration-tools.js.map +1 -1
- package/dist/commands/integration.d.ts +0 -1
- package/dist/commands/integration.d.ts.map +1 -1
- package/dist/commands/integration.js +62 -168
- package/dist/commands/integration.js.map +1 -1
- package/dist/commands/pull-agent.d.ts +2 -5
- package/dist/commands/pull-agent.d.ts.map +1 -1
- package/dist/commands/pull-agent.js +1 -1
- package/dist/commands/pull-agent.js.map +1 -1
- package/dist/errors/index.d.ts +9 -0
- package/dist/errors/index.d.ts.map +1 -1
- package/dist/errors/index.js +20 -9
- package/dist/errors/index.js.map +1 -1
- package/dist/index.js +21 -31
- package/dist/index.js.map +1 -1
- package/dist/services/integration.service.d.ts +73 -148
- package/dist/services/integration.service.d.ts.map +1 -1
- package/dist/services/integration.service.js +400 -559
- package/dist/services/integration.service.js.map +1 -1
- package/dist/services/pull-schema.service.d.ts +4 -5
- package/dist/services/pull-schema.service.d.ts.map +1 -1
- package/dist/services/pull-schema.service.js +12 -10
- package/dist/services/pull-schema.service.js.map +1 -1
- package/dist/ui/components/ErrorDisplay.d.ts.map +1 -1
- package/dist/ui/components/ErrorDisplay.js +16 -4
- package/dist/ui/components/ErrorDisplay.js.map +1 -1
- package/package.json +1 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import type { AuthSchemeType, ConnectedAccountListResponse } from "@composio/core";
|
|
2
1
|
import type { UserSession } from "../config/index.js";
|
|
3
|
-
import
|
|
4
|
-
|
|
2
|
+
import { AUIClient } from "../api-client/index.js";
|
|
3
|
+
import { type AgentMode } from "../commands/util/agent-mode.js";
|
|
4
|
+
import { ApolloClient } from "../api-client/apollo-client.js";
|
|
5
|
+
import { CLIError } from "../errors/index.js";
|
|
5
6
|
export interface MCPToolProperty {
|
|
6
7
|
type?: string;
|
|
7
8
|
description?: string;
|
|
@@ -229,15 +230,20 @@ export interface ComposioToolkitInfo {
|
|
|
229
230
|
authSchemes?: string[];
|
|
230
231
|
isNoAuth?: boolean;
|
|
231
232
|
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
/** Catalog tool metadata returned by `/composio/tools/by-slug`. */
|
|
234
|
+
export interface ComposioToolBySlug {
|
|
235
|
+
slug: string;
|
|
236
|
+
name: string;
|
|
237
|
+
description?: string;
|
|
238
|
+
input_schema?: Record<string, unknown>;
|
|
235
239
|
}
|
|
236
240
|
export interface ComposioAuthCredentials {
|
|
237
241
|
clientId?: string;
|
|
238
242
|
clientSecret?: string;
|
|
239
243
|
bearerToken?: string;
|
|
240
244
|
}
|
|
245
|
+
/** Load BYO Composio OAuth credentials from a JSON file (`client_id`, etc.). */
|
|
246
|
+
export declare function loadComposioCredentialsFile(filePath: string): ComposioAuthCredentials;
|
|
241
247
|
export interface AuthorizationResult {
|
|
242
248
|
id: string;
|
|
243
249
|
status: string;
|
|
@@ -247,8 +253,26 @@ export interface IntegrationResult {
|
|
|
247
253
|
success: boolean;
|
|
248
254
|
data?: unknown;
|
|
249
255
|
error?: string;
|
|
256
|
+
/** Where the integration was persisted. */
|
|
257
|
+
persistedVia?: "local" | "server" | "local_and_server";
|
|
258
|
+
agentMode?: AgentMode;
|
|
259
|
+
suggestion?: string;
|
|
250
260
|
}
|
|
251
261
|
export declare function getAuthenticatedSession(): Promise<UserSession>;
|
|
262
|
+
/**
|
|
263
|
+
* Turn a Composio/Apollo MCP API failure into an actionable CLI error.
|
|
264
|
+
* Auth failures surface as AuthenticationError with login guidance instead
|
|
265
|
+
* of a generic "failed to fetch" message.
|
|
266
|
+
*/
|
|
267
|
+
export declare function composioApiError(error: unknown): CLIError;
|
|
268
|
+
/** Short spinner label for a Composio API failure. */
|
|
269
|
+
export declare function composioFailureLabel(error: unknown, defaultLabel: string): string;
|
|
270
|
+
/** JSON envelope fields for a Composio API failure. */
|
|
271
|
+
export declare function composioFailureJson(error: unknown): {
|
|
272
|
+
code: string;
|
|
273
|
+
message: string;
|
|
274
|
+
suggestion?: string;
|
|
275
|
+
};
|
|
252
276
|
export declare function resolveScopeIds(session: UserSession, overrides?: {
|
|
253
277
|
organizationId?: string;
|
|
254
278
|
accountId?: string;
|
|
@@ -264,25 +288,28 @@ export declare function assertComposioUserIdMatchesNetworkId(composioUserId: str
|
|
|
264
288
|
*/
|
|
265
289
|
export declare function resolveNetworkCategoryId(session: UserSession, networkId: string, scope: ScopeIds): Promise<string>;
|
|
266
290
|
export declare function discoverMCPTools(session: UserSession, serverUrl: string, scope: ScopeIds, auth?: MCPAuthentication, transportType?: MCPIntegrationTransportType): Promise<MCPDiscoveryResult>;
|
|
291
|
+
/** Agent-settings / agent-management client — same session+scope wiring as {@link buildApolloClient}. */
|
|
292
|
+
export declare function buildAUIClient(session: UserSession, scope: ScopeIds): AUIClient;
|
|
267
293
|
export declare function saveIntegration(session: UserSession, request: CreateMCPIntegrationRequest, scope: ScopeIds): Promise<IntegrationResult>;
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
* The key is returned Base64-encoded and decoded here in the CLI.
|
|
272
|
-
*/
|
|
273
|
-
export declare function fetchComposioApiKey(session: UserSession): Promise<string | null>;
|
|
274
|
-
export declare function listComposioToolkits(apiKey: string, options?: {
|
|
294
|
+
/** Build an Apollo client from a session + scope (used by Composio helpers and mcp-test). */
|
|
295
|
+
export declare function buildApolloClient(session: UserSession, scope: ScopeIds): ApolloClient;
|
|
296
|
+
export declare function listComposioToolkits(session: UserSession, scope: ScopeIds, options?: {
|
|
275
297
|
search?: string;
|
|
276
298
|
limit?: number;
|
|
277
299
|
cursor?: string;
|
|
278
300
|
}): Promise<{
|
|
279
301
|
items: ComposioToolkitInfo[];
|
|
280
302
|
nextCursor?: string;
|
|
281
|
-
totalPages: number;
|
|
282
303
|
}>;
|
|
304
|
+
/**
|
|
305
|
+
* Fetch Composio tool catalog metadata by slug via Apollo
|
|
306
|
+
* (`GET /v1/integrations/mcp/composio/tools/by-slug`). No toolkit
|
|
307
|
+
* connection or `composio_user_id` required.
|
|
308
|
+
*/
|
|
309
|
+
export declare function fetchComposioToolsBySlugs(session: UserSession, scope: ScopeIds, slugs: string[]): Promise<ComposioToolBySlug[]>;
|
|
283
310
|
export interface ComposioAuthSchemeOption {
|
|
284
311
|
scheme: string;
|
|
285
|
-
/** True when Composio manages the OAuth app
|
|
312
|
+
/** True when Composio manages the OAuth app — no BYO credentials needed. */
|
|
286
313
|
isManaged: boolean;
|
|
287
314
|
isOAuth: boolean;
|
|
288
315
|
isCredential: boolean;
|
|
@@ -290,117 +317,59 @@ export interface ComposioAuthSchemeOption {
|
|
|
290
317
|
export interface ComposioToolkitAuthInfo {
|
|
291
318
|
/** All auth schemes supported by the toolkit, in declaration order. */
|
|
292
319
|
schemes: ComposioAuthSchemeOption[];
|
|
293
|
-
/** The scheme
|
|
320
|
+
/** The scheme used when none is explicitly selected (first declared). */
|
|
294
321
|
defaultScheme: string;
|
|
295
322
|
/** True when the toolkit requires no authentication at all. */
|
|
296
323
|
isNoAuth: boolean;
|
|
297
324
|
}
|
|
298
325
|
/**
|
|
299
|
-
*
|
|
300
|
-
*
|
|
326
|
+
* Look up a single toolkit by slug (`/composio/toolkits?query=<slug>`)
|
|
327
|
+
* and surface the auth-scheme picker fields the CLI needs.
|
|
301
328
|
*/
|
|
302
|
-
export declare function getComposioToolkitAuthInfo(
|
|
303
|
-
export declare function getComposioConnectedAccounts(apiKey: string, userId: string, toolkitSlug: string): Promise<ConnectedAccountListResponse>;
|
|
329
|
+
export declare function getComposioToolkitAuthInfo(session: UserSession, scope: ScopeIds, toolkitSlug: string): Promise<ComposioToolkitAuthInfo>;
|
|
304
330
|
export interface ComposioToolkitConnectionStatus {
|
|
305
331
|
/** True when the toolkit does not require authentication at all. */
|
|
306
332
|
isNoAuth: boolean;
|
|
307
|
-
/**
|
|
308
|
-
* Auth mode declared by the toolkit (e.g. `OAUTH2`, `API_KEY`).
|
|
309
|
-
* `undefined` for NO_AUTH toolkits.
|
|
310
|
-
*/
|
|
333
|
+
/** Auth mode declared by the toolkit (e.g. `OAUTH2`). Undefined for NO_AUTH. */
|
|
311
334
|
authMode?: string;
|
|
312
|
-
/** Whether
|
|
335
|
+
/** Whether the user has an ACTIVE, non-disabled connected account. */
|
|
313
336
|
isConnected: boolean;
|
|
314
337
|
/** ID of that connected account when `isConnected` is true. */
|
|
315
338
|
connectedAccountId?: string;
|
|
316
339
|
}
|
|
317
340
|
/**
|
|
318
|
-
* Pre-flight
|
|
319
|
-
*
|
|
320
|
-
* `aui integration create`, or proceed
|
|
321
|
-
*
|
|
322
|
-
* - NO_AUTH toolkits → `{ isNoAuth: true, isConnected: true }` (nothing to do).
|
|
323
|
-
* - Auth-required toolkits → `isConnected` reflects whether the user already
|
|
324
|
-
* has an ACTIVE, non-disabled connected account for the toolkit (same
|
|
325
|
-
* predicate `resolveComposioToolkitAuth` uses to short-circuit).
|
|
326
|
-
*
|
|
327
|
-
* This catches the gap that `resolveComposioAuthConfigId` misses: a toolkit
|
|
328
|
-
* can have an auth-config provisioned globally (so MCP-server creation
|
|
329
|
-
* succeeds) while THIS user has not yet linked their account — in which
|
|
330
|
-
* case MCP tool calls would fail at runtime.
|
|
341
|
+
* Pre-flight: is this toolkit usable by this user? Combines toolkit
|
|
342
|
+
* metadata + connected-accounts listing so callers can decide whether
|
|
343
|
+
* to throw, redirect to `aui integration create`, or proceed.
|
|
331
344
|
*/
|
|
332
|
-
export declare function getComposioToolkitConnectionStatus(
|
|
345
|
+
export declare function getComposioToolkitConnectionStatus(session: UserSession, scope: ScopeIds, composioUserId: string, toolkitSlug: string): Promise<ComposioToolkitConnectionStatus>;
|
|
333
346
|
/**
|
|
334
|
-
*
|
|
335
|
-
*
|
|
336
|
-
* - Short-circuits when the user already has an ACTIVE connection.
|
|
337
|
-
* - **BYOD path** (`authCredentials` or `authConfigId` supplied): creates a
|
|
338
|
-
* CUSTOM auth config with the provided credentials, then links the account
|
|
339
|
-
* directly via `connectedAccounts.link()`.
|
|
340
|
-
* - **Standard OAuth path** (no custom credentials): finds or creates a
|
|
341
|
-
* COMPOSIO_MANAGED auth config, then links directly via `connectedAccounts.link()`.
|
|
342
|
-
* Session creation is skipped — the MCP URL is generated server-side.
|
|
347
|
+
* Start (or reuse) a toolkit connection. `redirectUrl` is empty when the
|
|
348
|
+
* connection is already ACTIVE — callers should skip the browser flow.
|
|
343
349
|
*/
|
|
344
|
-
export declare function
|
|
345
|
-
|
|
346
|
-
authScheme?: AuthSchemeType;
|
|
350
|
+
export declare function connectComposioToolkit(session: UserSession, scope: ScopeIds, composioUserId: string, toolkitSlug: string, options?: {
|
|
351
|
+
authScheme?: string;
|
|
347
352
|
authCredentials?: ComposioAuthCredentials;
|
|
348
|
-
|
|
349
|
-
/** Whether the scheme is Composio-managed. When provided, avoids an extra toolkits.get() call. */
|
|
350
|
-
isManaged?: boolean;
|
|
351
|
-
}): Promise<any>;
|
|
353
|
+
}): Promise<AuthorizationResult>;
|
|
352
354
|
/**
|
|
353
|
-
*
|
|
354
|
-
*
|
|
355
|
-
* auth scheme, then delegates to the BYOD path of `resolveComposioToolkitAuth`.
|
|
356
|
-
* - For standard OAuth: delegates directly to `resolveComposioToolkitAuth`
|
|
357
|
-
* which uses a COMPOSIO_MANAGED auth config + `connectedAccounts.link()`.
|
|
358
|
-
*
|
|
359
|
-
* Returns the `ConnectionRequest` alongside the standard `AuthorizationResult`
|
|
360
|
-
* fields so callers can invoke `waitForComposioConnection`.
|
|
355
|
+
* Poll `/composio/connected-accounts` until an ACTIVE entry appears for
|
|
356
|
+
* the `(user, toolkit)` pair, or `timeoutMs` elapses.
|
|
361
357
|
*/
|
|
362
|
-
export declare function
|
|
363
|
-
callbackUrl?: string;
|
|
364
|
-
authCredentials?: ComposioAuthCredentials;
|
|
365
|
-
/** Explicit auth scheme — overrides auto-detection when supplied. */
|
|
366
|
-
authScheme?: string;
|
|
367
|
-
/** Whether the scheme is Composio-managed (from getComposioToolkitAuthInfo). Avoids an extra API call when provided. */
|
|
368
|
-
isManaged?: boolean;
|
|
369
|
-
}): Promise<AuthorizationResult & {
|
|
370
|
-
connectionRequest: any;
|
|
371
|
-
}>;
|
|
372
|
-
export declare function waitForComposioConnection(authResult: ComposioAuthResult, timeout?: number): Promise<{
|
|
358
|
+
export declare function waitForComposioConnection(session: UserSession, scope: ScopeIds, composioUserId: string, toolkitSlug: string, timeoutMs?: number): Promise<{
|
|
373
359
|
id: string;
|
|
374
360
|
status: string;
|
|
375
361
|
}>;
|
|
376
|
-
interface ComposioMcpServerSpec {
|
|
377
|
-
toolkit: string;
|
|
378
|
-
name: string;
|
|
379
|
-
allowedTools: string[];
|
|
380
|
-
authConfigId?: string;
|
|
381
|
-
}
|
|
382
362
|
/**
|
|
383
|
-
*
|
|
384
|
-
*
|
|
385
|
-
*
|
|
386
|
-
*
|
|
387
|
-
*/
|
|
388
|
-
export declare function getOrCreateComposioMcpServerId(composio: Composio, spec: ComposioMcpServerSpec): Promise<string>;
|
|
389
|
-
/**
|
|
390
|
-
* Resolve the Composio MCP HTTP URL for a `(toolkit, user)` pair.
|
|
391
|
-
*
|
|
392
|
-
* `serverId` is a **caller-stable identifier** used as the MCP server's
|
|
393
|
-
* name in Composio — pass one in to reuse an existing server across
|
|
394
|
-
* runs, or omit it to mint a fresh UUID-prefixed name. The returned
|
|
395
|
-
* `serverId` is whatever was used (input or generated), NOT Composio's
|
|
396
|
-
* internal config id — callers persist it so subsequent calls resolve
|
|
397
|
-
* the same MCP server.
|
|
363
|
+
* Provision (or reuse) a Composio MCP server scoped to `(user, toolkit,
|
|
364
|
+
* allowed_tools)` and return its HTTP URL + caller-stable `serverId`.
|
|
365
|
+
* Backend returns 400 when the toolkit requires auth and no connection
|
|
366
|
+
* exists — callers should `connectComposioToolkit` first.
|
|
398
367
|
*/
|
|
399
|
-
export declare function getComposioServerUrl(
|
|
368
|
+
export declare function getComposioServerUrl(session: UserSession, scope: ScopeIds, params: {
|
|
400
369
|
composioUserId: string;
|
|
401
370
|
toolkit: string;
|
|
402
371
|
allowedTools: string[];
|
|
403
|
-
/** Reuse an existing server name.
|
|
372
|
+
/** Reuse an existing server name. A 30-char id is minted server-side when omitted. */
|
|
404
373
|
serverId?: string;
|
|
405
374
|
}): Promise<{
|
|
406
375
|
url: string;
|
|
@@ -408,59 +377,15 @@ export declare function getComposioServerUrl(apiKey: string, params: {
|
|
|
408
377
|
}>;
|
|
409
378
|
export interface ComposioToolsResult {
|
|
410
379
|
tools: MCPTool[];
|
|
411
|
-
nextCursor?: string;
|
|
412
|
-
totalItems?: number;
|
|
413
380
|
}
|
|
414
381
|
/**
|
|
415
|
-
*
|
|
416
|
-
*
|
|
417
|
-
*/
|
|
418
|
-
export declare function discoverComposioTools(apiKey: string, toolkitSlug: string, options?: {
|
|
419
|
-
query?: string;
|
|
420
|
-
cursor?: string;
|
|
421
|
-
limit?: number;
|
|
422
|
-
}): Promise<ComposioToolsResult>;
|
|
423
|
-
/**
|
|
424
|
-
* One Composio tool descriptor as returned by
|
|
425
|
-
* `GET /api/v3.1/tools?tool_slugs=…`. The Composio response includes a
|
|
426
|
-
* superset of these fields; everything is passed through via index
|
|
427
|
-
* signature so downstream consumers (e.g. `aui integration tools --json`)
|
|
428
|
-
* can read fields we don't model explicitly without code changes here.
|
|
429
|
-
*/
|
|
430
|
-
export interface ComposioToolDetail {
|
|
431
|
-
slug?: string;
|
|
432
|
-
name?: string;
|
|
433
|
-
description?: string;
|
|
434
|
-
toolkit_slug?: string;
|
|
435
|
-
toolkit_name?: string;
|
|
436
|
-
input_parameters?: unknown;
|
|
437
|
-
output_parameters?: unknown;
|
|
438
|
-
tags?: string[];
|
|
439
|
-
no_auth?: boolean;
|
|
440
|
-
[key: string]: unknown;
|
|
441
|
-
}
|
|
442
|
-
export interface ComposioToolsBySlugsResult {
|
|
443
|
-
tools: ComposioToolDetail[];
|
|
444
|
-
totalItems?: number;
|
|
445
|
-
nextCursor?: string;
|
|
446
|
-
}
|
|
447
|
-
/**
|
|
448
|
-
* Fetch full Composio tool descriptors by their slugs. Mirrors the
|
|
449
|
-
* dashboard request
|
|
450
|
-
* GET https://backend.composio.dev/api/v3.1/tools
|
|
451
|
-
* ?toolkit_versions=<version>&tool_slugs=<SLUG_A,SLUG_B>
|
|
452
|
-
*
|
|
453
|
-
* Returns the raw items from the response, so callers (notably the
|
|
454
|
-
* `aui integration tools --json` command) can surface every field
|
|
455
|
-
* Composio sends — input/output schemas, toolkit metadata, tags, etc.
|
|
382
|
+
* List tools exposed by a Composio toolkit for the given user. The user
|
|
383
|
+
* must already be authorised — call `connectComposioToolkit` first.
|
|
456
384
|
*
|
|
457
|
-
*
|
|
458
|
-
*
|
|
459
|
-
*
|
|
385
|
+
* Backend returns the same `MCPToolSchema` shape as `/mcp/list`, so
|
|
386
|
+
* `MCPTool.input_schema` (snake_case) is populated for both DIRECT and
|
|
387
|
+
* COMPOSIO paths consistently.
|
|
460
388
|
*/
|
|
461
|
-
export declare function
|
|
462
|
-
|
|
463
|
-
limit?: number;
|
|
464
|
-
cursor?: string;
|
|
465
|
-
}): Promise<ComposioToolsBySlugsResult>;
|
|
389
|
+
export declare function discoverComposioTools(session: UserSession, scope: ScopeIds, composioUserId: string, toolkitSlug: string): Promise<ComposioToolsResult>;
|
|
390
|
+
export {};
|
|
466
391
|
//# sourceMappingURL=integration.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.service.d.ts","sourceRoot":"","sources":["../../src/services/integration.service.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"integration.service.d.ts","sourceRoot":"","sources":["../../src/services/integration.service.ts"],"names":[],"mappings":"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"}
|