@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
|
@@ -3,58 +3,6 @@
|
|
|
3
3
|
"generatedAt": "deterministic",
|
|
4
4
|
"sdkSource": "platform/sdk/ts/src/generated",
|
|
5
5
|
"capabilities": [
|
|
6
|
-
{
|
|
7
|
-
"id": "ai-execute-prompt",
|
|
8
|
-
"title": "Execute Prompt",
|
|
9
|
-
"description": "Execute Prompt via AIService.ExecutePrompt",
|
|
10
|
-
"domain": "ai",
|
|
11
|
-
"service": "AIService",
|
|
12
|
-
"method": "ExecutePrompt",
|
|
13
|
-
"rpcTarget": {
|
|
14
|
-
"service": "AIService",
|
|
15
|
-
"method": "ExecutePrompt",
|
|
16
|
-
"kind": "unary"
|
|
17
|
-
},
|
|
18
|
-
"inputSchema": {
|
|
19
|
-
"name": "AIRequestSchema",
|
|
20
|
-
"namespace": "HqServicesV1AiService",
|
|
21
|
-
"sourceFile": "hq/services/v1/ai_service_pb"
|
|
22
|
-
},
|
|
23
|
-
"outputSchema": {
|
|
24
|
-
"name": "AIResponseSchema",
|
|
25
|
-
"namespace": "HqServicesV1AiService",
|
|
26
|
-
"sourceFile": "hq/services/v1/ai_service_pb"
|
|
27
|
-
},
|
|
28
|
-
"parameters": [
|
|
29
|
-
{
|
|
30
|
-
"name": "context",
|
|
31
|
-
"type": "ProjectContext",
|
|
32
|
-
"required": false,
|
|
33
|
-
"repeated": false
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "prompt",
|
|
37
|
-
"type": "string",
|
|
38
|
-
"required": true,
|
|
39
|
-
"repeated": false
|
|
40
|
-
}
|
|
41
|
-
],
|
|
42
|
-
"responseFields": [
|
|
43
|
-
{
|
|
44
|
-
"name": "commands",
|
|
45
|
-
"type": "Command[]",
|
|
46
|
-
"repeated": true
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "findings",
|
|
50
|
-
"type": "ErcFinding[]",
|
|
51
|
-
"repeated": true
|
|
52
|
-
}
|
|
53
|
-
],
|
|
54
|
-
"examples": [],
|
|
55
|
-
"entry": "generated/ai/execute-prompt.js",
|
|
56
|
-
"isStreaming": false
|
|
57
|
-
},
|
|
58
6
|
{
|
|
59
7
|
"id": "bom-get-bom",
|
|
60
8
|
"title": "Get Bom",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@huaqiu/hqeda",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Official HQ EDA Skill Package — executable SDK capabilities and human-authored review playbooks for Huaqiu EDA engines.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@bufbuild/protobuf": "^2.6.3",
|
|
33
|
-
"@hqedge/connect": "0.1.
|
|
34
|
-
"@huaqiu/huaqiu-client": "0.0.
|
|
33
|
+
"@hqedge/connect": "0.1.13",
|
|
34
|
+
"@huaqiu/huaqiu-client": "0.0.5"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^24.0.0",
|