@huaqiu/hqeda 0.1.2 → 0.1.3
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 +2 -25
- package/SKILL.md +1 -7
- package/dist/index.cjs +218 -236
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +0 -18
- package/dist/index.js.map +1 -1
- package/generated/capability-registry.json +0 -52
- package/package.json +3 -3
- package/skill.json +0 -1
package/dist/index.js
CHANGED
|
@@ -11,23 +11,6 @@ function registerSkill(skill) {
|
|
|
11
11
|
return skill;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
// generated/ai/execute-prompt.ts
|
|
15
|
-
import { HqServicesV1AiService } from "@hqedge/connect";
|
|
16
|
-
var ExecutePromptSkill = defineSkill({
|
|
17
|
-
id: "ai-execute-prompt",
|
|
18
|
-
title: "Execute Prompt",
|
|
19
|
-
description: "Execute Prompt via AIService.ExecutePrompt",
|
|
20
|
-
domain: "ai",
|
|
21
|
-
service: "AIService",
|
|
22
|
-
method: "ExecutePrompt",
|
|
23
|
-
isStreaming: false,
|
|
24
|
-
inputSchema: HqServicesV1AiService.AIRequestSchema,
|
|
25
|
-
async execute(ctx, input) {
|
|
26
|
-
return await ctx.client.ai.executePrompt(input);
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
|
-
registerSkill(ExecutePromptSkill);
|
|
30
|
-
|
|
31
14
|
// generated/bom/get-bom.ts
|
|
32
15
|
import { HqFabV1GetEdaBom } from "@hqedge/connect";
|
|
33
16
|
var GetBomSkill = defineSkill({
|
|
@@ -1883,7 +1866,6 @@ registerSkill(UndoSkill);
|
|
|
1883
1866
|
|
|
1884
1867
|
// generated/index.ts
|
|
1885
1868
|
var SKILLS = {
|
|
1886
|
-
"ai-execute-prompt": ExecutePromptSkill,
|
|
1887
1869
|
"bom-get-bom": GetBomSkill,
|
|
1888
1870
|
"canvas-align-objects": AlignObjectsSkill,
|
|
1889
1871
|
"canvas-can-paste": CanPasteSkill,
|