@inkeep/agents-api 0.0.0-dev-20260122200302 → 0.0.0-dev-20260122213614

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.
@@ -1,19 +1,5 @@
1
1
  {
2
2
  "steps": {
3
- "src/domains/evals/workflow/functions/evaluateConversation.ts": {
4
- "executeEvaluatorStep": {
5
- "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//executeEvaluatorStep"
6
- },
7
- "getConversationStep": {
8
- "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//getConversationStep"
9
- },
10
- "getEvaluatorsStep": {
11
- "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//getEvaluatorsStep"
12
- },
13
- "logStep": {
14
- "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//logStep"
15
- }
16
- },
17
3
  "node_modules/.pnpm/workflow@4.0.1-beta.33_@aws-sdk+client-sts@3.970.0_@opentelemetry+api@1.9.0_@types+reac_5c488396978166b4f12e99cb3aa4a769/node_modules/workflow/dist/internal/builtins.js": {
18
4
  "__builtin_response_array_buffer": {
19
5
  "stepId": "__builtin_response_array_buffer"
@@ -38,6 +24,20 @@
38
24
  "logStep": {
39
25
  "stepId": "step//src/domains/evals/workflow/functions/runDatasetItem.ts//logStep"
40
26
  }
27
+ },
28
+ "src/domains/evals/workflow/functions/evaluateConversation.ts": {
29
+ "executeEvaluatorStep": {
30
+ "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//executeEvaluatorStep"
31
+ },
32
+ "getConversationStep": {
33
+ "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//getConversationStep"
34
+ },
35
+ "getEvaluatorsStep": {
36
+ "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//getEvaluatorsStep"
37
+ },
38
+ "logStep": {
39
+ "stepId": "step//src/domains/evals/workflow/functions/evaluateConversation.ts//logStep"
40
+ }
41
41
  }
42
42
  },
43
43
  "workflows": {
package/dist/createApp.js CHANGED
@@ -18,7 +18,7 @@ import { evalApiKeyAuth } from "./middleware/evalsAuth.js";
18
18
  import { projectConfigMiddleware, projectConfigMiddlewareExcept } from "./middleware/projectConfig.js";
19
19
  import { executionBaggageMiddleware } from "./middleware/tracing.js";
20
20
  import { setupOpenAPIRoutes } from "./openapi.js";
21
- import { OpenAPIHono, createRoute } from "@hono/zod-openapi";
21
+ import { OpenAPIHono, createRoute, z } from "@hono/zod-openapi";
22
22
  import { Hono } from "hono";
23
23
  import { cors } from "hono/cors";
24
24
  import { requestId } from "hono/request-id";
@@ -33,6 +33,11 @@ const isWebhookRoute = (path) => {
33
33
  function createAgentsHono(config) {
34
34
  const { serverConfig, credentialStores, auth, sandboxConfig } = config;
35
35
  const app = new OpenAPIHono();
36
+ const CapabilitiesResponseSchema = z.object({ sandbox: z.object({
37
+ configured: z.boolean(),
38
+ provider: z.enum(["native", "vercel"]).optional(),
39
+ runtime: z.enum(["node22", "typescript"]).optional()
40
+ }) });
36
41
  app.use("*", requestId());
37
42
  if (auth) {
38
43
  app.use("/api/auth/*", cors(authCorsConfig));
@@ -114,6 +119,32 @@ function createAgentsHono(config) {
114
119
  if (c.req.header("Authorization")?.startsWith("Bearer ")) return manageApiKeyAuth()(c, next);
115
120
  return sessionAuth()(c, next);
116
121
  });
122
+ app.use("/manage/capabilities", async (c, next) => {
123
+ if (!auth || env.DISABLE_AUTH || isTestEnvironment()) {
124
+ await next();
125
+ return;
126
+ }
127
+ if (c.req.header("Authorization")?.startsWith("Bearer ")) return manageApiKeyAuth()(c, next);
128
+ return sessionAuth()(c, next);
129
+ });
130
+ app.openapi(createRoute({
131
+ method: "get",
132
+ path: "/manage/capabilities",
133
+ operationId: "capabilities",
134
+ summary: "Get server capabilities",
135
+ description: "Get information about optional server-side capabilities and configuration.",
136
+ responses: { 200: {
137
+ description: "Server capabilities",
138
+ content: { "application/json": { schema: CapabilitiesResponseSchema } }
139
+ } }
140
+ }), (c) => {
141
+ if (!sandboxConfig) return c.json({ sandbox: { configured: false } });
142
+ return c.json({ sandbox: {
143
+ configured: true,
144
+ provider: sandboxConfig.provider,
145
+ runtime: sandboxConfig.runtime
146
+ } });
147
+ });
117
148
  if (env.DISABLE_AUTH || isTestEnvironment()) app.use("/manage/tenants/:tenantId/*", async (c, next) => {
118
149
  const tenantId = c.req.param("tenantId");
119
150
  if (tenantId) {
@@ -1,6 +1,6 @@
1
- import * as _inkeep_agents_core2 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core0 from "@inkeep/agents-core";
2
2
 
3
3
  //#region src/data/db/manageDbClient.d.ts
4
- declare const manageDbClient: _inkeep_agents_core2.AgentsManageDatabaseClient;
4
+ declare const manageDbClient: _inkeep_agents_core0.AgentsManageDatabaseClient;
5
5
  //#endregion
6
6
  export { manageDbClient as default };
@@ -1,6 +1,6 @@
1
- import * as _inkeep_agents_core3 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core0 from "@inkeep/agents-core";
2
2
 
3
3
  //#region src/data/db/runDbClient.d.ts
4
- declare const runDbClient: _inkeep_agents_core3.AgentsRunDatabaseClient;
4
+ declare const runDbClient: _inkeep_agents_core0.AgentsRunDatabaseClient;
5
5
  //#endregion
6
6
  export { runDbClient as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono17 from "hono";
2
+ import * as hono14 from "hono";
3
3
 
4
4
  //#region src/domains/evals/routes/datasetTriggers.d.ts
5
- declare const app: OpenAPIHono<hono17.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono14.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono18 from "hono";
2
+ import * as hono15 from "hono";
3
3
 
4
4
  //#region src/domains/evals/routes/index.d.ts
5
- declare const app: OpenAPIHono<hono18.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono15.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types5 from "hono/types";
2
+ import * as hono_types6 from "hono/types";
3
3
 
4
4
  //#region src/domains/evals/workflow/routes.d.ts
5
- declare const workflowRoutes: Hono<hono_types5.BlankEnv, hono_types5.BlankSchema, "/">;
5
+ declare const workflowRoutes: Hono<hono_types6.BlankEnv, hono_types6.BlankSchema, "/">;
6
6
  //#endregion
7
7
  export { workflowRoutes };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono1 from "hono";
2
+ import * as hono17 from "hono";
3
3
 
4
4
  //#region src/domains/manage/routes/conversations.d.ts
5
- declare const app: OpenAPIHono<hono1.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono17.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono0 from "hono";
2
+ import * as hono16 from "hono";
3
3
 
4
4
  //#region src/domains/manage/routes/evals/evaluationResults.d.ts
5
- declare const app: OpenAPIHono<hono0.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono16.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono2 from "hono";
2
+ import * as hono18 from "hono";
3
3
 
4
4
  //#region src/domains/manage/routes/index.d.ts
5
- declare const app: OpenAPIHono<hono2.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono18.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types7 from "hono/types";
2
+ import * as hono_types8 from "hono/types";
3
3
 
4
4
  //#region src/domains/manage/routes/mcp.d.ts
5
- declare const app: Hono<hono_types7.BlankEnv, hono_types7.BlankSchema, "/">;
5
+ declare const app: Hono<hono_types8.BlankEnv, hono_types8.BlankSchema, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,10 +1,10 @@
1
1
  import { ManageAppVariables } from "../../../types/app.js";
2
2
  import { Hono } from "hono";
3
- import * as hono_types9 from "hono/types";
3
+ import * as hono_types5 from "hono/types";
4
4
 
5
5
  //#region src/domains/manage/routes/signoz.d.ts
6
6
  declare const app: Hono<{
7
7
  Variables: ManageAppVariables;
8
- }, hono_types9.BlankSchema, "/">;
8
+ }, hono_types5.BlankSchema, "/">;
9
9
  //#endregion
10
10
  export { app as default };
@@ -337,7 +337,7 @@ var Agent = class {
337
337
  });
338
338
  if (streamRequestId && streamHelper && !isInternalToolForUi) await streamHelper.writeToolOutputError({
339
339
  toolCallId,
340
- error: errorMessage
340
+ errorText: errorMessage
341
341
  });
342
342
  throw error;
343
343
  }
@@ -1,6 +1,6 @@
1
1
  import { AgentConfig, DelegateRelation } from "./Agent.js";
2
2
  import { InternalRelation } from "../utils/project.js";
3
- import * as _inkeep_agents_core0 from "@inkeep/agents-core";
3
+ import * as _inkeep_agents_core1 from "@inkeep/agents-core";
4
4
  import { CredentialStoreRegistry, FullExecutionContext } from "@inkeep/agents-core";
5
5
  import * as ai0 from "ai";
6
6
 
@@ -44,7 +44,7 @@ declare function createDelegateToAgentTool({
44
44
  message: string;
45
45
  }, {
46
46
  toolCallId: any;
47
- result: _inkeep_agents_core0.Message | _inkeep_agents_core0.Task;
47
+ result: _inkeep_agents_core1.Message | _inkeep_agents_core1.Task;
48
48
  }>;
49
49
  /**
50
50
  * Parameters for building a transfer relation config
@@ -32,7 +32,7 @@ interface StreamHelper {
32
32
  }): Promise<void>;
33
33
  writeToolOutputError(params: {
34
34
  toolCallId: string;
35
- error: string;
35
+ errorText: string;
36
36
  output?: any;
37
37
  }): Promise<void>;
38
38
  writeToolApprovalRequest(params: {
@@ -126,7 +126,7 @@ declare class SSEStreamHelper implements StreamHelper {
126
126
  }): Promise<void>;
127
127
  writeToolOutputError(params: {
128
128
  toolCallId: string;
129
- error: string;
129
+ errorText: string;
130
130
  output?: any;
131
131
  }): Promise<void>;
132
132
  writeToolApprovalRequest(params: {
@@ -199,7 +199,7 @@ declare class VercelDataStreamHelper implements StreamHelper {
199
199
  }): Promise<void>;
200
200
  writeToolOutputError(params: {
201
201
  toolCallId: string;
202
- error: string;
202
+ errorText: string;
203
203
  output?: any;
204
204
  }): Promise<void>;
205
205
  writeToolApprovalRequest(params: {
@@ -298,7 +298,7 @@ declare class BufferingStreamHelper implements StreamHelper {
298
298
  }): Promise<void>;
299
299
  writeToolOutputError(params: {
300
300
  toolCallId: string;
301
- error: string;
301
+ errorText: string;
302
302
  output?: any;
303
303
  }): Promise<void>;
304
304
  writeToolApprovalRequest(params: {
@@ -159,7 +159,7 @@ var SSEStreamHelper = class {
159
159
  await this.writeContent(JSON.stringify({
160
160
  type: "tool-output-error",
161
161
  toolCallId: params.toolCallId,
162
- error: params.error,
162
+ errorText: params.errorText,
163
163
  output: params.output ?? null
164
164
  }));
165
165
  }
@@ -391,7 +391,7 @@ var VercelDataStreamHelper = class VercelDataStreamHelper {
391
391
  this.writer.write({
392
392
  type: "tool-output-error",
393
393
  toolCallId: params.toolCallId,
394
- error: params.error,
394
+ errorText: params.errorText,
395
395
  output: params.output ?? null
396
396
  });
397
397
  }
@@ -1,4 +1,4 @@
1
- import * as _inkeep_agents_core1 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core3 from "@inkeep/agents-core";
2
2
  import { BreakdownComponentDef, ContextBreakdown, calculateBreakdownTotal, createEmptyBreakdown } from "@inkeep/agents-core";
3
3
 
4
4
  //#region src/domains/run/utils/token-estimator.d.ts
@@ -17,7 +17,7 @@ interface AssembleResult {
17
17
  /** The assembled prompt string */
18
18
  prompt: string;
19
19
  /** Token breakdown for each component */
20
- breakdown: _inkeep_agents_core1.ContextBreakdown;
20
+ breakdown: _inkeep_agents_core3.ContextBreakdown;
21
21
  }
22
22
  //#endregion
23
23
  export { AssembleResult, type BreakdownComponentDef, type ContextBreakdown, calculateBreakdownTotal, createEmptyBreakdown, estimateTokens };
@@ -1,4 +1,4 @@
1
- import * as hono8 from "hono";
1
+ import * as hono0 from "hono";
2
2
  import { BaseExecutionContext } from "@inkeep/agents-core";
3
3
 
4
4
  //#region src/middleware/evalsAuth.d.ts
@@ -7,7 +7,7 @@ import { BaseExecutionContext } from "@inkeep/agents-core";
7
7
  * Middleware to authenticate API requests using Bearer token authentication
8
8
  * First checks if token matches INKEEP_AGENTS_EVAL_API_BYPASS_SECRET,
9
9
  */
10
- declare const evalApiKeyAuth: () => hono8.MiddlewareHandler<{
10
+ declare const evalApiKeyAuth: () => hono0.MiddlewareHandler<{
11
11
  Variables: {
12
12
  executionContext: BaseExecutionContext;
13
13
  };
@@ -1,4 +1,4 @@
1
- import * as hono13 from "hono";
1
+ import * as hono1 from "hono";
2
2
  import { BaseExecutionContext } from "@inkeep/agents-core";
3
3
  import { createAuth } from "@inkeep/agents-core/auth";
4
4
 
@@ -12,7 +12,7 @@ import { createAuth } from "@inkeep/agents-core/auth";
12
12
  * 3. Database API key
13
13
  * 4. Internal service token
14
14
  */
15
- declare const manageApiKeyAuth: () => hono13.MiddlewareHandler<{
15
+ declare const manageApiKeyAuth: () => hono1.MiddlewareHandler<{
16
16
  Variables: {
17
17
  executionContext: BaseExecutionContext;
18
18
  userId?: string;
@@ -1,5 +1,5 @@
1
1
  import { ManageAppVariables } from "../types/app.js";
2
- import * as hono16 from "hono";
2
+ import * as hono2 from "hono";
3
3
 
4
4
  //#region src/middleware/projectAccess.d.ts
5
5
 
@@ -26,6 +26,6 @@ declare const requireProjectPermission: <Env$1 extends {
26
26
  Variables: ManageAppVariables;
27
27
  } = {
28
28
  Variables: ManageAppVariables;
29
- }>(permission?: ProjectPermission) => hono16.MiddlewareHandler<Env$1, string, {}, Response>;
29
+ }>(permission?: ProjectPermission) => hono2.MiddlewareHandler<Env$1, string, {}, Response>;
30
30
  //#endregion
31
31
  export { ProjectPermission, requireProjectPermission };
@@ -1,8 +1,8 @@
1
- import * as hono9 from "hono";
1
+ import * as hono6 from "hono";
2
2
  import { BaseExecutionContext } from "@inkeep/agents-core";
3
3
 
4
4
  //#region src/middleware/runAuth.d.ts
5
- declare const runApiKeyAuth: () => hono9.MiddlewareHandler<{
5
+ declare const runApiKeyAuth: () => hono6.MiddlewareHandler<{
6
6
  Variables: {
7
7
  executionContext: BaseExecutionContext;
8
8
  };
@@ -11,7 +11,7 @@ declare const runApiKeyAuth: () => hono9.MiddlewareHandler<{
11
11
  * Creates a middleware that applies API key authentication except for specified route patterns
12
12
  * @param skipRouteCheck - Function that returns true if the route should skip authentication
13
13
  */
14
- declare const runApiKeyAuthExcept: (skipRouteCheck: (path: string) => boolean) => hono9.MiddlewareHandler<{
14
+ declare const runApiKeyAuthExcept: (skipRouteCheck: (path: string) => boolean) => hono6.MiddlewareHandler<{
15
15
  Variables: {
16
16
  executionContext: BaseExecutionContext;
17
17
  };
@@ -20,7 +20,7 @@ declare const runApiKeyAuthExcept: (skipRouteCheck: (path: string) => boolean) =
20
20
  * Helper middleware for endpoints that optionally support API key authentication
21
21
  * If no auth header is present, it continues without setting the executionContext
22
22
  */
23
- declare const runOptionalAuth: () => hono9.MiddlewareHandler<{
23
+ declare const runOptionalAuth: () => hono6.MiddlewareHandler<{
24
24
  Variables: {
25
25
  executionContext?: BaseExecutionContext;
26
26
  };
@@ -1,4 +1,4 @@
1
- import * as hono14 from "hono";
1
+ import * as hono9 from "hono";
2
2
 
3
3
  //#region src/middleware/sessionAuth.d.ts
4
4
 
@@ -7,11 +7,11 @@ import * as hono14 from "hono";
7
7
  * Requires that a user has already been authenticated via Better Auth session.
8
8
  * Used primarily for manage routes that require an active user session.
9
9
  */
10
- declare const sessionAuth: () => hono14.MiddlewareHandler<any, string, {}, Response>;
10
+ declare const sessionAuth: () => hono9.MiddlewareHandler<any, string, {}, Response>;
11
11
  /**
12
12
  * Global session middleware - sets user and session in context for all routes
13
13
  * Used for all routes that require an active user session.
14
14
  */
15
- declare const sessionContext: () => hono14.MiddlewareHandler<any, string, {}, Response>;
15
+ declare const sessionContext: () => hono9.MiddlewareHandler<any, string, {}, Response>;
16
16
  //#endregion
17
17
  export { sessionAuth, sessionContext };
@@ -1,4 +1,4 @@
1
- import * as hono12 from "hono";
1
+ import * as hono11 from "hono";
2
2
 
3
3
  //#region src/middleware/tenantAccess.d.ts
4
4
 
@@ -11,7 +11,7 @@ import * as hono12 from "hono";
11
11
  * - API key user: Access only to the tenant associated with the API key
12
12
  * - Session user: Access based on organization membership
13
13
  */
14
- declare const requireTenantAccess: () => hono12.MiddlewareHandler<{
14
+ declare const requireTenantAccess: () => hono11.MiddlewareHandler<{
15
15
  Variables: {
16
16
  userId: string;
17
17
  tenantId: string;
@@ -1,7 +1,7 @@
1
- import * as hono6 from "hono";
1
+ import * as hono12 from "hono";
2
2
 
3
3
  //#region src/middleware/tracing.d.ts
4
- declare const otelBaggageMiddleware: () => hono6.MiddlewareHandler<any, string, {}, Response>;
5
- declare const executionBaggageMiddleware: () => hono6.MiddlewareHandler<any, string, {}, Response>;
4
+ declare const otelBaggageMiddleware: () => hono12.MiddlewareHandler<any, string, {}, Response>;
5
+ declare const executionBaggageMiddleware: () => hono12.MiddlewareHandler<any, string, {}, Response>;
6
6
  //#endregion
7
7
  export { executionBaggageMiddleware, otelBaggageMiddleware };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-api",
3
- "version": "0.0.0-dev-20260122200302",
3
+ "version": "0.0.0-dev-20260122213614",
4
4
  "description": "Unified Inkeep Agents API - combines management, runtime, and evaluation capabilities",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
@@ -71,8 +71,8 @@
71
71
  "openid-client": "^6.8.1",
72
72
  "pg": "^8.16.3",
73
73
  "workflow": "4.0.1-beta.33",
74
- "@inkeep/agents-core": "^0.0.0-dev-20260122200302",
75
- "@inkeep/agents-manage-mcp": "^0.0.0-dev-20260122200302"
74
+ "@inkeep/agents-core": "^0.0.0-dev-20260122213614",
75
+ "@inkeep/agents-manage-mcp": "^0.0.0-dev-20260122213614"
76
76
  },
77
77
  "peerDependencies": {
78
78
  "@hono/zod-openapi": "^1.1.5",