@inkeep/agents-manage-api 0.0.0-dev-20250919185941 → 0.0.0-dev-20250919192523

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.cjs CHANGED
@@ -150,7 +150,7 @@ app.openapi(
150
150
  path: "/agent/:agentId",
151
151
  summary: "Get Artifact Components for Agent",
152
152
  operationId: "get-artifact-components-for-agent",
153
- tags: ["CRUD Agent Artifact Component Relations"],
153
+ tags: ["Agent Artifact Component Relations"],
154
154
  request: {
155
155
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
156
156
  agentId: zod.z.string()
@@ -186,7 +186,7 @@ app.openapi(
186
186
  path: "/component/:artifactComponentId/agents",
187
187
  summary: "Get Agents Using Artifact Component",
188
188
  operationId: "get-agents-using-artifact-component",
189
- tags: ["CRUD Agent Artifact Component Relations"],
189
+ tags: ["Agent Artifact Component Relations"],
190
190
  request: {
191
191
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
192
192
  artifactComponentId: zod.z.string()
@@ -226,7 +226,7 @@ app.openapi(
226
226
  path: "/",
227
227
  summary: "Associate Artifact Component with Agent",
228
228
  operationId: "associate-artifact-component-with-agent",
229
- tags: ["CRUD Agent Artifact Component Relations"],
229
+ tags: ["Agent Artifact Component Relations"],
230
230
  request: {
231
231
  params: agentsCore.TenantProjectGraphParamsSchema,
232
232
  body: {
@@ -303,7 +303,7 @@ app.openapi(
303
303
  path: "/agent/:agentId/component/:artifactComponentId",
304
304
  summary: "Remove Artifact Component from Agent",
305
305
  operationId: "remove-artifact-component-from-agent",
306
- tags: ["CRUD Agent Artifact Component Relations"],
306
+ tags: ["Agent Artifact Component Relations"],
307
307
  request: {
308
308
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
309
309
  agentId: zod.z.string(),
@@ -346,7 +346,7 @@ app.openapi(
346
346
  path: "/agent/:agentId/component/:artifactComponentId/exists",
347
347
  summary: "Check if Artifact Component is Associated with Agent",
348
348
  operationId: "check-artifact-component-agent-association",
349
- tags: ["CRUD Agent Artifact Component Relations"],
349
+ tags: ["Agent Artifact Component Relations"],
350
350
  request: {
351
351
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
352
352
  agentId: zod.z.string(),
@@ -382,7 +382,7 @@ app2.openapi(
382
382
  path: "/agent/:agentId",
383
383
  summary: "Get Data Components for Agent",
384
384
  operationId: "get-data-components-for-agent",
385
- tags: ["CRUD Agent Data Component Relations"],
385
+ tags: ["Agent Data Component Relations"],
386
386
  request: {
387
387
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
388
388
  agentId: zod.z.string()
@@ -416,7 +416,7 @@ app2.openapi(
416
416
  path: "/component/:dataComponentId/agents",
417
417
  summary: "Get Agents Using Data Component",
418
418
  operationId: "get-agents-using-data-component",
419
- tags: ["CRUD Agent Data Component Relations"],
419
+ tags: ["Agent Data Component Relations"],
420
420
  request: {
421
421
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
422
422
  dataComponentId: zod.z.string()
@@ -456,7 +456,7 @@ app2.openapi(
456
456
  path: "/",
457
457
  summary: "Associate Data Component with Agent",
458
458
  operationId: "associate-data-component-with-agent",
459
- tags: ["CRUD Agent Data Component Relations"],
459
+ tags: ["Agent Data Component Relations"],
460
460
  request: {
461
461
  params: agentsCore.TenantProjectGraphParamsSchema,
462
462
  body: {
@@ -529,7 +529,7 @@ app2.openapi(
529
529
  path: "/agent/:agentId/component/:dataComponentId",
530
530
  summary: "Remove Data Component from Agent",
531
531
  operationId: "remove-data-component-from-agent",
532
- tags: ["CRUD Agent Data Component Relations"],
532
+ tags: ["Agent Data Component Relations"],
533
533
  request: {
534
534
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
535
535
  agentId: zod.z.string(),
@@ -572,7 +572,7 @@ app2.openapi(
572
572
  path: "/agent/:agentId/component/:dataComponentId/exists",
573
573
  summary: "Check if Data Component is Associated with Agent",
574
574
  operationId: "check-data-component-agent-association",
575
- tags: ["CRUD Agent Data Component Relations"],
575
+ tags: ["Agent Data Component Relations"],
576
576
  request: {
577
577
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
578
578
  agentId: zod.z.string(),
@@ -608,7 +608,7 @@ app3.openapi(
608
608
  path: "/",
609
609
  summary: "List Agent Graphs",
610
610
  operationId: "list-agent-graphs",
611
- tags: ["CRUD Agent Graph"],
611
+ tags: ["Agent Graph"],
612
612
  request: {
613
613
  params: agentsCore.TenantProjectParamsSchema,
614
614
  query: agentsCore.PaginationQueryParamsSchema
@@ -647,7 +647,7 @@ app3.openapi(
647
647
  path: "/{id}",
648
648
  summary: "Get Agent Graph",
649
649
  operationId: "get-agent-graph",
650
- tags: ["CRUD Agent Graph"],
650
+ tags: ["Agent Graph"],
651
651
  request: {
652
652
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
653
653
  },
@@ -683,7 +683,7 @@ app3.openapi(
683
683
  path: "/{graphId}/agents/{agentId}/related",
684
684
  summary: "Get Related Agent Infos",
685
685
  operationId: "get-related-agent-infos",
686
- tags: ["CRUD Agent Graph"],
686
+ tags: ["Agent Graph"],
687
687
  request: {
688
688
  params: agentsCore.TenantProjectParamsSchema.extend({
689
689
  graphId: zod.z.string(),
@@ -732,7 +732,7 @@ app3.openapi(
732
732
  path: "/{graphId}/full",
733
733
  summary: "Get Full Graph Definition",
734
734
  operationId: "get-full-graph-definition",
735
- tags: ["CRUD Agent Graph"],
735
+ tags: ["Agent Graph"],
736
736
  request: {
737
737
  params: agentsCore.TenantProjectParamsSchema.extend({
738
738
  graphId: zod.z.string()
@@ -770,7 +770,7 @@ app3.openapi(
770
770
  path: "/",
771
771
  summary: "Create Agent Graph",
772
772
  operationId: "create-agent-graph",
773
- tags: ["CRUD Agent Graph"],
773
+ tags: ["Agent Graph"],
774
774
  request: {
775
775
  params: agentsCore.TenantProjectParamsSchema,
776
776
  body: {
@@ -813,7 +813,7 @@ app3.openapi(
813
813
  path: "/{id}",
814
814
  summary: "Update Agent Graph",
815
815
  operationId: "update-agent-graph",
816
- tags: ["CRUD Agent Graph"],
816
+ tags: ["Agent Graph"],
817
817
  request: {
818
818
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema),
819
819
  body: {
@@ -861,7 +861,7 @@ app3.openapi(
861
861
  path: "/{id}",
862
862
  summary: "Delete Agent Graph",
863
863
  operationId: "delete-agent-graph",
864
- tags: ["CRUD Agent Graph"],
864
+ tags: ["Agent Graph"],
865
865
  request: {
866
866
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
867
867
  },
@@ -901,7 +901,7 @@ app4.openapi(
901
901
  path: "/",
902
902
  summary: "List Agent Relations",
903
903
  operationId: "list-agent-relations",
904
- tags: ["CRUD Agent Relations"],
904
+ tags: ["Agent Relations"],
905
905
  request: {
906
906
  params: agentsCore.TenantProjectGraphParamsSchema,
907
907
  query: agentsCore.PaginationQueryParamsSchema.merge(agentsCore.AgentRelationQuerySchema)
@@ -974,7 +974,7 @@ app4.openapi(
974
974
  path: "/{id}",
975
975
  summary: "Get Agent Relation",
976
976
  operationId: "get-agent-relation-by-id",
977
- tags: ["CRUD Agent Relations"],
977
+ tags: ["Agent Relations"],
978
978
  request: {
979
979
  params: agentsCore.TenantProjectGraphIdParamsSchema
980
980
  },
@@ -1011,7 +1011,7 @@ app4.openapi(
1011
1011
  path: "/",
1012
1012
  summary: "Create Agent Relation",
1013
1013
  operationId: "create-agent-relation",
1014
- tags: ["CRUD Agent Relations"],
1014
+ tags: ["Agent Relations"],
1015
1015
  request: {
1016
1016
  params: agentsCore.TenantProjectGraphParamsSchema,
1017
1017
  body: {
@@ -1102,7 +1102,7 @@ app4.openapi(
1102
1102
  path: "/{id}",
1103
1103
  summary: "Update Agent Relation",
1104
1104
  operationId: "update-agent-relation",
1105
- tags: ["CRUD Agent Relations"],
1105
+ tags: ["Agent Relations"],
1106
1106
  request: {
1107
1107
  params: agentsCore.TenantProjectGraphIdParamsSchema,
1108
1108
  body: {
@@ -1148,7 +1148,7 @@ app4.openapi(
1148
1148
  path: "/{id}",
1149
1149
  summary: "Delete Agent Relation",
1150
1150
  operationId: "delete-agent-relation",
1151
- tags: ["CRUD Agent Relations"],
1151
+ tags: ["Agent Relations"],
1152
1152
  request: {
1153
1153
  params: agentsCore.TenantProjectGraphIdParamsSchema
1154
1154
  },
@@ -1189,7 +1189,7 @@ app5.openapi(
1189
1189
  path: "/",
1190
1190
  summary: "List Agents",
1191
1191
  operationId: "list-agents",
1192
- tags: ["CRUD Agent"],
1192
+ tags: ["Agent"],
1193
1193
  request: {
1194
1194
  params: agentsCore.TenantProjectGraphParamsSchema,
1195
1195
  query: agentsCore.PaginationQueryParamsSchema
@@ -1230,7 +1230,7 @@ app5.openapi(
1230
1230
  path: "/{id}",
1231
1231
  summary: "Get Agent",
1232
1232
  operationId: "get-agent-by-id",
1233
- tags: ["CRUD Agent"],
1233
+ tags: ["Agent"],
1234
1234
  request: {
1235
1235
  params: agentsCore.TenantProjectGraphIdParamsSchema
1236
1236
  },
@@ -1271,7 +1271,7 @@ app5.openapi(
1271
1271
  path: "/",
1272
1272
  summary: "Create Agent",
1273
1273
  operationId: "create-agent",
1274
- tags: ["CRUD Agent"],
1274
+ tags: ["Agent"],
1275
1275
  request: {
1276
1276
  params: agentsCore.TenantProjectGraphParamsSchema,
1277
1277
  body: {
@@ -1318,7 +1318,7 @@ app5.openapi(
1318
1318
  path: "/{id}",
1319
1319
  summary: "Update Agent",
1320
1320
  operationId: "update-agent",
1321
- tags: ["CRUD Agent"],
1321
+ tags: ["Agent"],
1322
1322
  request: {
1323
1323
  params: agentsCore.TenantProjectGraphIdParamsSchema,
1324
1324
  body: {
@@ -1368,7 +1368,7 @@ app5.openapi(
1368
1368
  path: "/{id}",
1369
1369
  summary: "Delete Agent",
1370
1370
  operationId: "delete-agent",
1371
- tags: ["CRUD Agent"],
1371
+ tags: ["Agent"],
1372
1372
  request: {
1373
1373
  params: agentsCore.TenantProjectGraphIdParamsSchema
1374
1374
  },
@@ -1409,7 +1409,7 @@ app6.openapi(
1409
1409
  path: "/",
1410
1410
  summary: "List Agent Tool Relations",
1411
1411
  operationId: "list-agent-tool-relations",
1412
- tags: ["CRUD Agent Tool Relations"],
1412
+ tags: ["Agent Tool Relations"],
1413
1413
  request: {
1414
1414
  params: agentsCore.TenantProjectGraphParamsSchema,
1415
1415
  query: agentsCore.PaginationQueryParamsSchema.extend({
@@ -1471,7 +1471,7 @@ app6.openapi(
1471
1471
  path: "/{id}",
1472
1472
  summary: "Get Agent Tool Relation",
1473
1473
  operationId: "get-agent-tool-relation",
1474
- tags: ["CRUD Agent Tool Relations"],
1474
+ tags: ["Agent Tool Relations"],
1475
1475
  request: {
1476
1476
  params: agentsCore.TenantProjectGraphParamsSchema.merge(agentsCore.IdParamsSchema)
1477
1477
  },
@@ -1508,7 +1508,7 @@ app6.openapi(
1508
1508
  path: "/agent/{agentId}/tools",
1509
1509
  summary: "Get Tools for Agent",
1510
1510
  operationId: "get-tools-for-agent",
1511
- tags: ["CRUD Agent Tool Relations"],
1511
+ tags: ["Agent Tool Relations"],
1512
1512
  request: {
1513
1513
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
1514
1514
  agentId: zod.z.string()
@@ -1547,7 +1547,7 @@ app6.openapi(
1547
1547
  path: "/tool/{toolId}/agents",
1548
1548
  summary: "Get Agents for Tool",
1549
1549
  operationId: "get-agents-for-tool",
1550
- tags: ["CRUD Agent Tool Relations"],
1550
+ tags: ["Agent Tool Relations"],
1551
1551
  request: {
1552
1552
  params: agentsCore.TenantProjectGraphParamsSchema.extend({
1553
1553
  toolId: zod.z.string()
@@ -1583,7 +1583,7 @@ app6.openapi(
1583
1583
  path: "/",
1584
1584
  summary: "Create Agent Tool Relation",
1585
1585
  operationId: "create-agent-tool-relation",
1586
- tags: ["CRUD Agent Tool Relations"],
1586
+ tags: ["Agent Tool Relations"],
1587
1587
  request: {
1588
1588
  params: agentsCore.TenantProjectGraphParamsSchema,
1589
1589
  body: {
@@ -1646,7 +1646,7 @@ app6.openapi(
1646
1646
  path: "/{id}",
1647
1647
  summary: "Update Agent Tool Relation",
1648
1648
  operationId: "update-agent-tool-relation",
1649
- tags: ["CRUD Agent Tool Relations"],
1649
+ tags: ["Agent Tool Relations"],
1650
1650
  request: {
1651
1651
  params: agentsCore.TenantProjectGraphParamsSchema.merge(agentsCore.IdParamsSchema),
1652
1652
  body: {
@@ -1699,7 +1699,7 @@ app6.openapi(
1699
1699
  path: "/{id}",
1700
1700
  summary: "Delete Agent Tool Relation",
1701
1701
  operationId: "delete-agent-tool-relation",
1702
- tags: ["CRUD Agent Tool Relations"],
1702
+ tags: ["Agent Tool Relations"],
1703
1703
  request: {
1704
1704
  params: agentsCore.TenantProjectGraphParamsSchema.merge(agentsCore.IdParamsSchema)
1705
1705
  },
@@ -1741,7 +1741,7 @@ app7.openapi(
1741
1741
  summary: "List API Keys",
1742
1742
  description: "List all API keys for a tenant with optional pagination",
1743
1743
  operationId: "list-api-keys",
1744
- tags: ["CRUD API Keys"],
1744
+ tags: ["API Keys"],
1745
1745
  request: {
1746
1746
  params: agentsCore.TenantProjectParamsSchema,
1747
1747
  query: agentsCore.PaginationQueryParamsSchema.extend({
@@ -1784,7 +1784,7 @@ app7.openapi(
1784
1784
  summary: "Get API Key",
1785
1785
  description: "Get a specific API key by ID (does not return the actual key)",
1786
1786
  operationId: "get-api-key-by-id",
1787
- tags: ["CRUD API Keys"],
1787
+ tags: ["API Keys"],
1788
1788
  request: {
1789
1789
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
1790
1790
  },
@@ -1829,7 +1829,7 @@ app7.openapi(
1829
1829
  summary: "Create API Key",
1830
1830
  description: "Create a new API key for a graph. Returns the full key (shown only once).",
1831
1831
  operationId: "create-api-key",
1832
- tags: ["CRUD API Keys"],
1832
+ tags: ["API Keys"],
1833
1833
  request: {
1834
1834
  params: agentsCore.TenantProjectParamsSchema,
1835
1835
  body: {
@@ -1898,7 +1898,7 @@ app7.openapi(
1898
1898
  summary: "Update API Key",
1899
1899
  description: "Update an API key (currently only expiration date can be changed)",
1900
1900
  operationId: "update-api-key",
1901
- tags: ["CRUD API Keys"],
1901
+ tags: ["API Keys"],
1902
1902
  request: {
1903
1903
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema),
1904
1904
  body: {
@@ -1954,7 +1954,7 @@ app7.openapi(
1954
1954
  summary: "Delete API Key",
1955
1955
  description: "Delete an API key permanently",
1956
1956
  operationId: "delete-api-key",
1957
- tags: ["CRUD API Keys"],
1957
+ tags: ["API Keys"],
1958
1958
  request: {
1959
1959
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
1960
1960
  },
@@ -1995,7 +1995,7 @@ app8.openapi(
1995
1995
  path: "/",
1996
1996
  summary: "List Artifact Components",
1997
1997
  operationId: "list-artifact-components",
1998
- tags: ["CRUD Artifact Component"],
1998
+ tags: ["Artifact Component"],
1999
1999
  request: {
2000
2000
  params: agentsCore.TenantProjectParamsSchema,
2001
2001
  query: agentsCore.PaginationQueryParamsSchema
@@ -2029,7 +2029,7 @@ app8.openapi(
2029
2029
  path: "/{id}",
2030
2030
  summary: "Get Artifact Component",
2031
2031
  operationId: "get-artifact-component-by-id",
2032
- tags: ["CRUD Artifact Component"],
2032
+ tags: ["Artifact Component"],
2033
2033
  request: {
2034
2034
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2035
2035
  },
@@ -2066,7 +2066,7 @@ app8.openapi(
2066
2066
  path: "/",
2067
2067
  summary: "Create Artifact Component",
2068
2068
  operationId: "create-artifact-component",
2069
- tags: ["CRUD Artifact Component"],
2069
+ tags: ["Artifact Component"],
2070
2070
  request: {
2071
2071
  params: agentsCore.TenantProjectParamsSchema,
2072
2072
  body: {
@@ -2124,7 +2124,7 @@ app8.openapi(
2124
2124
  path: "/{id}",
2125
2125
  summary: "Update Artifact Component",
2126
2126
  operationId: "update-artifact-component",
2127
- tags: ["CRUD Artifact Component"],
2127
+ tags: ["Artifact Component"],
2128
2128
  request: {
2129
2129
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema),
2130
2130
  body: {
@@ -2175,7 +2175,7 @@ app8.openapi(
2175
2175
  path: "/{id}",
2176
2176
  summary: "Delete Artifact Component",
2177
2177
  operationId: "delete-artifact-component",
2178
- tags: ["CRUD Artifact Component"],
2178
+ tags: ["Artifact Component"],
2179
2179
  request: {
2180
2180
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2181
2181
  },
@@ -2216,7 +2216,7 @@ app9.openapi(
2216
2216
  path: "/",
2217
2217
  summary: "List Context Configurations",
2218
2218
  operationId: "list-context-configs",
2219
- tags: ["CRUD Context Config"],
2219
+ tags: ["Context Config"],
2220
2220
  request: {
2221
2221
  params: agentsCore.TenantProjectParamsSchema,
2222
2222
  query: agentsCore.PaginationQueryParamsSchema
@@ -2250,7 +2250,7 @@ app9.openapi(
2250
2250
  path: "/{id}",
2251
2251
  summary: "Get Context Configuration",
2252
2252
  operationId: "get-context-config-by-id",
2253
- tags: ["CRUD Context Config"],
2253
+ tags: ["Context Config"],
2254
2254
  request: {
2255
2255
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2256
2256
  },
@@ -2287,7 +2287,7 @@ app9.openapi(
2287
2287
  path: "/",
2288
2288
  summary: "Create Context Configuration",
2289
2289
  operationId: "create-context-config",
2290
- tags: ["CRUD Context Config"],
2290
+ tags: ["Context Config"],
2291
2291
  request: {
2292
2292
  params: agentsCore.TenantProjectParamsSchema,
2293
2293
  body: {
@@ -2328,7 +2328,7 @@ app9.openapi(
2328
2328
  path: "/{id}",
2329
2329
  summary: "Update Context Configuration",
2330
2330
  operationId: "update-context-config",
2331
- tags: ["CRUD Context Config"],
2331
+ tags: ["Context Config"],
2332
2332
  request: {
2333
2333
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema),
2334
2334
  body: {
@@ -2374,7 +2374,7 @@ app9.openapi(
2374
2374
  path: "/{id}",
2375
2375
  summary: "Delete Context Configuration",
2376
2376
  operationId: "delete-context-config",
2377
- tags: ["CRUD Context Config"],
2377
+ tags: ["Context Config"],
2378
2378
  request: {
2379
2379
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2380
2380
  },
@@ -2408,7 +2408,7 @@ app10.openapi(
2408
2408
  path: "/",
2409
2409
  summary: "List Credentials",
2410
2410
  operationId: "list-credentials",
2411
- tags: ["CRUD Credential"],
2411
+ tags: ["Credential"],
2412
2412
  request: {
2413
2413
  params: agentsCore.TenantProjectParamsSchema,
2414
2414
  query: agentsCore.PaginationQueryParamsSchema
@@ -2443,7 +2443,7 @@ app10.openapi(
2443
2443
  path: "/{id}",
2444
2444
  summary: "Get Credential",
2445
2445
  operationId: "get-credential-by-id",
2446
- tags: ["CRUD Credential"],
2446
+ tags: ["Credential"],
2447
2447
  request: {
2448
2448
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2449
2449
  },
@@ -2481,7 +2481,7 @@ app10.openapi(
2481
2481
  path: "/",
2482
2482
  summary: "Create Credential",
2483
2483
  operationId: "create-credential",
2484
- tags: ["CRUD Credential"],
2484
+ tags: ["Credential"],
2485
2485
  request: {
2486
2486
  params: agentsCore.TenantProjectParamsSchema,
2487
2487
  body: {
@@ -2523,7 +2523,7 @@ app10.openapi(
2523
2523
  path: "/{id}",
2524
2524
  summary: "Update Credential",
2525
2525
  operationId: "update-credential",
2526
- tags: ["CRUD Credential"],
2526
+ tags: ["Credential"],
2527
2527
  request: {
2528
2528
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema),
2529
2529
  body: {
@@ -2570,7 +2570,7 @@ app10.openapi(
2570
2570
  path: "/{id}",
2571
2571
  summary: "Delete Credential",
2572
2572
  operationId: "delete-credential",
2573
- tags: ["CRUD Credential"],
2573
+ tags: ["Credential"],
2574
2574
  request: {
2575
2575
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2576
2576
  },
@@ -2643,7 +2643,7 @@ app11.openapi(
2643
2643
  path: "/",
2644
2644
  summary: "List Data Components",
2645
2645
  operationId: "list-data-components",
2646
- tags: ["CRUD Data Component"],
2646
+ tags: ["Data Component"],
2647
2647
  request: {
2648
2648
  params: agentsCore.TenantProjectParamsSchema,
2649
2649
  query: agentsCore.PaginationQueryParamsSchema
@@ -2677,7 +2677,7 @@ app11.openapi(
2677
2677
  path: "/{id}",
2678
2678
  summary: "Get Data Component",
2679
2679
  operationId: "get-data-component-by-id",
2680
- tags: ["CRUD Data Component"],
2680
+ tags: ["Data Component"],
2681
2681
  request: {
2682
2682
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2683
2683
  },
@@ -2714,7 +2714,7 @@ app11.openapi(
2714
2714
  path: "/",
2715
2715
  summary: "Create Data Component",
2716
2716
  operationId: "create-data-component",
2717
- tags: ["CRUD Data Component"],
2717
+ tags: ["Data Component"],
2718
2718
  request: {
2719
2719
  params: agentsCore.TenantProjectParamsSchema,
2720
2720
  body: {
@@ -2755,7 +2755,7 @@ app11.openapi(
2755
2755
  path: "/{id}",
2756
2756
  summary: "Update Data Component",
2757
2757
  operationId: "update-data-component",
2758
- tags: ["CRUD Data Component"],
2758
+ tags: ["Data Component"],
2759
2759
  request: {
2760
2760
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema),
2761
2761
  body: {
@@ -2801,7 +2801,7 @@ app11.openapi(
2801
2801
  path: "/{id}",
2802
2802
  summary: "Delete Data Component",
2803
2803
  operationId: "delete-data-component",
2804
- tags: ["CRUD Data Component"],
2804
+ tags: ["Data Component"],
2805
2805
  request: {
2806
2806
  params: agentsCore.TenantProjectParamsSchema.merge(agentsCore.IdParamsSchema)
2807
2807
  },
@@ -2842,7 +2842,7 @@ app12.openapi(
2842
2842
  path: "/",
2843
2843
  summary: "List External Agents",
2844
2844
  operationId: "list-external-agents",
2845
- tags: ["CRUD External Agents"],
2845
+ tags: ["External Agents"],
2846
2846
  request: {
2847
2847
  params: agentsCore.TenantProjectGraphParamsSchema,
2848
2848
  query: agentsCore.PaginationQueryParamsSchema
@@ -2882,7 +2882,7 @@ app12.openapi(
2882
2882
  path: "/{id}",
2883
2883
  summary: "Get External Agent",
2884
2884
  operationId: "get-external-agent-by-id",
2885
- tags: ["CRUD External Agents"],
2885
+ tags: ["External Agents"],
2886
2886
  request: {
2887
2887
  params: agentsCore.TenantProjectGraphIdParamsSchema
2888
2888
  },
@@ -2923,7 +2923,7 @@ app12.openapi(
2923
2923
  path: "/",
2924
2924
  summary: "Create External Agent",
2925
2925
  operationId: "create-external-agent",
2926
- tags: ["CRUD External Agents"],
2926
+ tags: ["External Agents"],
2927
2927
  request: {
2928
2928
  params: agentsCore.TenantProjectGraphParamsSchema,
2929
2929
  body: {
@@ -2974,7 +2974,7 @@ app12.openapi(
2974
2974
  path: "/{id}",
2975
2975
  summary: "Update External Agent",
2976
2976
  operationId: "update-external-agent",
2977
- tags: ["CRUD External Agents"],
2977
+ tags: ["External Agents"],
2978
2978
  request: {
2979
2979
  params: agentsCore.TenantProjectGraphIdParamsSchema,
2980
2980
  body: {
@@ -3024,7 +3024,7 @@ app12.openapi(
3024
3024
  path: "/{id}",
3025
3025
  summary: "Delete External Agent",
3026
3026
  operationId: "delete-external-agent",
3027
- tags: ["CRUD External Agents"],
3027
+ tags: ["External Agents"],
3028
3028
  request: {
3029
3029
  params: agentsCore.TenantProjectGraphIdParamsSchema
3030
3030
  },
@@ -3080,7 +3080,7 @@ app13.openapi(
3080
3080
  path: "/",
3081
3081
  summary: "Create Full Graph",
3082
3082
  operationId: "create-full-graph",
3083
- tags: ["CRUD Full Graph"],
3083
+ tags: ["Full Graph"],
3084
3084
  description: "Create a complete agent graph with all agents, tools, and relationships from JSON definition",
3085
3085
  request: {
3086
3086
  params: agentsCore.TenantProjectParamsSchema,
@@ -3129,7 +3129,7 @@ app13.openapi(
3129
3129
  path: "/{graphId}",
3130
3130
  summary: "Get Full Graph",
3131
3131
  operationId: "get-full-graph",
3132
- tags: ["CRUD Full Graph"],
3132
+ tags: ["Full Graph"],
3133
3133
  description: "Retrieve a complete agent graph definition with all agents, tools, and relationships",
3134
3134
  request: {
3135
3135
  params: GraphIdParamsSchema
@@ -3182,7 +3182,7 @@ app13.openapi(
3182
3182
  path: "/{graphId}",
3183
3183
  summary: "Update Full Graph",
3184
3184
  operationId: "update-full-graph",
3185
- tags: ["CRUD Full Graph"],
3185
+ tags: ["Full Graph"],
3186
3186
  description: "Update or create a complete agent graph with all agents, tools, and relationships from JSON definition",
3187
3187
  request: {
3188
3188
  params: GraphIdParamsSchema,
@@ -3266,7 +3266,7 @@ app13.openapi(
3266
3266
  path: "/{graphId}",
3267
3267
  summary: "Delete Full Graph",
3268
3268
  operationId: "delete-full-graph",
3269
- tags: ["CRUD Full Graph"],
3269
+ tags: ["Full Graph"],
3270
3270
  description: "Delete a complete agent graph and cascade to all related entities (relationships, not agents/tools)",
3271
3271
  request: {
3272
3272
  params: GraphIdParamsSchema
@@ -4111,7 +4111,7 @@ app15.openapi(
4111
4111
  path: "/",
4112
4112
  summary: "List Tools",
4113
4113
  operationId: "list-tools",
4114
- tags: ["CRUD Tools"],
4114
+ tags: ["Tools"],
4115
4115
  request: {
4116
4116
  params: agentsCore.TenantProjectParamsSchema,
4117
4117
  query: agentsCore.PaginationQueryParamsSchema.extend({
@@ -4164,7 +4164,7 @@ app15.openapi(
4164
4164
  path: "/{id}",
4165
4165
  summary: "Get Tool",
4166
4166
  operationId: "get-tool",
4167
- tags: ["CRUD Tools"],
4167
+ tags: ["Tools"],
4168
4168
  request: {
4169
4169
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape)
4170
4170
  },
@@ -4200,7 +4200,7 @@ app15.openapi(
4200
4200
  path: "/",
4201
4201
  summary: "Create Tool",
4202
4202
  operationId: "create-tool",
4203
- tags: ["CRUD Tools"],
4203
+ tags: ["Tools"],
4204
4204
  request: {
4205
4205
  params: agentsCore.TenantProjectParamsSchema,
4206
4206
  body: {
@@ -4252,7 +4252,7 @@ app15.openapi(
4252
4252
  path: "/{id}",
4253
4253
  summary: "Update Tool",
4254
4254
  operationId: "update-tool",
4255
- tags: ["CRUD Tools"],
4255
+ tags: ["Tools"],
4256
4256
  request: {
4257
4257
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape),
4258
4258
  body: {
@@ -4312,7 +4312,7 @@ app15.openapi(
4312
4312
  path: "/{id}",
4313
4313
  summary: "Delete Tool",
4314
4314
  operationId: "delete-tool",
4315
- tags: ["CRUD Tools"],
4315
+ tags: ["Tools"],
4316
4316
  request: {
4317
4317
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape)
4318
4318
  },
@@ -4348,7 +4348,7 @@ app15.openapi(
4348
4348
  path: "/{id}/health-check",
4349
4349
  summary: "Check Tool Health",
4350
4350
  operationId: "check-tool-health",
4351
- tags: ["CRUD Tools"],
4351
+ tags: ["Tools"],
4352
4352
  request: {
4353
4353
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape)
4354
4354
  },
@@ -4404,7 +4404,7 @@ app15.openapi(
4404
4404
  path: "/health-check-all",
4405
4405
  summary: "Check All Tools Health",
4406
4406
  operationId: "check-all-tools-health",
4407
- tags: ["CRUD Tools"],
4407
+ tags: ["Tools"],
4408
4408
  request: {
4409
4409
  params: agentsCore.TenantProjectParamsSchema
4410
4410
  },
@@ -4468,7 +4468,7 @@ app15.openapi(
4468
4468
  path: "/{id}/sync",
4469
4469
  summary: "Sync Tool Definitions",
4470
4470
  operationId: "sync-tool-definitions",
4471
- tags: ["CRUD Tools"],
4471
+ tags: ["Tools"],
4472
4472
  request: {
4473
4473
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape)
4474
4474
  },
@@ -4512,7 +4512,7 @@ app15.openapi(
4512
4512
  path: "/{id}/available-tools",
4513
4513
  summary: "Get Available Tools",
4514
4514
  operationId: "get-available-tools",
4515
- tags: ["CRUD Tools"],
4515
+ tags: ["Tools"],
4516
4516
  request: {
4517
4517
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape)
4518
4518
  },
@@ -4564,7 +4564,7 @@ app15.openapi(
4564
4564
  path: "/{id}/status",
4565
4565
  summary: "Update Tool Status",
4566
4566
  operationId: "update-tool-status",
4567
- tags: ["CRUD Tools"],
4567
+ tags: ["Tools"],
4568
4568
  request: {
4569
4569
  params: agentsCore.TenantProjectParamsSchema.extend(agentsCore.IdParamsSchema.shape),
4570
4570
  body: {
@@ -4894,7 +4894,7 @@ app18.openapi(
4894
4894
  path: "/project-full",
4895
4895
  summary: "Create Full Project",
4896
4896
  operationId: "create-full-project",
4897
- tags: ["CRUD Full Project"],
4897
+ tags: ["Full Project"],
4898
4898
  description: "Create a complete project with all graphs, agents, tools, and relationships from JSON definition",
4899
4899
  request: {
4900
4900
  params: TenantParamsSchema2,
@@ -4953,7 +4953,7 @@ app18.openapi(
4953
4953
  path: "/project-full/{projectId}",
4954
4954
  summary: "Get Full Project",
4955
4955
  operationId: "get-full-project",
4956
- tags: ["CRUD Full Project"],
4956
+ tags: ["Full Project"],
4957
4957
  description: "Retrieve a complete project definition with all graphs, agents, tools, and relationships",
4958
4958
  request: {
4959
4959
  params: ProjectIdParamsSchema
@@ -5006,7 +5006,7 @@ app18.openapi(
5006
5006
  path: "/project-full/{projectId}",
5007
5007
  summary: "Update Full Project",
5008
5008
  operationId: "update-full-project",
5009
- tags: ["CRUD Full Project"],
5009
+ tags: ["Full Project"],
5010
5010
  description: "Update or create a complete project with all graphs, agents, tools, and relationships from JSON definition",
5011
5011
  request: {
5012
5012
  params: ProjectIdParamsSchema,
@@ -5090,7 +5090,7 @@ app18.openapi(
5090
5090
  path: "/project-full/{projectId}",
5091
5091
  summary: "Delete Full Project",
5092
5092
  operationId: "delete-full-project",
5093
- tags: ["CRUD Full Project"],
5093
+ tags: ["Full Project"],
5094
5094
  description: "Delete a complete project and cascade to all related entities (graphs, agents, tools, relationships)",
5095
5095
  request: {
5096
5096
  params: ProjectIdParamsSchema
@@ -5263,7 +5263,7 @@ function createManagementHono(serverConfig, credentialStores) {
5263
5263
  }
5264
5264
  );
5265
5265
  app20.use("/tenants/*", apiKeyAuth());
5266
- app20.route("/tenants/:tenantId/crud", routes_default);
5266
+ app20.route("/tenants/:tenantId", routes_default);
5267
5267
  app20.route("/tenants/:tenantId", projectFull_default);
5268
5268
  app20.route("/oauth", oauth_default);
5269
5269
  setupOpenAPIRoutes(app20);