-
Notifications
You must be signed in to change notification settings - Fork 711
Expand file tree
/
Copy pathskill-package.controller.ts
More file actions
431 lines (382 loc) · 13 KB
/
skill-package.controller.ts
File metadata and controls
431 lines (382 loc) · 13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/**
* Skill Package Controller - REST API endpoints.
*/
import {
Controller,
Get,
Post,
Patch,
Delete,
Body,
Param,
Query,
UseGuards,
Req,
NotFoundException,
HttpStatus,
Logger,
} from '@nestjs/common';
import { ApiTags, ApiOperation, ApiResponse, ApiBearerAuth } from '@nestjs/swagger';
import { JwtAuthGuard } from '../auth/guard/jwt-auth.guard';
import { SkillPackageService } from './skill-package.service';
import { SkillInstallationService } from './skill-installation.service';
import {
CreateSkillPackageDto,
UpdateSkillPackageDto,
SkillPackageFilterDto,
SearchSkillsDto,
AddWorkflowDto,
UpdateDependenciesDto,
DownloadSkillDto,
InstallSkillDto,
InstallationFilterDto,
UninstallOptionsDto,
UpdateInstallationDto,
RunSkillDto,
PaginatedResult,
SkillPackageResponse,
SkillWorkflowResponse,
SkillInstallationResponse,
SkillExecutionResult,
CreateSkillPackageCliDto,
CreateSkillPackageCliResponse,
PublishSkillDto,
} from './skill-package.dto';
import { SKILL_CLI_ERROR_CODES, throwCliError, mapErrorToCliCode } from './skill-package.errors';
@Controller('v1/skill-packages')
@UseGuards(JwtAuthGuard)
export class SkillPackageController {
constructor(
private readonly skillPackageService: SkillPackageService,
private readonly skillInstallationService: SkillInstallationService,
) {}
// ===== Package CRUD =====
@Post()
async createSkillPackage(
@Req() req: any,
@Body() input: CreateSkillPackageDto,
): Promise<SkillPackageResponse> {
return this.skillPackageService.createSkillPackage(req.user, input);
}
@Get()
async listSkillPackages(
@Req() req: any,
@Query() filter: SkillPackageFilterDto,
): Promise<PaginatedResult<SkillPackageResponse>> {
return this.skillPackageService.listSkillPackages(req.user, filter);
}
@Get(':skillId')
async getSkillPackage(
@Req() req: any,
@Param('skillId') skillId: string,
@Query('includeWorkflows') includeWorkflows?: string,
@Query('shareId') shareId?: string,
): Promise<SkillPackageResponse> {
const result = await this.skillPackageService.getSkillPackage(skillId, {
includeWorkflows: includeWorkflows === 'true',
userId: req.user?.uid,
shareId,
});
if (!result) {
throw new NotFoundException(`Skill package not found: ${skillId}`);
}
return result;
}
@Patch(':skillId')
async updateSkillPackage(
@Req() req: any,
@Param('skillId') skillId: string,
@Body() input: UpdateSkillPackageDto,
): Promise<SkillPackageResponse> {
return this.skillPackageService.updateSkillPackage(req.user, skillId, input);
}
// DELETE endpoint removed - use uninstall instead
// @Delete(':skillId')
// async deleteSkillPackage(@Req() req: any, @Param('skillId') skillId: string): Promise<void> {
// return this.skillPackageService.deleteSkillPackage(req.user, skillId);
// }
// ===== Workflow Management =====
@Post(':skillId/workflows')
async addWorkflow(
@Req() req: any,
@Param('skillId') skillId: string,
@Body() input: AddWorkflowDto,
): Promise<SkillWorkflowResponse> {
return this.skillPackageService.addWorkflowToSkill(req.user, skillId, input);
}
@Patch(':skillId/workflows/:skillWorkflowId/dependencies')
async updateDependencies(
@Req() req: any,
@Param('skillWorkflowId') skillWorkflowId: string,
@Body() input: UpdateDependenciesDto,
): Promise<void> {
return this.skillPackageService.updateWorkflowDependencies(
req.user,
skillWorkflowId,
input.dependencies,
);
}
@Delete(':skillId/workflows/:skillWorkflowId')
async removeWorkflow(
@Req() req: any,
@Param('skillWorkflowId') skillWorkflowId: string,
): Promise<void> {
return this.skillPackageService.removeWorkflowFromSkill(req.user, skillWorkflowId);
}
// ===== Publishing =====
@Post(':skillId/publish')
async publishSkill(
@Req() req: any,
@Param('skillId') skillId: string,
@Body() body?: PublishSkillDto,
): Promise<SkillPackageResponse> {
return this.skillPackageService.publishSkillPackage(req.user, skillId, body);
}
@Post(':skillId/unpublish')
async unpublishSkill(@Req() req: any, @Param('skillId') skillId: string): Promise<void> {
return this.skillPackageService.unpublishSkillPackage(req.user, skillId);
}
// ===== Discovery =====
@Get('public/search')
async searchPublicSkills(
@Query() query: SearchSkillsDto,
): Promise<PaginatedResult<SkillPackageResponse>> {
return this.skillPackageService.searchPublicSkills(query);
}
@Get('public/share/:shareId')
async getPublicSkill(@Param('shareId') shareId: string): Promise<SkillPackageResponse> {
const result = await this.skillPackageService.getSkillByShareId(shareId);
if (!result) {
throw new NotFoundException(`Skill not found with shareId: ${shareId}`);
}
return result;
}
}
@Controller('v1/skill-installations')
@UseGuards(JwtAuthGuard)
export class SkillInstallationController {
constructor(private readonly skillInstallationService: SkillInstallationService) {}
// ===== Installation =====
@Post()
async downloadSkill(
@Req() req: any,
@Body() input: DownloadSkillDto,
): Promise<SkillInstallationResponse> {
return this.skillInstallationService.downloadSkill(req.user, input.skillId, input.shareId);
}
@Post('install')
async installSkill(
@Req() req: any,
@Body() input: InstallSkillDto,
): Promise<SkillInstallationResponse> {
return this.skillInstallationService.installSkill(req.user, input);
}
@Post(':installationId/initialize')
async initializeSkill(
@Req() req: any,
@Param('installationId') installationId: string,
): Promise<SkillInstallationResponse> {
return this.skillInstallationService.initializeSkill(req.user, installationId);
}
@Post(':installationId/upgrade')
async upgradeSkill(
@Req() req: any,
@Param('installationId') installationId: string,
): Promise<SkillInstallationResponse> {
return this.skillInstallationService.upgradeSkill(req.user, installationId);
}
@Patch(':installationId')
async updateInstallation(
@Req() req: any,
@Param('installationId') installationId: string,
@Body() input: UpdateInstallationDto,
): Promise<SkillInstallationResponse> {
return this.skillInstallationService.updateInstallation(req.user, installationId, input);
}
@Delete(':installationId')
async uninstallSkill(
@Req() req: any,
@Param('installationId') installationId: string,
@Query() options: UninstallOptionsDto,
): Promise<void> {
return this.skillInstallationService.uninstallSkill(req.user, installationId, options);
}
// ===== Queries =====
@Get()
async listInstallations(
@Req() req: any,
@Query() filter: InstallationFilterDto,
): Promise<PaginatedResult<SkillInstallationResponse>> {
return this.skillInstallationService.getUserInstallations(req.user, filter);
}
@Get(':installationId')
async getInstallation(
@Param('installationId') installationId: string,
): Promise<SkillInstallationResponse> {
const result = await this.skillInstallationService.getInstallation(installationId);
if (!result) {
throw new NotFoundException(`Installation not found: ${installationId}`);
}
return result;
}
// ===== Execution =====
@Post(':installationId/run')
async runSkill(
@Req() req: any,
@Param('installationId') installationId: string,
@Body() input: RunSkillDto,
): Promise<SkillExecutionResult> {
return this.skillInstallationService.runInstalledSkill(req.user, installationId, input);
}
@Post(':installationId/stop')
async stopSkill(
@Req() req: any,
@Param('installationId') installationId: string,
): Promise<{
message: string;
installationId: string;
stoppedExecutions: Array<{
executionId: string;
workflowsAborted: number;
}>;
}> {
return this.skillInstallationService.stopRunningExecutions(req.user, installationId);
}
}
/**
* CLI-specific Skill Package Controller
* These endpoints are designed for the Refly CLI and use standardized CLI error format.
*/
@ApiTags('CLI Skill Packages')
@ApiBearerAuth()
@Controller('v1/cli/skill-packages')
@UseGuards(JwtAuthGuard)
export class SkillPackageCliController {
private readonly logger = new Logger(SkillPackageCliController.name);
constructor(private readonly skillPackageService: SkillPackageService) {}
/**
* Create a skill package with optional workflow binding/generation
* POST /v1/cli/skill-packages
*
* Supports multiple modes:
* - Auto-generate workflow from description + triggers (default)
* - Bind existing workflow(s) via workflowId/workflowIds
* - Create workflow from spec via workflowSpec
* - Generate workflow from natural language via workflowQuery
* - Create skill metadata only via noWorkflow flag
*/
@ApiOperation({ summary: 'Create skill package with workflow' })
@ApiResponse({ status: 201, description: 'Skill package created successfully' })
@ApiResponse({ status: 400, description: 'Validation error' })
@ApiResponse({ status: 404, description: 'Workflow not found' })
@ApiResponse({ status: 500, description: 'Internal server error' })
@Post()
async createSkillPackageWithWorkflow(
@Req() req: any,
@Body() input: CreateSkillPackageCliDto,
): Promise<{ ok: true; type: string; version: string; payload: CreateSkillPackageCliResponse }> {
this.logger.log(`Creating skill package "${input.name}" for user ${req.user?.uid}`);
try {
// Validate required fields
if (!input.name?.trim()) {
throwCliError(
SKILL_CLI_ERROR_CODES.VALIDATION_ERROR,
'Skill name is required',
'Provide a name using --name <name>',
);
}
const result = await this.skillPackageService.createSkillPackageWithWorkflow(req.user, input);
this.logger.log(`Created skill package: ${result.skillId}`);
return {
ok: true,
type: 'skill.create',
version: '1.0',
payload: result,
};
} catch (error) {
// If it's already a CLI error (HttpException), rethrow it
if ((error as any).response?.ok === false) {
throw error;
}
// Map generic errors to CLI error codes
const { code, status, hint } = mapErrorToCliCode(error as Error);
this.logger.error(`Failed to create skill package: ${(error as Error).message}`);
throwCliError(code, (error as Error).message, hint, status);
}
}
/**
* Get a skill package by ID (CLI format)
* GET /v1/cli/skill-packages/:skillId
*/
@ApiOperation({ summary: 'Get skill package by ID' })
@ApiResponse({ status: 200, description: 'Skill package found' })
@ApiResponse({ status: 404, description: 'Skill not found' })
@Get(':skillId')
async getSkillPackage(
@Req() req: any,
@Param('skillId') skillId: string,
): Promise<{ ok: true; type: string; version: string; payload: SkillPackageResponse }> {
this.logger.log(`Getting skill package ${skillId} for user ${req.user?.uid}`);
try {
const result = await this.skillPackageService.getSkillPackage(skillId, {
includeWorkflows: true,
userId: req.user?.uid,
});
if (!result) {
throwCliError(
SKILL_CLI_ERROR_CODES.SKILL_NOT_FOUND,
`Skill package not found: ${skillId}`,
'Check the skill ID and try again',
HttpStatus.NOT_FOUND,
);
}
return {
ok: true,
type: 'skill.get',
version: '1.0',
payload: result,
};
} catch (error) {
if ((error as any).response?.ok === false) {
throw error;
}
const { code, status, hint } = mapErrorToCliCode(error as Error);
this.logger.error(`Failed to get skill package: ${(error as Error).message}`);
throwCliError(code, (error as Error).message, hint, status);
}
}
// DELETE endpoint removed - use uninstall instead
// /**
// * Delete a skill package (CLI format)
// * DELETE /v1/cli/skill-packages/:skillId
// */
// @ApiOperation({ summary: 'Delete skill package' })
// @ApiResponse({ status: 200, description: 'Skill package deleted' })
// @ApiResponse({ status: 404, description: 'Skill not found' })
// @Delete(':skillId')
// async deleteSkillPackage(
// @Req() req: any,
// @Param('skillId') skillId: string,
// ): Promise<{ ok: true; type: string; version: string; payload: { deleted: boolean } }> {
// this.logger.log(`Deleting skill package ${skillId} for user ${req.user?.uid}`);
//
// try {
// await this.skillPackageService.deleteSkillPackage(req.user, skillId);
//
// return {
// ok: true,
// type: 'skill.delete',
// version: '1.0',
// payload: { deleted: true },
// };
// } catch (error) {
// if ((error as any).response?.ok === false) {
// throw error;
// }
//
// const { code, status, hint } = mapErrorToCliCode(error as Error);
// this.logger.error(`Failed to delete skill package: ${(error as Error).message}`);
// throwCliError(code, (error as Error).message, hint, status);
// }
// }
}