@inkeep/agents-manage-api 0.0.0-dev-20250912012833 → 0.0.0-dev-20250912142126

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Inkeep Management API
1
+ # Inkeep Agents Manage API
2
2
 
3
- The Management API is responsible for entity management and CRUD operations for the Inkeep Agent Framework. It provides the administrative layer for creating, configuring, and managing agents, graphs, tools, and projects.
3
+ The Agents Manage API is responsible for entity management and CRUD operations for the Inkeep Agent Framework. It provides the administrative layer for creating, configuring, and managing agents, graphs, tools, and projects.
4
4
 
5
5
  ## Overview
6
6
 
@@ -145,14 +145,14 @@ const createAgentSchema = z.object({
145
145
 
146
146
  ## Integration
147
147
 
148
- ### With Execution API
149
- The Management API provides the configuration that the Execution API reads during runtime. Changes to agents, graphs, or tools are immediately available to the execution layer.
148
+ ### With Agents Run API
149
+ The Agents Manage API provides the configuration that the Agents Run API reads during runtime. Changes to agents, graphs, or tools are immediately available to the execution layer.
150
150
 
151
- ### With CLI
152
- The Inkeep CLI uses the Management API for all `push` operations, creating and updating entities from configuration files.
151
+ ### With Agents CLI
152
+ The Agents CLI uses the Agents Manage API for all `push` operations, creating and updating entities from configuration files.
153
153
 
154
- ### With Agent Builder
155
- The Agent Builder UI provides a web interface for all Management API operations, offering visual agent and graph creation.
154
+ ### With Agents Manage UI
155
+ The Agents Manage UI provides a web interface for all Agents Manage API operations, offering visual agent and graph creation.
156
156
 
157
157
  ## Error Handling
158
158
 
@@ -173,4 +173,4 @@ The Agent Builder UI provides a web interface for all Management API operations,
173
173
  - **Database Indexing**: Optimized indexes on frequently queried fields
174
174
  - **Connection Pooling**: Efficient database connection management
175
175
  - **Caching**: In-memory caching for frequently accessed entities
176
- - **Parallel Operations**: Concurrent database operations where safe
176
+ - **Parallel Operations**: Concurrent database operations where safe
package/dist/index.cjs CHANGED
@@ -156,9 +156,9 @@ function setupOpenAPIRoutes(app19) {
156
156
  const document = app19.getOpenAPIDocument({
157
157
  openapi: "3.0.0",
158
158
  info: {
159
- title: "Inkeep Agent Framework Management API",
159
+ title: "Inkeep Agents Manage API",
160
160
  version: "1.0.0",
161
- description: "Complete REST API for Inkeep Agent Framework Management application including chat completions, A2A agent communication, and comprehensive CRUD operations for all entities"
161
+ description: "REST API for the management of the Inkeep Agent Framework."
162
162
  },
163
163
  servers: [
164
164
  {
@@ -178,7 +178,7 @@ function setupOpenAPIRoutes(app19) {
178
178
  "/docs",
179
179
  swaggerUi.swaggerUI({
180
180
  url: "/openapi.json",
181
- title: "InkeepAgent Framework Management API Documentation"
181
+ title: "Inkeep Agents Manage API Documentation"
182
182
  })
183
183
  );
184
184
  }
package/dist/index.js CHANGED
@@ -128,9 +128,9 @@ function setupOpenAPIRoutes(app19) {
128
128
  const document = app19.getOpenAPIDocument({
129
129
  openapi: "3.0.0",
130
130
  info: {
131
- title: "Inkeep Agent Framework Management API",
131
+ title: "Inkeep Agents Manage API",
132
132
  version: "1.0.0",
133
- description: "Complete REST API for Inkeep Agent Framework Management application including chat completions, A2A agent communication, and comprehensive CRUD operations for all entities"
133
+ description: "REST API for the management of the Inkeep Agent Framework."
134
134
  },
135
135
  servers: [
136
136
  {
@@ -150,7 +150,7 @@ function setupOpenAPIRoutes(app19) {
150
150
  "/docs",
151
151
  swaggerUI({
152
152
  url: "/openapi.json",
153
- title: "InkeepAgent Framework Management API Documentation"
153
+ title: "Inkeep Agents Manage API Documentation"
154
154
  })
155
155
  );
156
156
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@inkeep/agents-manage-api",
3
- "version": "0.0.0-dev-20250912012833",
4
- "description": "Management API for Inkeep Agent Framework - handles CRUD operations and OAuth",
3
+ "version": "0.0.0-dev-20250912142126",
4
+ "description": "Agents Manage API for Inkeep Agent Framework - handles CRUD operations and OAuth",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "SEE LICENSE IN LICENSE.md",
@@ -24,7 +24,7 @@
24
24
  "openid-client": "^6.6.4",
25
25
  "pino": "^9.7.0",
26
26
  "zod": "^4.1.5",
27
- "@inkeep/agents-core": "^0.0.0-dev-20250912012833"
27
+ "@inkeep/agents-core": "^0.0.0-dev-20250912142126"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@hono/vite-dev-server": "^0.20.1",