@inkeep/agents-manage-api 0.0.0-dev-20251114192858 → 0.0.0-dev-20251114212822
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 +95 -1
- package/dist/index.js +95 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -84,6 +84,100 @@ function setupOpenAPIRoutes(app25) {
|
|
|
84
84
|
url: serverUrl,
|
|
85
85
|
description: "API Server"
|
|
86
86
|
}
|
|
87
|
+
],
|
|
88
|
+
tags: [
|
|
89
|
+
{
|
|
90
|
+
name: "Agent",
|
|
91
|
+
description: "Operations for managing individual agents"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: "Agent Artifact Component Relations",
|
|
95
|
+
description: "Operations for managing agent artifact component relationships"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "Agent Data Component Relations",
|
|
99
|
+
description: "Operations for managing agent data component relationships"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: "Agents",
|
|
103
|
+
description: "Operations for managing agents"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
name: "API Keys",
|
|
107
|
+
description: "Operations for managing API keys"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: "Artifact Component",
|
|
111
|
+
description: "Operations for managing artifact components"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
name: "Context Config",
|
|
115
|
+
description: "Operations for managing context configurations"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
name: "Credential",
|
|
119
|
+
description: "Operations for managing credentials"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
name: "Credential Store",
|
|
123
|
+
description: "Operations for managing credential stores"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
name: "Data Component",
|
|
127
|
+
description: "Operations for managing data components"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
name: "External Agents",
|
|
131
|
+
description: "Operations for managing external agents"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: "Full Agent",
|
|
135
|
+
description: "Operations for managing complete agent definitions"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
name: "Full Project",
|
|
139
|
+
description: "Operations for managing complete project definitions"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "Function Tools",
|
|
143
|
+
description: "Operations for managing function tools"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
name: "Functions",
|
|
147
|
+
description: "Operations for managing functions"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
name: "OAuth",
|
|
151
|
+
description: "OAuth authentication endpoints for MCP tools"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
name: "Projects",
|
|
155
|
+
description: "Operations for managing projects"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "Sub Agent External Agent Relations",
|
|
159
|
+
description: "Operations for managing sub agent external agent relationships"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: "Sub Agent Relations",
|
|
163
|
+
description: "Operations for managing sub agent relationships"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: "Sub Agent Team Agent Relations",
|
|
167
|
+
description: "Operations for managing sub agent team agent relationships"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: "SubAgent",
|
|
171
|
+
description: "Operations for managing sub agents"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
name: "SubAgent Tool Relations",
|
|
175
|
+
description: "Operations for managing sub agent tool relationships"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
name: "Tools",
|
|
179
|
+
description: "Operations for managing MCP tools"
|
|
180
|
+
}
|
|
87
181
|
]
|
|
88
182
|
});
|
|
89
183
|
return c.json(document);
|
|
@@ -5568,7 +5662,7 @@ function createManagementHono(serverConfig, credentialStores) {
|
|
|
5568
5662
|
zodOpenapi.createRoute({
|
|
5569
5663
|
method: "get",
|
|
5570
5664
|
path: "/health",
|
|
5571
|
-
|
|
5665
|
+
operationId: "health",
|
|
5572
5666
|
summary: "Health check",
|
|
5573
5667
|
description: "Check if the management service is healthy",
|
|
5574
5668
|
responses: {
|
package/dist/index.js
CHANGED
|
@@ -80,6 +80,100 @@ function setupOpenAPIRoutes(app25) {
|
|
|
80
80
|
url: serverUrl,
|
|
81
81
|
description: "API Server"
|
|
82
82
|
}
|
|
83
|
+
],
|
|
84
|
+
tags: [
|
|
85
|
+
{
|
|
86
|
+
name: "Agent",
|
|
87
|
+
description: "Operations for managing individual agents"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
name: "Agent Artifact Component Relations",
|
|
91
|
+
description: "Operations for managing agent artifact component relationships"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: "Agent Data Component Relations",
|
|
95
|
+
description: "Operations for managing agent data component relationships"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "Agents",
|
|
99
|
+
description: "Operations for managing agents"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: "API Keys",
|
|
103
|
+
description: "Operations for managing API keys"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
name: "Artifact Component",
|
|
107
|
+
description: "Operations for managing artifact components"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: "Context Config",
|
|
111
|
+
description: "Operations for managing context configurations"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
name: "Credential",
|
|
115
|
+
description: "Operations for managing credentials"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
name: "Credential Store",
|
|
119
|
+
description: "Operations for managing credential stores"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
name: "Data Component",
|
|
123
|
+
description: "Operations for managing data components"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
name: "External Agents",
|
|
127
|
+
description: "Operations for managing external agents"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
name: "Full Agent",
|
|
131
|
+
description: "Operations for managing complete agent definitions"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: "Full Project",
|
|
135
|
+
description: "Operations for managing complete project definitions"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
name: "Function Tools",
|
|
139
|
+
description: "Operations for managing function tools"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "Functions",
|
|
143
|
+
description: "Operations for managing functions"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
name: "OAuth",
|
|
147
|
+
description: "OAuth authentication endpoints for MCP tools"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
name: "Projects",
|
|
151
|
+
description: "Operations for managing projects"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
name: "Sub Agent External Agent Relations",
|
|
155
|
+
description: "Operations for managing sub agent external agent relationships"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "Sub Agent Relations",
|
|
159
|
+
description: "Operations for managing sub agent relationships"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: "Sub Agent Team Agent Relations",
|
|
163
|
+
description: "Operations for managing sub agent team agent relationships"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: "SubAgent",
|
|
167
|
+
description: "Operations for managing sub agents"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: "SubAgent Tool Relations",
|
|
171
|
+
description: "Operations for managing sub agent tool relationships"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
name: "Tools",
|
|
175
|
+
description: "Operations for managing MCP tools"
|
|
176
|
+
}
|
|
83
177
|
]
|
|
84
178
|
});
|
|
85
179
|
return c.json(document);
|
|
@@ -5564,7 +5658,7 @@ function createManagementHono(serverConfig, credentialStores) {
|
|
|
5564
5658
|
createRoute({
|
|
5565
5659
|
method: "get",
|
|
5566
5660
|
path: "/health",
|
|
5567
|
-
|
|
5661
|
+
operationId: "health",
|
|
5568
5662
|
summary: "Health check",
|
|
5569
5663
|
description: "Check if the management service is healthy",
|
|
5570
5664
|
responses: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-manage-api",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20251114212822",
|
|
4
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",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"openid-client": "^6.6.4",
|
|
24
24
|
"pino": "^9.7.0",
|
|
25
25
|
"zod": "^4.1.11",
|
|
26
|
-
"@inkeep/agents-core": "^0.0.0-dev-
|
|
26
|
+
"@inkeep/agents-core": "^0.0.0-dev-20251114212822"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
29
|
"keytar": "^7.9.0"
|