@eworkbase/plugin-openspec 0.1.0
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/package.json +34 -0
- package/plugin.mjs +275 -0
- package/ui/assets/index-C9VjDQxI.js +9 -0
- package/ui/assets/index-DGT7X757.css +1 -0
- package/ui/index.html +17 -0
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@eworkbase/plugin-openspec",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "在工作区中管理需求提案、设计、规格和实现任务。支持查看变更进度、编辑文档、校验产物和归档变更,让团队围绕同一份规范协作。添加并启用后,工作区准备流程会创建或关联对应的 OpenSpec 变更。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": "./plugin.mjs",
|
|
7
|
+
"files": [
|
|
8
|
+
"plugin.mjs",
|
|
9
|
+
"ui"
|
|
10
|
+
],
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=22"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"workbase": {
|
|
18
|
+
"id": "openspec",
|
|
19
|
+
"title": "OpenSpec",
|
|
20
|
+
"tools": [
|
|
21
|
+
{
|
|
22
|
+
"id": "openspec",
|
|
23
|
+
"label": "OpenSpec",
|
|
24
|
+
"category": "runtime",
|
|
25
|
+
"version": "1.6.0",
|
|
26
|
+
"runtimeId": "npm:@fission-ai/openspec"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"builtin": false,
|
|
30
|
+
"apiVersion": 1,
|
|
31
|
+
"workbaseVersion": "^0.4",
|
|
32
|
+
"description": "在工作区中管理需求提案、设计、规格和实现任务。支持查看变更进度、编辑文档、校验产物和归档变更,让团队围绕同一份规范协作。添加并启用后,工作区准备流程会创建或关联对应的 OpenSpec 变更。"
|
|
33
|
+
}
|
|
34
|
+
}
|