weaver-work-cli 0.1.6 → 0.1.7
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 +14 -9
- package/dist/cmd/skills/index.js +60 -0
- package/dist/internal/e10/auth/commands.js +44 -31
- package/dist/internal/e10/auth/session.js +44 -3
- package/dist/internal/e10/auth/xiaoe.js +363 -11
- package/dist/internal/e10/context.js +4 -2
- package/dist/internal/skills/detector.js +42 -0
- package/dist/internal/skills/install.js +50 -3
- package/dist/shortcuts/archive/render/search-format.js +12 -3
- package/dist/shortcuts/ebuilder-form/continuation.js +70 -0
- package/dist/shortcuts/ebuilder-form/errors.js +54 -0
- package/dist/shortcuts/ebuilder-form/host.js +1238 -0
- package/dist/shortcuts/ebuilder-form/index.js +108 -0
- package/dist/shortcuts/ebuilder-form/manifest.js +347 -0
- package/dist/shortcuts/ebuilder-form/operations/read.js +157 -0
- package/dist/shortcuts/ebuilder-form/operations/registry.js +56 -0
- package/dist/shortcuts/ebuilder-form/operations/shared.js +132 -0
- package/dist/shortcuts/ebuilder-form/operations/types.js +19 -0
- package/dist/shortcuts/ebuilder-form/operations/write.js +277 -0
- package/dist/shortcuts/ebuilder-form/operations.js +8 -0
- package/dist/shortcuts/ehr/operations/salary.js +2 -140
- package/dist/shortcuts/im/continuation.js +70 -0
- package/dist/shortcuts/{yimiaoban → im}/errors.js +14 -14
- package/dist/shortcuts/{yimiaoban → im}/host.js +26 -26
- package/dist/shortcuts/{yimiaoban → im}/index.js +42 -42
- package/dist/shortcuts/{yimiaoban → im}/manifest.js +7 -6
- package/dist/shortcuts/{yimiaoban → im}/operations/file-user.js +54 -41
- package/dist/shortcuts/{yimiaoban → im}/operations/group-read.js +46 -44
- package/dist/shortcuts/{yimiaoban → im}/operations/group-write.js +113 -66
- package/dist/shortcuts/{yimiaoban → im}/operations/msg-sync.js +164 -141
- package/dist/shortcuts/{yimiaoban → im}/operations/msg-write.js +47 -47
- package/dist/shortcuts/{yimiaoban → im}/operations/person.js +10 -10
- package/dist/shortcuts/{yimiaoban → im}/operations/registry.js +10 -8
- package/dist/shortcuts/{yimiaoban → im}/operations/session.js +82 -83
- package/dist/shortcuts/im/operations/shared.js +442 -0
- package/dist/shortcuts/{yimiaoban → im}/operations/types.js +1 -1
- package/dist/shortcuts/im/operations/user-remind.js +201 -0
- package/dist/shortcuts/{yimiaoban → im}/operations/write-util.js +7 -7
- package/dist/shortcuts/{yimiaoban → im}/operations.js +3 -3
- package/dist/shortcuts/index.js +10 -2
- package/dist/shortcuts/invoice/manifest.js +113 -10
- package/dist/shortcuts/invoice/operations/import.js +39 -14
- package/dist/shortcuts/invoice/operations/reim.js +38 -18
- package/dist/shortcuts/invoice/operations/shared.js +35 -6
- package/dist/shortcuts/jiuchuanhui/manifest.js +3 -3
- package/dist/shortcuts/jiuchuanhui/operations/registry.js +2 -2
- package/dist/shortcuts/{yimiaoban → okr}/continuation.js +10 -10
- package/dist/shortcuts/okr/errors.js +70 -0
- package/dist/shortcuts/okr/host.js +169 -0
- package/dist/shortcuts/okr/index.js +155 -0
- package/dist/shortcuts/okr/manifest.js +70 -0
- package/dist/shortcuts/okr/operations/link.js +305 -0
- package/dist/shortcuts/okr/operations/read.js +481 -0
- package/dist/shortcuts/okr/operations/registry.js +31 -0
- package/dist/shortcuts/okr/operations/shared.js +381 -0
- package/dist/shortcuts/okr/operations/types.js +88 -0
- package/dist/shortcuts/okr/operations/write.js +838 -0
- package/dist/shortcuts/okr/operations.js +8 -0
- package/dist/shortcuts/project/continuation.js +70 -0
- package/dist/shortcuts/project/errors.js +53 -0
- package/dist/shortcuts/project/host.js +160 -0
- package/dist/shortcuts/project/index.js +106 -0
- package/dist/shortcuts/project/manifest.js +36 -0
- package/dist/shortcuts/project/operations/read.js +551 -0
- package/dist/shortcuts/project/operations/registry.js +31 -0
- package/dist/shortcuts/project/operations/shared.js +68 -0
- package/dist/shortcuts/project/operations/types.js +39 -0
- package/dist/shortcuts/project/operations/write.js +266 -0
- package/dist/shortcuts/project/operations.js +8 -0
- package/dist/shortcuts/workflow/continuation.js +508 -0
- package/dist/shortcuts/workflow/endpoints.js +149 -0
- package/dist/shortcuts/workflow/errors.js +112 -0
- package/dist/shortcuts/workflow/host.js +224 -0
- package/dist/shortcuts/workflow/index.js +116 -0
- package/dist/shortcuts/workflow/manifest.js +30 -0
- package/dist/shortcuts/workflow/operations/form.js +4159 -0
- package/dist/shortcuts/workflow/operations/read.js +3778 -0
- package/dist/shortcuts/workflow/operations/registry.js +33 -0
- package/dist/shortcuts/workflow/operations/shared.js +167 -0
- package/dist/shortcuts/workflow/operations/types.js +44 -0
- package/dist/shortcuts/workflow/operations/write.js +1991 -0
- package/dist/shortcuts/workflow/operations.js +119 -0
- package/dist/shortcuts/workflow/state.js +182 -0
- package/docs/SKILL.md +5 -3
- package/docs/_catalog.md +10 -1
- package/docs/agent-invoice.md +2 -2
- package/docs/agent-skill-install.md +2 -2
- package/docs/e10-auth.md +3 -1
- package/docs/ebuilder-form.md +38 -0
- package/docs/im.md +104 -0
- package/docs/invoice.md +5 -5
- package/docs/okr.md +122 -0
- package/docs/operation-manual.md +10 -7
- package/docs/project.md +69 -0
- package/docs/skill-review-2026-09-19.md +68 -0
- package/package.json +3 -2
- package/scripts/package-skill.mjs +38 -11
- package/scripts/sync-connector-skills.mjs +172 -0
- package/skill-template/business-info.json +357 -16
- package/skill-template/domains/ebuilder-form.md +5 -0
- package/skill-template/domains/okr.md +18 -0
- package/skill-template/domains/shijingran.md +3 -0
- package/skill-template/domains/skill-maker.md +4 -4
- package/skill-template/domains/workflow.md +22 -0
- package/skill-template/domains/yepiaotong.md +4 -2
- package/skill-template/domains/yimiaoban.md +13 -10
- package/skill-template/product.json +5 -0
- package/skill-template/skill-template.md +1 -0
- package/skills/weaver-e10-calendar/SKILL.md +5 -1
- package/skills/weaver-e10-calendar/references/calendar-query.md +7 -0
- package/skills/weaver-e10-calendar/references/source-manifest.json +314 -32
- package/skills/weaver-e10-ebuilder-form/SKILL.md +123 -0
- package/skills/weaver-e10-ebuilder-form/references/context-routing.md +90 -0
- package/skills/weaver-e10-ebuilder-form/references/custom-api.md +86 -0
- package/skills/weaver-e10-ebuilder-form/references/disabled-capabilities.md +50 -0
- package/skills/weaver-e10-ebuilder-form/references/fields-browser.md +100 -0
- package/skills/weaver-e10-ebuilder-form/references/list-nlist.md +91 -0
- package/skills/weaver-e10-ebuilder-form/references/openapi-read.md +74 -0
- package/skills/weaver-e10-ebuilder-form/references/openapi-write.md +86 -0
- package/skills/weaver-e10-ebuilder-form/references/source-manifest.json +107 -0
- package/skills/weaver-e10-esb/SKILL.md +1 -1
- package/skills/weaver-e10-esb/references/source-manifest.json +15 -14
- package/skills/weaver-e10-hrm/SKILL.md +1 -1
- package/skills/weaver-e10-hrm/references/source-manifest.json +357 -38
- package/skills/weaver-e10-jiuchuanhui/SKILL.md +22 -4
- package/skills/weaver-e10-jiuchuanhui/references/clue.md +4 -2
- package/skills/weaver-e10-jiuchuanhui/references/contact.md +1 -1
- package/skills/weaver-e10-jiuchuanhui/references/customer.md +3 -3
- package/skills/weaver-e10-jiuchuanhui/references/disabled-capabilities.md +1 -1
- package/skills/weaver-e10-jiuchuanhui/references/discovery-config.md +10 -10
- package/skills/weaver-e10-jiuchuanhui/references/general-helpers.md +3 -3
- package/skills/weaver-e10-jiuchuanhui/references/sale.md +7 -7
- package/skills/weaver-e10-jiuchuanhui/references/source-manifest.json +3 -3
- package/skills/weaver-e10-jucailin/SKILL.md +2 -2
- package/skills/weaver-e10-mail/SKILL.md +22 -6
- package/skills/weaver-e10-meeting/SKILL.md +22 -1
- package/skills/weaver-e10-okr/SKILL.md +139 -0
- package/skills/weaver-e10-okr/references/okr-align.md +59 -0
- package/skills/weaver-e10-okr/references/okr-keyresult.md +68 -0
- package/skills/weaver-e10-okr/references/okr-link-routing.md +67 -0
- package/skills/weaver-e10-okr/references/okr-query.md +105 -0
- package/skills/weaver-e10-okr/references/okr-write.md +94 -0
- package/skills/weaver-e10-okr/references/source-manifest.json +672 -0
- package/skills/weaver-e10-plan/SKILL.md +3 -3
- package/skills/weaver-e10-plan/references/plan-report-write.md +1 -1
- package/skills/weaver-e10-plan/references/source-manifest.json +20 -20
- package/skills/weaver-e10-qiyecheng/SKILL.md +21 -1
- package/skills/weaver-e10-qiyecheng/references/source-manifest.json +17 -17
- package/skills/weaver-e10-shared/SKILL.md +79 -11
- package/skills/weaver-e10-shared/references/e10-auth-and-session.md +41 -8
- package/skills/weaver-e10-shared/references/non-interactive-environment.md +78 -0
- package/skills/weaver-e10-shared/references/weaver-e10-installation.md +39 -0
- package/skills/weaver-e10-shijingran/SKILL.md +83 -0
- package/skills/weaver-e10-shijingran/references/field-resolution.md +105 -0
- package/skills/weaver-e10-shijingran/references/operations.md +154 -0
- package/skills/weaver-e10-shijingran/references/source-manifest.json +1380 -0
- package/skills/weaver-e10-shijingran/references/write-operations.md +90 -0
- package/skills/weaver-e10-skill-maker/SKILL.md +26 -9
- package/skills/weaver-e10-skill-maker/references/business-skill-generation.md +39 -8
- package/skills/weaver-e10-skill-maker/references/detector-validation.md +25 -8
- package/skills/weaver-e10-skill-maker/references/module-cli-generation.md +66 -5
- package/skills/weaver-e10-skill-maker/references/module-gap-audit-and-repair.md +86 -0
- package/skills/weaver-e10-skill-maker/references/source-update-detection.md +59 -5
- package/skills/weaver-e10-skill-maker/references/weaver-skill-style.md +16 -8
- package/skills/weaver-e10-wenshuding/SKILL.md +28 -4
- package/skills/weaver-e10-wenshuding/references/archive-search.md +14 -0
- package/skills/weaver-e10-wenshuding/references/source-manifest.json +27 -26
- package/skills/weaver-e10-workflow/SKILL.md +250 -0
- package/skills/weaver-e10-workflow/references/source-manifest.json +1062 -0
- package/skills/weaver-e10-workflow/references/workflow-agent-entry.md +96 -0
- package/skills/weaver-e10-workflow/references/workflow-batch.md +275 -0
- package/skills/weaver-e10-workflow/references/workflow-create.md +182 -0
- package/skills/weaver-e10-workflow/references/workflow-edit.md +106 -0
- package/skills/weaver-e10-workflow/references/workflow-memory.md +165 -0
- package/skills/weaver-e10-workflow/references/workflow-operate.md +153 -0
- package/skills/weaver-e10-workflow/references/workflow-query.md +821 -0
- package/skills/weaver-e10-workflow/references/workflow-share.md +117 -0
- package/skills/weaver-e10-workflow/references/workflow-view.md +189 -0
- package/skills/weaver-e10-yepiaotong/SKILL.md +28 -28
- package/skills/weaver-e10-yepiaotong/references/invoice-disabled-capabilities.md +11 -5
- package/skills/weaver-e10-yepiaotong/references/invoice-import.md +14 -8
- package/skills/weaver-e10-yepiaotong/references/invoice-issuing-examples.md +9 -43
- package/skills/weaver-e10-yepiaotong/references/invoice-issuing.md +8 -0
- package/skills/weaver-e10-yepiaotong/references/invoice-reim.md +13 -17
- package/skills/weaver-e10-yepiaotong/references/reim-api-reference.md +6 -7
- package/skills/weaver-e10-yepiaotong/references/reim-examples.md +2 -2
- package/skills/weaver-e10-yepiaotong/references/source-manifest.json +1155 -553
- package/skills/weaver-e10-yimiaoban/SKILL.md +56 -38
- package/skills/weaver-e10-yimiaoban/references/ding-write.md +8 -8
- package/skills/weaver-e10-yimiaoban/references/error-codes.md +16 -0
- package/skills/weaver-e10-yimiaoban/references/field-resolution.md +10 -10
- package/skills/weaver-e10-yimiaoban/references/file-user-i18n.md +12 -12
- package/skills/weaver-e10-yimiaoban/references/group-read.md +16 -16
- package/skills/weaver-e10-yimiaoban/references/group-write.md +17 -15
- package/skills/weaver-e10-yimiaoban/references/msg-read.md +21 -17
- package/skills/weaver-e10-yimiaoban/references/msg-write.md +10 -10
- package/skills/weaver-e10-yimiaoban/references/person.md +6 -6
- package/skills/weaver-e10-yimiaoban/references/safety-boundaries.md +15 -11
- package/skills/weaver-e10-yimiaoban/references/session-sysmsg.md +11 -10
- package/skills/weaver-e10-yimiaoban/references/source-manifest.json +2164 -154
- package/skills/weaver-e10-yimiaoban/references/user-remind.md +75 -0
- package/skills/weaver-e10-ziguanjia/SKILL.md +4 -2
- package/skills/weaver-e10-ziguanjia/references/source-manifest.json +99 -29
- package/tools/weaver-skill-detector-1.0.13/SKILL.md +253 -0
- package/tools/weaver-skill-detector-1.0.13/_meta.json +6 -0
- package/tools/weaver-skill-detector-1.0.13/references/checklist.md +298 -0
- package/tools/weaver-skill-detector-1.0.13/scripts/validate_skill.py +4190 -0
- package/dist/shortcuts/yimiaoban/operations/shared.js +0 -236
- package/docs/yimiaoban.md +0 -86
- package/skills/weaver-e10-calendar/product.json +0 -8
- package/skills/weaver-e10-esb/product.json +0 -8
- package/skills/weaver-e10-hrm/product.json +0 -8
- package/skills/weaver-e10-jiuchuanhui/product.json +0 -8
- package/skills/weaver-e10-jucailin/product.json +0 -8
- package/skills/weaver-e10-mail/product.json +0 -8
- package/skills/weaver-e10-meeting/product.json +0 -8
- package/skills/weaver-e10-plan/product.json +0 -8
- package/skills/weaver-e10-qiyecheng/product.json +0 -8
- package/skills/weaver-e10-skill-maker/product.json +0 -8
- package/skills/weaver-e10-wenshuding/product.json +0 -8
- package/skills/weaver-e10-yepiaotong/product.json +0 -8
- package/skills/weaver-e10-yepiaotong/references/invoice-red.md +0 -261
- package/skills/weaver-e10-yimiaoban/product.json +0 -8
- package/skills/weaver-e10-ziguanjia/product.json +0 -8
- /package/dist/shortcuts/{yimiaoban → im}/operations/msg-parse.js +0 -0
|
@@ -0,0 +1,1062 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"module": "workflow",
|
|
4
|
+
"skill": "weaver-e10-workflow",
|
|
5
|
+
"generatedFrom": {
|
|
6
|
+
"sourceSkill": "weaver-e10-workflow",
|
|
7
|
+
"version": "1.0.105",
|
|
8
|
+
"path": "weaver-e10-workflow",
|
|
9
|
+
"kind": "workbuddy-script-skill",
|
|
10
|
+
"availability": "local-installed-skill"
|
|
11
|
+
},
|
|
12
|
+
"generatedAt": "2026-09-19T01:43:47Z",
|
|
13
|
+
"sourceSet": {
|
|
14
|
+
"aggregateSha256": "5bf1b914f284a8da850aab749bdee077070d8591f9a9fb658e5b10c5db923bbb",
|
|
15
|
+
"sourceRoots": [
|
|
16
|
+
"weaver-e10-workflow"
|
|
17
|
+
],
|
|
18
|
+
"detectionStrength": "strong"
|
|
19
|
+
},
|
|
20
|
+
"generatedTargets": {
|
|
21
|
+
"cli": [
|
|
22
|
+
"src/shortcuts/workflow",
|
|
23
|
+
"src/shortcuts/index.ts"
|
|
24
|
+
],
|
|
25
|
+
"skill": [
|
|
26
|
+
"skills/weaver-e10-workflow"
|
|
27
|
+
],
|
|
28
|
+
"tests": [
|
|
29
|
+
"test/business/workflow-operations.test.ts",
|
|
30
|
+
"test/business/workflow-form-fields.test.ts",
|
|
31
|
+
"test/business/workflow-continuation.test.ts"
|
|
32
|
+
],
|
|
33
|
+
"docs": [
|
|
34
|
+
"skill-template/domains/workflow.md"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"sources": [
|
|
38
|
+
{
|
|
39
|
+
"path": "weaver-e10-workflow/agents/openai.yaml",
|
|
40
|
+
"role": "metadata",
|
|
41
|
+
"size": 382,
|
|
42
|
+
"sha256": "8d17aeafa844847aa8e2bec00ae963519e478bb3c31df83d4355ceca96f47e4b"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "weaver-e10-workflow/references/memory-rules.md",
|
|
46
|
+
"role": "api-doc",
|
|
47
|
+
"size": 10333,
|
|
48
|
+
"sha256": "4e60eea59eb4ca6f2a1a425b85077741ef3af2dc25b9326e75c1f9c56573465d"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "weaver-e10-workflow/references/page-open.md",
|
|
52
|
+
"role": "api-doc",
|
|
53
|
+
"size": 2243,
|
|
54
|
+
"sha256": "1a39d7222243a3078698ef873809ad5c09d62a7578a9e111f22fc40b7196eae1"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "weaver-e10-workflow/references/rendering.md",
|
|
58
|
+
"role": "api-doc",
|
|
59
|
+
"size": 8755,
|
|
60
|
+
"sha256": "1e33880dcf9186a6f7a3db92cbd8625d69692c643257eebbd3f8b3890169eb89"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"path": "weaver-e10-workflow/references/workflow-batch.md",
|
|
64
|
+
"role": "api-doc",
|
|
65
|
+
"size": 10923,
|
|
66
|
+
"sha256": "4d1b0b45fda332a7961b38970237f5d6730b0bfe2063e6401942bf2e539e0765"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"path": "weaver-e10-workflow/references/workflow-create.md",
|
|
70
|
+
"role": "api-doc",
|
|
71
|
+
"size": 24894,
|
|
72
|
+
"sha256": "be249e2a23d80d960a7fadd754d4f1a2e11d113cb70daadf3e4203089a6e8f2e"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"path": "weaver-e10-workflow/references/workflow-edit.md",
|
|
76
|
+
"role": "api-doc",
|
|
77
|
+
"size": 3870,
|
|
78
|
+
"sha256": "ee850b9574679597468b9864b85253cecc3e331f92423e263edde6fd095cd569"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"path": "weaver-e10-workflow/references/workflow-operate.md",
|
|
82
|
+
"role": "api-doc",
|
|
83
|
+
"size": 6351,
|
|
84
|
+
"sha256": "1f5e9e89a21441ac78b3733526fd0e75362d2e02bbafa6cae215ec1a5126f0a5"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"path": "weaver-e10-workflow/references/workflow-search.md",
|
|
88
|
+
"role": "api-doc",
|
|
89
|
+
"size": 77856,
|
|
90
|
+
"sha256": "acbdd374f90d49fc4f814787841c7277d751285b6cc4e3d67dbad1242bf98515"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"path": "weaver-e10-workflow/references/workflow-share.md",
|
|
94
|
+
"role": "api-doc",
|
|
95
|
+
"size": 3421,
|
|
96
|
+
"sha256": "6d41286307c60fbdbd4627abcf2bfa5359646c9adf491ce20679672703f4f3f9"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"path": "weaver-e10-workflow/references/workflow-todo-stat.md",
|
|
100
|
+
"role": "api-doc",
|
|
101
|
+
"size": 14806,
|
|
102
|
+
"sha256": "8e2e5390df1a589a425c45eb1a8daa496afafe242233f5c23c3f6594a9cb184c"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"path": "weaver-e10-workflow/references/workflow-view.md",
|
|
106
|
+
"role": "api-doc",
|
|
107
|
+
"size": 4804,
|
|
108
|
+
"sha256": "d786c8372d475db89873f8bd4f3dee6db7753dab8b68d9fb23464e04cb2a8428"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"path": "weaver-e10-workflow/scripts/cli_tool.py",
|
|
112
|
+
"role": "implementation",
|
|
113
|
+
"size": 169,
|
|
114
|
+
"sha256": "54ad38eeb468895f84dc99dc7c1fb8c71bdc39239fdf8bd235aa95e56c7fa33e"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"path": "weaver-e10-workflow/scripts/e10_workflow_create.py",
|
|
118
|
+
"role": "implementation",
|
|
119
|
+
"size": 257958,
|
|
120
|
+
"sha256": "5d415e2baf4f1bc825e451fccf59390c13138f765af8baaac241f5d9c61b4fb2"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"path": "weaver-e10-workflow/scripts/e10_workflow.py",
|
|
124
|
+
"role": "implementation",
|
|
125
|
+
"size": 825804,
|
|
126
|
+
"sha256": "52909ab1e16a865a578e29803bb1dee8df92f46887421635ea2209561afc5db3"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"path": "weaver-e10-workflow/scripts/requirements.txt",
|
|
130
|
+
"role": "implementation",
|
|
131
|
+
"size": 96,
|
|
132
|
+
"sha256": "c29bebfd85796f2854c659339c711815dfb11cba2fb3fa6e10d334d3938361e0"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"path": "weaver-e10-workflow/SKILL.md",
|
|
136
|
+
"role": "existing-skill",
|
|
137
|
+
"size": 11278,
|
|
138
|
+
"sha256": "d736762986bed77a1d2b9a9eda02f15cd7a8d0c28f4754c0fcee67ac60434f48"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"path": "weaver-e10-workflow/tests/query_cases.md",
|
|
142
|
+
"role": "test-fixture",
|
|
143
|
+
"size": 5002,
|
|
144
|
+
"sha256": "3f0ec7188ba3abc46f555824e60fd77ae0c958b14cb47900e9c3bd241ec59dec"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"path": "weaver-e10-workflow/tests/query_cases.py",
|
|
148
|
+
"role": "test-fixture",
|
|
149
|
+
"size": 51161,
|
|
150
|
+
"sha256": "556d66c92011a04694b902b839e73138a3dc4beaa469564b1108a26af3da7130"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"path": "weaver-e10-workflow/tests/test_count_details_new_fields.py",
|
|
154
|
+
"role": "test-fixture",
|
|
155
|
+
"size": 11062,
|
|
156
|
+
"sha256": "d2d9162fdd91d36ff546660f0c4a6883a4ac3f47de272101a54120e1040e26ef"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"path": "weaver-e10-workflow/tests/test_e10_login_bin_discovery.py",
|
|
160
|
+
"role": "test-fixture",
|
|
161
|
+
"size": 6142,
|
|
162
|
+
"sha256": "b98f8dee8b7da8890fb2c44277bbfc6c61361a0fbc9afec25bc312f284a0441f"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"path": "weaver-e10-workflow/tests/test_e10_login_module_missing.py",
|
|
166
|
+
"role": "test-fixture",
|
|
167
|
+
"size": 5373,
|
|
168
|
+
"sha256": "e476ea2d424ae68971801f0d62a3e4d7c03799c9176867ae1f7d57020ee7da9d"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"path": "weaver-e10-workflow/tests/test_memory_query_groups.py",
|
|
172
|
+
"role": "test-fixture",
|
|
173
|
+
"size": 6049,
|
|
174
|
+
"sha256": "7bb95283f472e7e2f0f058f6470ea50f6dd7fb965f0ff6cbf5b0af21f96d990f"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"path": "weaver-e10-workflow/tests/test_plan_draft_folding.py",
|
|
178
|
+
"role": "test-fixture",
|
|
179
|
+
"size": 5644,
|
|
180
|
+
"sha256": "1ca2764841ba3542707b5371de2708eb9b82df6d57338089098873cb27df6fb7"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"path": "weaver-e10-workflow/tests/test_session_map_resolve.py",
|
|
184
|
+
"role": "test-fixture",
|
|
185
|
+
"size": 5643,
|
|
186
|
+
"sha256": "d5fcd26ee18b3fae72b0bf6a38bf39ff0cb1ae85e43423c4b6ab4024548aa217"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"path": "weaver-e10-workflow/tests/test_unified_workflow_query.py",
|
|
190
|
+
"role": "test-fixture",
|
|
191
|
+
"size": 2928,
|
|
192
|
+
"sha256": "1904847ae9b69310a696dd1ba27fa2c9c66b752df64e9a0dea4806769d8b0f08"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"path": "weaver-e10-workflow/tests/test_workflow_create.py",
|
|
196
|
+
"role": "test-fixture",
|
|
197
|
+
"size": 60102,
|
|
198
|
+
"sha256": "3c79fbae97b100543fdbfe7165adda9ec6a317b066386726cf5bb7afec98f753"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"path": "weaver-e10-workflow/tests/test_workflow_summary.py",
|
|
202
|
+
"role": "test-fixture",
|
|
203
|
+
"size": 4027,
|
|
204
|
+
"sha256": "b0ec31bc3917dab70737abe0abc3cd5760c9cdd6ab8a68c134cfc59c8429e8c5"
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
"sourceChunks": [
|
|
208
|
+
{
|
|
209
|
+
"id": "workflow.search",
|
|
210
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-search.md",
|
|
211
|
+
"mapsToOperations": [
|
|
212
|
+
"workflow.search",
|
|
213
|
+
"workflow.todoStat"
|
|
214
|
+
],
|
|
215
|
+
"mapsToReferences": [
|
|
216
|
+
"references/workflow-query.md"
|
|
217
|
+
]
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "workflow.todoStat",
|
|
221
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-todo-stat.md",
|
|
222
|
+
"mapsToOperations": [
|
|
223
|
+
"workflow.search",
|
|
224
|
+
"workflow.todoStat"
|
|
225
|
+
],
|
|
226
|
+
"mapsToReferences": [
|
|
227
|
+
"references/workflow-query.md"
|
|
228
|
+
]
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"id": "workflow.rendering",
|
|
232
|
+
"sourcePath": "weaver-e10-workflow/references/rendering.md",
|
|
233
|
+
"mapsToOperations": [
|
|
234
|
+
"workflow.memoryPrompt",
|
|
235
|
+
"workflow.pageOpen",
|
|
236
|
+
"workflow.search",
|
|
237
|
+
"workflow.todoStat"
|
|
238
|
+
],
|
|
239
|
+
"mapsToReferences": [
|
|
240
|
+
"references/workflow-query.md",
|
|
241
|
+
"references/workflow-agent-entry.md"
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "workflow.view",
|
|
246
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-view.md",
|
|
247
|
+
"mapsToOperations": [
|
|
248
|
+
"workflow.detail",
|
|
249
|
+
"workflow.open",
|
|
250
|
+
"workflow.pageOpen",
|
|
251
|
+
"workflow.requestLog",
|
|
252
|
+
"workflow.summary"
|
|
253
|
+
],
|
|
254
|
+
"mapsToReferences": [
|
|
255
|
+
"references/workflow-view.md"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "workflow.pageOpen",
|
|
260
|
+
"sourcePath": "weaver-e10-workflow/references/page-open.md",
|
|
261
|
+
"mapsToOperations": [
|
|
262
|
+
"workflow.detail",
|
|
263
|
+
"workflow.open",
|
|
264
|
+
"workflow.pageOpen",
|
|
265
|
+
"workflow.requestLog",
|
|
266
|
+
"workflow.summary"
|
|
267
|
+
],
|
|
268
|
+
"mapsToReferences": [
|
|
269
|
+
"references/workflow-view.md"
|
|
270
|
+
]
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "workflow.operate",
|
|
274
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-operate.md",
|
|
275
|
+
"mapsToOperations": [
|
|
276
|
+
"workflow.operateApply",
|
|
277
|
+
"workflow.operatePrepare"
|
|
278
|
+
],
|
|
279
|
+
"mapsToReferences": [
|
|
280
|
+
"references/workflow-operate.md"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": "workflow.batch",
|
|
285
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-batch.md",
|
|
286
|
+
"mapsToOperations": [
|
|
287
|
+
"workflow.batchForward",
|
|
288
|
+
"workflow.batchRead",
|
|
289
|
+
"workflow.batchReject",
|
|
290
|
+
"workflow.batchShare",
|
|
291
|
+
"workflow.batchSubmit",
|
|
292
|
+
"workflow.batchSupervise"
|
|
293
|
+
],
|
|
294
|
+
"mapsToReferences": [
|
|
295
|
+
"references/workflow-batch.md"
|
|
296
|
+
]
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"id": "workflow.share",
|
|
300
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-share.md",
|
|
301
|
+
"mapsToOperations": [
|
|
302
|
+
"workflow.shareApply",
|
|
303
|
+
"workflow.sharePrepare"
|
|
304
|
+
],
|
|
305
|
+
"mapsToReferences": [
|
|
306
|
+
"references/workflow-share.md"
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"id": "workflow.create",
|
|
311
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-create.md",
|
|
312
|
+
"mapsToOperations": [
|
|
313
|
+
"workflow.createApply",
|
|
314
|
+
"workflow.createForm",
|
|
315
|
+
"workflow.createList",
|
|
316
|
+
"workflow.createPrepare"
|
|
317
|
+
],
|
|
318
|
+
"mapsToReferences": [
|
|
319
|
+
"references/workflow-create.md"
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "workflow.edit",
|
|
324
|
+
"sourcePath": "weaver-e10-workflow/references/workflow-edit.md",
|
|
325
|
+
"mapsToOperations": [
|
|
326
|
+
"workflow.editApply",
|
|
327
|
+
"workflow.editLoad",
|
|
328
|
+
"workflow.editPrepare"
|
|
329
|
+
],
|
|
330
|
+
"mapsToReferences": [
|
|
331
|
+
"references/workflow-edit.md"
|
|
332
|
+
]
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"id": "workflow.memory",
|
|
336
|
+
"sourcePath": "weaver-e10-workflow/references/memory-rules.md",
|
|
337
|
+
"mapsToOperations": [
|
|
338
|
+
"workflow.memoryExtract",
|
|
339
|
+
"workflow.memoryPrompt"
|
|
340
|
+
],
|
|
341
|
+
"mapsToReferences": [
|
|
342
|
+
"references/workflow-memory.md"
|
|
343
|
+
]
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
"operationImpact": {
|
|
347
|
+
"workflow.search": {
|
|
348
|
+
"sourceChunkIds": [
|
|
349
|
+
"workflow.rendering",
|
|
350
|
+
"workflow.search",
|
|
351
|
+
"workflow.todoStat"
|
|
352
|
+
],
|
|
353
|
+
"schemaFields": [
|
|
354
|
+
"category",
|
|
355
|
+
"tabid",
|
|
356
|
+
"tabName",
|
|
357
|
+
"subCategory",
|
|
358
|
+
"keyword",
|
|
359
|
+
"creator",
|
|
360
|
+
"creatorDept",
|
|
361
|
+
"creatorSubcom",
|
|
362
|
+
"workflowType",
|
|
363
|
+
"workflow",
|
|
364
|
+
"workflowTerm",
|
|
365
|
+
"requestName",
|
|
366
|
+
"requestNameTerm",
|
|
367
|
+
"requestMark",
|
|
368
|
+
"requestMarkTerm",
|
|
369
|
+
"requestLevel",
|
|
370
|
+
"requestId",
|
|
371
|
+
"exRequestId",
|
|
372
|
+
"nodeId",
|
|
373
|
+
"nodeIdTerm",
|
|
374
|
+
"flowStatus",
|
|
375
|
+
"flowStatusTerm",
|
|
376
|
+
"createTime",
|
|
377
|
+
"operateTime",
|
|
378
|
+
"receiveTime",
|
|
379
|
+
"finishTime",
|
|
380
|
+
"filterFields",
|
|
381
|
+
"sort",
|
|
382
|
+
"current",
|
|
383
|
+
"pageSize",
|
|
384
|
+
"conditionType",
|
|
385
|
+
"totalOnly",
|
|
386
|
+
"batchType",
|
|
387
|
+
"planJson",
|
|
388
|
+
"queryJson"
|
|
389
|
+
],
|
|
390
|
+
"references": [
|
|
391
|
+
"references/workflow-query.md"
|
|
392
|
+
],
|
|
393
|
+
"tests": [
|
|
394
|
+
"test/business/workflow-operations.test.ts"
|
|
395
|
+
],
|
|
396
|
+
"risk": "read",
|
|
397
|
+
"requiresConfirmationChain": false
|
|
398
|
+
},
|
|
399
|
+
"workflow.todoStat": {
|
|
400
|
+
"sourceChunkIds": [
|
|
401
|
+
"workflow.rendering",
|
|
402
|
+
"workflow.search",
|
|
403
|
+
"workflow.todoStat"
|
|
404
|
+
],
|
|
405
|
+
"schemaFields": [
|
|
406
|
+
"category",
|
|
407
|
+
"subCategory",
|
|
408
|
+
"tabid",
|
|
409
|
+
"tabName",
|
|
410
|
+
"creator",
|
|
411
|
+
"creatorDept",
|
|
412
|
+
"workflowType",
|
|
413
|
+
"workflow",
|
|
414
|
+
"requestLevel",
|
|
415
|
+
"requestName",
|
|
416
|
+
"requestMark",
|
|
417
|
+
"createTime",
|
|
418
|
+
"receiveTime",
|
|
419
|
+
"finishTime",
|
|
420
|
+
"filterFields",
|
|
421
|
+
"nodeId",
|
|
422
|
+
"requestId",
|
|
423
|
+
"exRequestId",
|
|
424
|
+
"conditionType",
|
|
425
|
+
"sort"
|
|
426
|
+
],
|
|
427
|
+
"references": [
|
|
428
|
+
"references/workflow-query.md"
|
|
429
|
+
],
|
|
430
|
+
"tests": [
|
|
431
|
+
"test/business/workflow-operations.test.ts"
|
|
432
|
+
],
|
|
433
|
+
"risk": "read",
|
|
434
|
+
"requiresConfirmationChain": false
|
|
435
|
+
},
|
|
436
|
+
"workflow.detail": {
|
|
437
|
+
"sourceChunkIds": [
|
|
438
|
+
"workflow.pageOpen",
|
|
439
|
+
"workflow.view"
|
|
440
|
+
],
|
|
441
|
+
"schemaFields": [
|
|
442
|
+
"requestId",
|
|
443
|
+
"index",
|
|
444
|
+
"group",
|
|
445
|
+
"requestLogCurrent",
|
|
446
|
+
"requestLogPageSize"
|
|
447
|
+
],
|
|
448
|
+
"references": [
|
|
449
|
+
"references/workflow-view.md"
|
|
450
|
+
],
|
|
451
|
+
"tests": [
|
|
452
|
+
"test/business/workflow-operations.test.ts"
|
|
453
|
+
],
|
|
454
|
+
"risk": "read",
|
|
455
|
+
"requiresConfirmationChain": false
|
|
456
|
+
},
|
|
457
|
+
"workflow.summary": {
|
|
458
|
+
"sourceChunkIds": [
|
|
459
|
+
"workflow.pageOpen",
|
|
460
|
+
"workflow.view"
|
|
461
|
+
],
|
|
462
|
+
"schemaFields": [
|
|
463
|
+
"requestId",
|
|
464
|
+
"index",
|
|
465
|
+
"group",
|
|
466
|
+
"summaryFields"
|
|
467
|
+
],
|
|
468
|
+
"references": [
|
|
469
|
+
"references/workflow-view.md"
|
|
470
|
+
],
|
|
471
|
+
"tests": [
|
|
472
|
+
"test/business/workflow-operations.test.ts"
|
|
473
|
+
],
|
|
474
|
+
"risk": "read",
|
|
475
|
+
"requiresConfirmationChain": false
|
|
476
|
+
},
|
|
477
|
+
"workflow.open": {
|
|
478
|
+
"sourceChunkIds": [
|
|
479
|
+
"workflow.pageOpen",
|
|
480
|
+
"workflow.view"
|
|
481
|
+
],
|
|
482
|
+
"schemaFields": [
|
|
483
|
+
"requestId",
|
|
484
|
+
"index",
|
|
485
|
+
"group",
|
|
486
|
+
"openMode",
|
|
487
|
+
"noOpen"
|
|
488
|
+
],
|
|
489
|
+
"references": [
|
|
490
|
+
"references/workflow-view.md"
|
|
491
|
+
],
|
|
492
|
+
"tests": [
|
|
493
|
+
"test/business/workflow-operations.test.ts"
|
|
494
|
+
],
|
|
495
|
+
"risk": "read",
|
|
496
|
+
"requiresConfirmationChain": false
|
|
497
|
+
},
|
|
498
|
+
"workflow.requestLog": {
|
|
499
|
+
"sourceChunkIds": [
|
|
500
|
+
"workflow.pageOpen",
|
|
501
|
+
"workflow.view"
|
|
502
|
+
],
|
|
503
|
+
"schemaFields": [
|
|
504
|
+
"requestId",
|
|
505
|
+
"current",
|
|
506
|
+
"pageSize"
|
|
507
|
+
],
|
|
508
|
+
"references": [
|
|
509
|
+
"references/workflow-view.md"
|
|
510
|
+
],
|
|
511
|
+
"tests": [
|
|
512
|
+
"test/business/workflow-operations.test.ts"
|
|
513
|
+
],
|
|
514
|
+
"risk": "read",
|
|
515
|
+
"requiresConfirmationChain": false
|
|
516
|
+
},
|
|
517
|
+
"workflow.pageOpen": {
|
|
518
|
+
"sourceChunkIds": [
|
|
519
|
+
"workflow.pageOpen",
|
|
520
|
+
"workflow.rendering",
|
|
521
|
+
"workflow.view"
|
|
522
|
+
],
|
|
523
|
+
"schemaFields": [
|
|
524
|
+
"page",
|
|
525
|
+
"workflowId",
|
|
526
|
+
"requestId",
|
|
527
|
+
"openMode",
|
|
528
|
+
"noOpen"
|
|
529
|
+
],
|
|
530
|
+
"references": [
|
|
531
|
+
"references/workflow-view.md"
|
|
532
|
+
],
|
|
533
|
+
"tests": [
|
|
534
|
+
"test/business/workflow-operations.test.ts"
|
|
535
|
+
],
|
|
536
|
+
"risk": "read",
|
|
537
|
+
"requiresConfirmationChain": false
|
|
538
|
+
},
|
|
539
|
+
"workflow.memoryPrompt": {
|
|
540
|
+
"sourceChunkIds": [
|
|
541
|
+
"workflow.memory",
|
|
542
|
+
"workflow.rendering"
|
|
543
|
+
],
|
|
544
|
+
"schemaFields": [
|
|
545
|
+
"workflowId"
|
|
546
|
+
],
|
|
547
|
+
"references": [
|
|
548
|
+
"references/workflow-memory.md"
|
|
549
|
+
],
|
|
550
|
+
"tests": [
|
|
551
|
+
"test/business/workflow-operations.test.ts"
|
|
552
|
+
],
|
|
553
|
+
"risk": "read",
|
|
554
|
+
"requiresConfirmationChain": false
|
|
555
|
+
},
|
|
556
|
+
"workflow.createList": {
|
|
557
|
+
"sourceChunkIds": [
|
|
558
|
+
"workflow.create"
|
|
559
|
+
],
|
|
560
|
+
"schemaFields": [
|
|
561
|
+
"name",
|
|
562
|
+
"workflowId"
|
|
563
|
+
],
|
|
564
|
+
"references": [
|
|
565
|
+
"references/workflow-create.md"
|
|
566
|
+
],
|
|
567
|
+
"tests": [
|
|
568
|
+
"test/business/workflow-operations.test.ts"
|
|
569
|
+
],
|
|
570
|
+
"risk": "read",
|
|
571
|
+
"requiresConfirmationChain": false
|
|
572
|
+
},
|
|
573
|
+
"workflow.createForm": {
|
|
574
|
+
"sourceChunkIds": [
|
|
575
|
+
"workflow.create"
|
|
576
|
+
],
|
|
577
|
+
"schemaFields": [
|
|
578
|
+
"workflowId",
|
|
579
|
+
"relatesTo"
|
|
580
|
+
],
|
|
581
|
+
"references": [
|
|
582
|
+
"references/workflow-create.md"
|
|
583
|
+
],
|
|
584
|
+
"tests": [
|
|
585
|
+
"test/business/workflow-operations.test.ts"
|
|
586
|
+
],
|
|
587
|
+
"risk": "read",
|
|
588
|
+
"requiresConfirmationChain": false
|
|
589
|
+
},
|
|
590
|
+
"workflow.createPrepare": {
|
|
591
|
+
"sourceChunkIds": [
|
|
592
|
+
"workflow.create"
|
|
593
|
+
],
|
|
594
|
+
"schemaFields": [
|
|
595
|
+
"context",
|
|
596
|
+
"data",
|
|
597
|
+
"requestName",
|
|
598
|
+
"requestLevel",
|
|
599
|
+
"secLevel",
|
|
600
|
+
"remark",
|
|
601
|
+
"intent"
|
|
602
|
+
],
|
|
603
|
+
"references": [
|
|
604
|
+
"references/workflow-create.md"
|
|
605
|
+
],
|
|
606
|
+
"tests": [
|
|
607
|
+
"test/business/workflow-operations.test.ts"
|
|
608
|
+
],
|
|
609
|
+
"risk": "read-before-write",
|
|
610
|
+
"requiresConfirmationChain": true
|
|
611
|
+
},
|
|
612
|
+
"workflow.createApply": {
|
|
613
|
+
"sourceChunkIds": [
|
|
614
|
+
"workflow.create"
|
|
615
|
+
],
|
|
616
|
+
"schemaFields": [
|
|
617
|
+
"context",
|
|
618
|
+
"confirm",
|
|
619
|
+
"intent",
|
|
620
|
+
"question",
|
|
621
|
+
"verificationConfirmed"
|
|
622
|
+
],
|
|
623
|
+
"references": [
|
|
624
|
+
"references/workflow-create.md"
|
|
625
|
+
],
|
|
626
|
+
"tests": [
|
|
627
|
+
"test/business/workflow-operations.test.ts"
|
|
628
|
+
],
|
|
629
|
+
"risk": "high-risk-write",
|
|
630
|
+
"requiresConfirmationChain": true
|
|
631
|
+
},
|
|
632
|
+
"workflow.editLoad": {
|
|
633
|
+
"sourceChunkIds": [
|
|
634
|
+
"workflow.edit"
|
|
635
|
+
],
|
|
636
|
+
"schemaFields": [
|
|
637
|
+
"requestId"
|
|
638
|
+
],
|
|
639
|
+
"references": [
|
|
640
|
+
"references/workflow-edit.md"
|
|
641
|
+
],
|
|
642
|
+
"tests": [
|
|
643
|
+
"test/business/workflow-operations.test.ts"
|
|
644
|
+
],
|
|
645
|
+
"risk": "read",
|
|
646
|
+
"requiresConfirmationChain": false
|
|
647
|
+
},
|
|
648
|
+
"workflow.editPrepare": {
|
|
649
|
+
"sourceChunkIds": [
|
|
650
|
+
"workflow.edit"
|
|
651
|
+
],
|
|
652
|
+
"schemaFields": [
|
|
653
|
+
"context",
|
|
654
|
+
"data"
|
|
655
|
+
],
|
|
656
|
+
"references": [
|
|
657
|
+
"references/workflow-edit.md"
|
|
658
|
+
],
|
|
659
|
+
"tests": [
|
|
660
|
+
"test/business/workflow-operations.test.ts"
|
|
661
|
+
],
|
|
662
|
+
"risk": "read-before-write",
|
|
663
|
+
"requiresConfirmationChain": true
|
|
664
|
+
},
|
|
665
|
+
"workflow.editApply": {
|
|
666
|
+
"sourceChunkIds": [
|
|
667
|
+
"workflow.edit"
|
|
668
|
+
],
|
|
669
|
+
"schemaFields": [
|
|
670
|
+
"context",
|
|
671
|
+
"confirm"
|
|
672
|
+
],
|
|
673
|
+
"references": [
|
|
674
|
+
"references/workflow-edit.md"
|
|
675
|
+
],
|
|
676
|
+
"tests": [
|
|
677
|
+
"test/business/workflow-operations.test.ts"
|
|
678
|
+
],
|
|
679
|
+
"risk": "high-risk-write",
|
|
680
|
+
"requiresConfirmationChain": true
|
|
681
|
+
},
|
|
682
|
+
"workflow.operatePrepare": {
|
|
683
|
+
"sourceChunkIds": [
|
|
684
|
+
"workflow.operate"
|
|
685
|
+
],
|
|
686
|
+
"schemaFields": [
|
|
687
|
+
"requestId",
|
|
688
|
+
"group",
|
|
689
|
+
"index",
|
|
690
|
+
"action",
|
|
691
|
+
"opinion",
|
|
692
|
+
"receiverName",
|
|
693
|
+
"agent",
|
|
694
|
+
"rejectType",
|
|
695
|
+
"nodeid",
|
|
696
|
+
"deleteType",
|
|
697
|
+
"otherParamJson"
|
|
698
|
+
],
|
|
699
|
+
"references": [
|
|
700
|
+
"references/workflow-operate.md"
|
|
701
|
+
],
|
|
702
|
+
"tests": [
|
|
703
|
+
"test/business/workflow-operations.test.ts"
|
|
704
|
+
],
|
|
705
|
+
"risk": "read-before-write",
|
|
706
|
+
"requiresConfirmationChain": true
|
|
707
|
+
},
|
|
708
|
+
"workflow.operateApply": {
|
|
709
|
+
"sourceChunkIds": [
|
|
710
|
+
"workflow.operate"
|
|
711
|
+
],
|
|
712
|
+
"schemaFields": [
|
|
713
|
+
"requestId",
|
|
714
|
+
"group",
|
|
715
|
+
"index",
|
|
716
|
+
"action",
|
|
717
|
+
"opinion",
|
|
718
|
+
"receiverName",
|
|
719
|
+
"agent",
|
|
720
|
+
"rejectType",
|
|
721
|
+
"nodeid",
|
|
722
|
+
"deleteType",
|
|
723
|
+
"otherParamJson",
|
|
724
|
+
"continuation",
|
|
725
|
+
"confirm"
|
|
726
|
+
],
|
|
727
|
+
"references": [
|
|
728
|
+
"references/workflow-operate.md"
|
|
729
|
+
],
|
|
730
|
+
"tests": [
|
|
731
|
+
"test/business/workflow-operations.test.ts"
|
|
732
|
+
],
|
|
733
|
+
"risk": "high-risk-write",
|
|
734
|
+
"requiresConfirmationChain": true
|
|
735
|
+
},
|
|
736
|
+
"workflow.sharePrepare": {
|
|
737
|
+
"sourceChunkIds": [
|
|
738
|
+
"workflow.share"
|
|
739
|
+
],
|
|
740
|
+
"schemaFields": [
|
|
741
|
+
"requestId",
|
|
742
|
+
"group",
|
|
743
|
+
"index",
|
|
744
|
+
"shareObjects",
|
|
745
|
+
"minSeclevel",
|
|
746
|
+
"maxSeclevel"
|
|
747
|
+
],
|
|
748
|
+
"references": [
|
|
749
|
+
"references/workflow-share.md"
|
|
750
|
+
],
|
|
751
|
+
"tests": [
|
|
752
|
+
"test/business/workflow-operations.test.ts"
|
|
753
|
+
],
|
|
754
|
+
"risk": "read-before-write",
|
|
755
|
+
"requiresConfirmationChain": true
|
|
756
|
+
},
|
|
757
|
+
"workflow.shareApply": {
|
|
758
|
+
"sourceChunkIds": [
|
|
759
|
+
"workflow.share"
|
|
760
|
+
],
|
|
761
|
+
"schemaFields": [
|
|
762
|
+
"requestId",
|
|
763
|
+
"group",
|
|
764
|
+
"index",
|
|
765
|
+
"shareObjects",
|
|
766
|
+
"minSeclevel",
|
|
767
|
+
"maxSeclevel",
|
|
768
|
+
"continuation",
|
|
769
|
+
"confirm"
|
|
770
|
+
],
|
|
771
|
+
"references": [
|
|
772
|
+
"references/workflow-share.md"
|
|
773
|
+
],
|
|
774
|
+
"tests": [
|
|
775
|
+
"test/business/workflow-operations.test.ts"
|
|
776
|
+
],
|
|
777
|
+
"risk": "high-risk-write",
|
|
778
|
+
"requiresConfirmationChain": true
|
|
779
|
+
},
|
|
780
|
+
"workflow.batchSubmit": {
|
|
781
|
+
"sourceChunkIds": [
|
|
782
|
+
"workflow.batch"
|
|
783
|
+
],
|
|
784
|
+
"schemaFields": [
|
|
785
|
+
"requestIds",
|
|
786
|
+
"remark",
|
|
787
|
+
"batchSize",
|
|
788
|
+
"category",
|
|
789
|
+
"confirm"
|
|
790
|
+
],
|
|
791
|
+
"references": [
|
|
792
|
+
"references/workflow-batch.md"
|
|
793
|
+
],
|
|
794
|
+
"tests": [
|
|
795
|
+
"test/business/workflow-operations.test.ts"
|
|
796
|
+
],
|
|
797
|
+
"risk": "high-risk-write",
|
|
798
|
+
"requiresConfirmationChain": true
|
|
799
|
+
},
|
|
800
|
+
"workflow.batchRead": {
|
|
801
|
+
"sourceChunkIds": [
|
|
802
|
+
"workflow.batch"
|
|
803
|
+
],
|
|
804
|
+
"schemaFields": [
|
|
805
|
+
"requestIds",
|
|
806
|
+
"batchSize",
|
|
807
|
+
"confirm"
|
|
808
|
+
],
|
|
809
|
+
"references": [
|
|
810
|
+
"references/workflow-batch.md"
|
|
811
|
+
],
|
|
812
|
+
"tests": [
|
|
813
|
+
"test/business/workflow-operations.test.ts"
|
|
814
|
+
],
|
|
815
|
+
"risk": "high-risk-write",
|
|
816
|
+
"requiresConfirmationChain": true
|
|
817
|
+
},
|
|
818
|
+
"workflow.batchSupervise": {
|
|
819
|
+
"sourceChunkIds": [
|
|
820
|
+
"workflow.batch"
|
|
821
|
+
],
|
|
822
|
+
"schemaFields": [
|
|
823
|
+
"requestIds",
|
|
824
|
+
"remark",
|
|
825
|
+
"currentOperator",
|
|
826
|
+
"messageRemind",
|
|
827
|
+
"emailRemind",
|
|
828
|
+
"doneOperator",
|
|
829
|
+
"ccOperator",
|
|
830
|
+
"submitOperator",
|
|
831
|
+
"otherReminder",
|
|
832
|
+
"batchSize",
|
|
833
|
+
"confirm"
|
|
834
|
+
],
|
|
835
|
+
"references": [
|
|
836
|
+
"references/workflow-batch.md"
|
|
837
|
+
],
|
|
838
|
+
"tests": [
|
|
839
|
+
"test/business/workflow-operations.test.ts"
|
|
840
|
+
],
|
|
841
|
+
"risk": "high-risk-write",
|
|
842
|
+
"requiresConfirmationChain": true
|
|
843
|
+
},
|
|
844
|
+
"workflow.batchShare": {
|
|
845
|
+
"sourceChunkIds": [
|
|
846
|
+
"workflow.batch"
|
|
847
|
+
],
|
|
848
|
+
"schemaFields": [
|
|
849
|
+
"requestIds",
|
|
850
|
+
"shareObjects",
|
|
851
|
+
"minSeclevel",
|
|
852
|
+
"maxSeclevel",
|
|
853
|
+
"batchSize",
|
|
854
|
+
"confirm"
|
|
855
|
+
],
|
|
856
|
+
"references": [
|
|
857
|
+
"references/workflow-batch.md"
|
|
858
|
+
],
|
|
859
|
+
"tests": [
|
|
860
|
+
"test/business/workflow-operations.test.ts"
|
|
861
|
+
],
|
|
862
|
+
"risk": "high-risk-write",
|
|
863
|
+
"requiresConfirmationChain": true
|
|
864
|
+
},
|
|
865
|
+
"workflow.batchForward": {
|
|
866
|
+
"sourceChunkIds": [
|
|
867
|
+
"workflow.batch"
|
|
868
|
+
],
|
|
869
|
+
"schemaFields": [
|
|
870
|
+
"requestIds",
|
|
871
|
+
"receiveTargets",
|
|
872
|
+
"remark",
|
|
873
|
+
"batchSize",
|
|
874
|
+
"confirm"
|
|
875
|
+
],
|
|
876
|
+
"references": [
|
|
877
|
+
"references/workflow-batch.md"
|
|
878
|
+
],
|
|
879
|
+
"tests": [
|
|
880
|
+
"test/business/workflow-operations.test.ts"
|
|
881
|
+
],
|
|
882
|
+
"risk": "high-risk-write",
|
|
883
|
+
"requiresConfirmationChain": true
|
|
884
|
+
},
|
|
885
|
+
"workflow.batchReject": {
|
|
886
|
+
"sourceChunkIds": [
|
|
887
|
+
"workflow.batch"
|
|
888
|
+
],
|
|
889
|
+
"schemaFields": [
|
|
890
|
+
"requestIds",
|
|
891
|
+
"remark",
|
|
892
|
+
"batchSize",
|
|
893
|
+
"confirm"
|
|
894
|
+
],
|
|
895
|
+
"references": [
|
|
896
|
+
"references/workflow-batch.md"
|
|
897
|
+
],
|
|
898
|
+
"tests": [
|
|
899
|
+
"test/business/workflow-operations.test.ts"
|
|
900
|
+
],
|
|
901
|
+
"risk": "high-risk-write",
|
|
902
|
+
"requiresConfirmationChain": true
|
|
903
|
+
},
|
|
904
|
+
"workflow.memoryExtract": {
|
|
905
|
+
"sourceChunkIds": [
|
|
906
|
+
"workflow.memory"
|
|
907
|
+
],
|
|
908
|
+
"schemaFields": [
|
|
909
|
+
"msgList",
|
|
910
|
+
"userMessage",
|
|
911
|
+
"assistantMessage",
|
|
912
|
+
"dynamicContext",
|
|
913
|
+
"workflowId",
|
|
914
|
+
"memoryAppId",
|
|
915
|
+
"async"
|
|
916
|
+
],
|
|
917
|
+
"references": [
|
|
918
|
+
"references/workflow-memory.md"
|
|
919
|
+
],
|
|
920
|
+
"tests": [
|
|
921
|
+
"test/business/workflow-operations.test.ts"
|
|
922
|
+
],
|
|
923
|
+
"risk": "write",
|
|
924
|
+
"requiresConfirmationChain": false
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"artifactBaseline": {
|
|
928
|
+
"aggregateSha256": "132371c2cb2a0fdd55d05bc20f74078f52ad845c759893167b454f2731e618dd",
|
|
929
|
+
"files": [
|
|
930
|
+
{
|
|
931
|
+
"path": "skills/weaver-e10-workflow/references/workflow-agent-entry.md",
|
|
932
|
+
"size": 6090,
|
|
933
|
+
"sha256": "881a99d43b3379804fab5dc1af6911f4646ae4599e8f85dbd1a724598481eeb7"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"path": "skills/weaver-e10-workflow/references/workflow-batch.md",
|
|
937
|
+
"size": 17896,
|
|
938
|
+
"sha256": "12a7108e308dc85d444eb022d60fce190f34cb6e3fea31895b73ae15eec11b8c"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"path": "skills/weaver-e10-workflow/references/workflow-create.md",
|
|
942
|
+
"size": 23807,
|
|
943
|
+
"sha256": "43dd2ac24dd52808e378a314936bce7febf61604c0e7a555505e39336794c66f"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"path": "skills/weaver-e10-workflow/references/workflow-edit.md",
|
|
947
|
+
"size": 6304,
|
|
948
|
+
"sha256": "bab0bf3b7af9cf1b71525ed79904af1477a698be7d6c45560394246cce97a560"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"path": "skills/weaver-e10-workflow/references/workflow-memory.md",
|
|
952
|
+
"size": 11504,
|
|
953
|
+
"sha256": "fce9c85d272a7a38f4dffd352aa832346a29cf0d152591a861a33b8e581bded0"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"path": "skills/weaver-e10-workflow/references/workflow-operate.md",
|
|
957
|
+
"size": 9605,
|
|
958
|
+
"sha256": "f66d53b697a0d5f4aea16fcad201c73b5c31cf15d1544352d61e95b379c77e7a"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"path": "skills/weaver-e10-workflow/references/workflow-query.md",
|
|
962
|
+
"size": 105456,
|
|
963
|
+
"sha256": "7717a8c5978874598cc89bf6cc3813d06a5b0402c0e4937218b0e9c887f02160"
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"path": "skills/weaver-e10-workflow/references/workflow-share.md",
|
|
967
|
+
"size": 6330,
|
|
968
|
+
"sha256": "e913e7f1463f83806f2cfffffa37bc8bd8dd4b3455e8fc09d0397f37805862e2"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"path": "skills/weaver-e10-workflow/references/workflow-view.md",
|
|
972
|
+
"size": 10275,
|
|
973
|
+
"sha256": "e2b3a1651706919d0a64dfe7b3861f0accbc6a5aea893eebfa299b52832fea1d"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"path": "skills/weaver-e10-workflow/SKILL.md",
|
|
977
|
+
"size": 35688,
|
|
978
|
+
"sha256": "ecfc4dd67a5389734698eca85d57ab688a0fb0e364db7e2ac5b35f539470aca8"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"path": "src/shortcuts/workflow/continuation.ts",
|
|
982
|
+
"size": 30337,
|
|
983
|
+
"sha256": "5e0f18be2f792dfc551ad496c787d2de68024b560e7157487a494bb080623684"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"path": "src/shortcuts/workflow/endpoints.ts",
|
|
987
|
+
"size": 8746,
|
|
988
|
+
"sha256": "490feb006934f5994ff64f69b517cf99e81b9bd324315d68f31f37e1e3eac873"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"path": "src/shortcuts/workflow/errors.ts",
|
|
992
|
+
"size": 6772,
|
|
993
|
+
"sha256": "674e865d661f686687103d93fbc92806fddfafbd1969d0b11366b9f41f9e9114"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"path": "src/shortcuts/workflow/host.ts",
|
|
997
|
+
"size": 10388,
|
|
998
|
+
"sha256": "7bf8bd3baea6400c278becfca0b2f144b505de8dab6e71c0005ad5d59eec86e8"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"path": "src/shortcuts/workflow/index.ts",
|
|
1002
|
+
"size": 4833,
|
|
1003
|
+
"sha256": "32940c87aa81111457e403b840afde29a777434b58a85e7224c78c01d57608c6"
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"path": "src/shortcuts/workflow/manifest.ts",
|
|
1007
|
+
"size": 1304,
|
|
1008
|
+
"sha256": "61667c88d1e87d9ffac4657e6b3e1775df9bae2991f00023de1009fb3c6c2e9f"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"path": "src/shortcuts/workflow/operations.ts",
|
|
1012
|
+
"size": 7416,
|
|
1013
|
+
"sha256": "430a4325b0273786bbd51def861461bac75db336d136e516f3b1fc7bc4e68780"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"path": "src/shortcuts/workflow/operations/form.ts",
|
|
1017
|
+
"size": 191256,
|
|
1018
|
+
"sha256": "2a7ee56ce0e8bc189d11ecd7bbe557769fe7c4489f182550abadb7210d0fc203"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"path": "src/shortcuts/workflow/operations/read.ts",
|
|
1022
|
+
"size": 194246,
|
|
1023
|
+
"sha256": "2a5045522214f14cb32b741bb93ebff1078f483729c2fc8f1d954400ad503581"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"path": "src/shortcuts/workflow/operations/registry.ts",
|
|
1027
|
+
"size": 1412,
|
|
1028
|
+
"sha256": "60072ec96bc88202b98cf86d2487219e7369d1bd8d161c08aaac914152a829ec"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"path": "src/shortcuts/workflow/operations/shared.ts",
|
|
1032
|
+
"size": 6886,
|
|
1033
|
+
"sha256": "5496922cb1807476f27b9da626b57b39fea020a4a267c70c2ae368e76a184544"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"path": "src/shortcuts/workflow/operations/types.ts",
|
|
1037
|
+
"size": 4238,
|
|
1038
|
+
"sha256": "e5c24cedeb00510fe58617a4121c6439dbeba44f0d511dcf046f6dbae444a5a3"
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"path": "src/shortcuts/workflow/operations/write.ts",
|
|
1042
|
+
"size": 102936,
|
|
1043
|
+
"sha256": "bce32b59b3df196d5e65a8df59df719e0ba452294d2881a4c05a0a398df604f1"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"path": "src/shortcuts/workflow/state.ts",
|
|
1047
|
+
"size": 8625,
|
|
1048
|
+
"sha256": "4e3d9a3848574269a64f891a06edf04c185fda5ebd4bc4fc394f151a02d26c6c"
|
|
1049
|
+
}
|
|
1050
|
+
]
|
|
1051
|
+
},
|
|
1052
|
+
"notes": [
|
|
1053
|
+
"源资料为本机已安装的 Python 脚本型 skill weaver-e10-workflow 1.0.105(SKILL.md + 11 个 references + scripts/ + tests/)。",
|
|
1054
|
+
"原 Python 认证线(e10-login subprocess + state/runtime-cache.json 缓存)整段丢弃,改由 weaver-work-cli 托管认证;state/ 目录不纳入源基线。",
|
|
1055
|
+
"原脚本用磁盘文件保存表单 context 与会话序号映射,CLI 改为 continuation **短句柄** + CLI 托管本地状态:载荷落 ~/.weaver-work-cli/state/workflow/continuation-pending/,模型只原样回传 wc-… 句柄(19 字符),不搬运载荷;V12.1.11 及更早签发的自包含签名令牌仍兼容。消费标记记录**执行阶段**(claimed 只抢到句柄未写入 / saving 已发出写入 / committed 服务端已成功回执 → succeeded 已回写结果):Apply 被重复执行时按阶段分流——已成功或已成功回执 → 幂等回报 ok:true + status=ALREADY_APPLIED(带 requestId/previousResult);已发出写入未确认 → partial/write_uncertain;只抢到句柄且进程已不在、超过宽限期 → 允许**安全重占**同句柄重试(validation/continuation_busy 表示仍在占用);旧版无数值标记 → continuation_consumed。一次性抢占以落盘创建本身为唯一判据(消除先查存在再写的 TOCTOU 重复写入窗口)。",
|
|
1056
|
+
"批量操作门禁的放行判据 = **最近一次查询结果的快照**(本地索引 search-index.json,对应 Python session_maps.json 的 latestQueryId.items),与 V11.3 cmd_batch_submit/load_session_maps 同源,门禁阶段**不查服务端**;实时批量端点(TODO_LIST_BATCH_<TYPE>,请求体 tabid 固定 '0')只用于补齐快照缺字段(典型是 userid),不参与放行判据——避免\"查询口径(workflow.search --batchType 解析出的 tabid)与门禁口径分叉\"把模型刚查到的流程判成不存在。",
|
|
1057
|
+
"批量写操作(2026-09-17):`workflow.batchSubmit` / `batchRead` / `batchSupervise` / `batchShare` / `batchForward` / `batchReject` 六个操作**全部改为一命令完成**,不再有 `xxxPrepare` + `xxxApply` 两阶段,因此也没有 `continuation` 字段。防重复写入改由「确定性幂等键(操作 + 租户 + 账号 + 这批 requestId + 写向对象)+ 60 秒有界保护窗口」的一次性写入闸门承担(`batchIdempotencyKey` / `claimBatchWrite`),`remark` / `batchSize` 不参与该判据,换收件人 / 共享对象 / 提醒人视为另一次操作。",
|
|
1058
|
+
"只读图表、人员姓名→ID 解析等能力不在本模块范围,分别由 weaver-e10-hrm 提供。",
|
|
1059
|
+
"表单字段判定与取值(2026-09-16 修复):① 字段元数据缺省 browserType 归一化为 {} 后,Python 的 bool({}) 为假、JS 的 Boolean({}) 恒真——照抄会让**每个字段**都被判成浏览按钮字段,文本/富文本字段随之走名称→ID 解析并报 BROWSER NOT FOUND(富文本内容永远写不进去);现改为判「非空对象」。② 人员范围(EmployeeScope)名称→ID 整段移植:按 type 调 /api/hrm/common/browser/complete/{resource|department|subcompany|channel|role|position|external} 解析,all/allExternal 走固定结构;0 命中剥离口语后缀重试一次;解析失败挂 ambiguities(NOT_FOUND/MULTIPLE_MATCHES/NOT_RESOLVED)原样上报,**绝不静默丢空 optionId**(空 optionId 会被 hasDetailValue 判为无值,整条值从保存体里消失)。③ prepare 签发的载荷是 payload:{context,prepared}(**平级**),buildCreateBody/buildEditSaveBody 曾误读 context.prepared(恒 undefined)⇒ flow/create 请求体构造抛 TypeError(流程创建不出来)、editSave 的 dataDetails 恒为空(改了字段却什么都没存);现统一走 resolvePrepared。",
|
|
1060
|
+
"产物基线(artifactBaseline)刷新规则:文件级 `path + size + sha256` 按实际产物复算,聚合指纹 = 上述列表按 path 排序后的稳定 JSON 的 sha256(与 test/skills/layout.test.ts 的 aggregateEntries 同一算法)。**基线不包含 source-manifest.json 自身**——记录自身哈希在数学上无法自洽(写入新哈希又改变文件内容),weaver-e10-yepiaotong 基线同样不含自身。"
|
|
1061
|
+
]
|
|
1062
|
+
}
|