@starci/skills 1.1.0 → 1.2.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/INDEX.md +3 -1
- package/INDEX.vi.md +3 -1
- package/README.md +6 -1
- package/README.vi.md +6 -1
- package/knowledge/ui/presentation/INDEX.md +5 -0
- package/knowledge/ui/presentation/INDEX.vi.md +1 -0
- package/knowledge/ui/presentation/radius.md +183 -0
- package/knowledge/ui/presentation/radius.vi.md +182 -0
- package/operators/INDEX.md +5 -5
- package/operators/INDEX.vi.md +5 -5
- package/operators/architecture-decide/operator.md +27 -4
- package/operators/architecture-decide/operator.vi.md +23 -4
- package/operators/architecture-decide/self-test.mjs +18 -1
- package/operators/architecture-decide/validate.mjs +29 -1
- package/operators/backend-source-apply/operator.md +197 -182
- package/operators/backend-source-apply/operator.vi.md +190 -178
- package/operators/backend-source-apply/self-test.mjs +257 -257
- package/operators/backend-source-apply/validate.mjs +240 -240
- package/operators/business-decide/self-test.mjs +2 -1
- package/operators/business-decide/validate.mjs +3 -0
- package/operators/content-generate/self-test.mjs +1 -1
- package/operators/frontend-direction-decide/self-test.mjs +1 -1
- package/operators/frontend-presentation-resolve/operator.md +6 -0
- package/operators/frontend-presentation-resolve/operator.vi.md +6 -0
- package/operators/frontend-presentation-resolve/self-test.mjs +6 -5
- package/operators/frontend-presentation-resolve/validate.mjs +30 -6
- package/operators/frontend-source-apply/operator.md +3 -1
- package/operators/frontend-source-apply/operator.vi.md +3 -1
- package/operators/frontend-source-apply/self-test.mjs +1 -1
- package/operators/frontend-surface-audit/self-test.mjs +1 -1
- package/operators/git-publish/self-test.mjs +1 -1
- package/operators/platform-operate/self-test.mjs +1 -1
- package/operators/quality-verify/operator.md +5 -1
- package/operators/quality-verify/operator.vi.md +5 -1
- package/operators/quality-verify/self-test.mjs +15 -2
- package/operators/quality-verify/validate.mjs +21 -1
- package/operators/release-deploy/self-test.mjs +235 -235
- package/operators/uat-verify/operator.md +20 -6
- package/operators/uat-verify/operator.vi.md +21 -7
- package/operators/uat-verify/self-test.mjs +6 -5
- package/operators/uat-verify/validate.mjs +10 -4
- package/operators/workspace-bind/operator.md +18 -4
- package/operators/workspace-bind/operator.vi.md +16 -4
- package/operators/workspace-bind/self-test.mjs +3 -1
- package/operators/workspace-bind/validate.mjs +1 -0
- package/package.json +1 -1
- package/readiness/initialization/workspaces/local-route.schema.json +1 -1
- package/resources/orchestrator.json +14 -8
- package/routing.json +2 -1
- package/scripts/validate-request.mjs +12 -1
- package/scripts/validate-response.mjs +14 -3
- package/scripts/validate-step.mjs +2 -1
- package/scripts/validate-workflows.mjs +8 -1
- package/templates/kinds/architecture-decision.contract.json +1 -0
- package/templates/kinds/architecture-decision.skeleton.md +6 -0
- package/templates/kinds/backend-source-application.contract.json +1 -1
- package/templates/kinds/backend-source-application.skeleton.md +1 -1
- package/templates/kinds/frontend-presentation-resolution.contract.json +1 -1
- package/templates/kinds/frontend-presentation-resolution.skeleton.md +1 -0
- package/templates/kinds/mutations.schema.json +65 -65
- package/templates/kinds/route.schema.json +4 -2
- package/templates/kinds/stack-model.schema.json +23 -1
- package/templates/kinds/workspace-route-binding.contract.json +2 -2
- package/templates/step/response.schema.json +10 -0
- package/templates/step/state.schema.json +205 -0
- package/workflows/README.md +3 -0
- package/workflows/README.vi.md +3 -0
- package/workflows/backend-feature.json +26 -5
- package/workflows/content-unit.json +4 -1
- package/workflows/frontend-new-surface.json +15 -5
- package/workflows/frontend-reconstruct.json +10 -4
- package/workflows/frontend-refine.json +10 -4
- package/workflows/frontend-with-uat.json +15 -3
- package/workflows/full-feature.json +31 -8
- package/workflows/release.json +7 -1
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
"requirements": {
|
|
28
28
|
"intent": "modify",
|
|
29
29
|
"changeLevel": "reconstruct"
|
|
30
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"asks": [
|
|
32
|
+
"target"
|
|
33
|
+
]
|
|
31
34
|
}
|
|
32
35
|
],
|
|
33
36
|
[
|
|
@@ -57,12 +60,21 @@
|
|
|
57
60
|
],
|
|
58
61
|
[
|
|
59
62
|
{
|
|
60
|
-
"operator": "uat.verify"
|
|
63
|
+
"operator": "uat.verify",
|
|
64
|
+
"asks": [
|
|
65
|
+
"requestedBy",
|
|
66
|
+
"feature",
|
|
67
|
+
"flow"
|
|
68
|
+
]
|
|
61
69
|
}
|
|
62
70
|
],
|
|
63
71
|
[
|
|
64
72
|
{
|
|
65
|
-
"operator": "git.publish"
|
|
73
|
+
"operator": "git.publish",
|
|
74
|
+
"asks": [
|
|
75
|
+
"boundary",
|
|
76
|
+
"approval"
|
|
77
|
+
]
|
|
66
78
|
}
|
|
67
79
|
]
|
|
68
80
|
],
|
|
@@ -16,8 +16,7 @@
|
|
|
16
16
|
{
|
|
17
17
|
"operator": "workspace.bind",
|
|
18
18
|
"requirements": {
|
|
19
|
-
"role": "fe"
|
|
20
|
-
"runtimeNeed": "consume"
|
|
19
|
+
"role": "fe"
|
|
21
20
|
}
|
|
22
21
|
}
|
|
23
22
|
],
|
|
@@ -26,7 +25,11 @@
|
|
|
26
25
|
"operator": "business.decide",
|
|
27
26
|
"requirements": {
|
|
28
27
|
"mode": "model"
|
|
29
|
-
}
|
|
28
|
+
},
|
|
29
|
+
"asks": [
|
|
30
|
+
"featureId",
|
|
31
|
+
"targetState"
|
|
32
|
+
]
|
|
30
33
|
}
|
|
31
34
|
],
|
|
32
35
|
[
|
|
@@ -35,19 +38,31 @@
|
|
|
35
38
|
"requirements": {
|
|
36
39
|
"alternatives": 1,
|
|
37
40
|
"selectionPolicy": "automatic"
|
|
38
|
-
}
|
|
41
|
+
},
|
|
42
|
+
"asks": [
|
|
43
|
+
"objective",
|
|
44
|
+
"constraints"
|
|
45
|
+
]
|
|
39
46
|
}
|
|
40
47
|
],
|
|
41
48
|
[
|
|
42
49
|
{
|
|
43
|
-
"operator": "backend.source.apply"
|
|
50
|
+
"operator": "backend.source.apply",
|
|
51
|
+
"asks": [
|
|
52
|
+
"featureId",
|
|
53
|
+
"outcome",
|
|
54
|
+
"mutableFileRefs"
|
|
55
|
+
]
|
|
44
56
|
},
|
|
45
57
|
{
|
|
46
58
|
"operator": "frontend.direction.decide",
|
|
47
59
|
"requirements": {
|
|
48
60
|
"intent": "create",
|
|
49
61
|
"changeLevel": "new"
|
|
50
|
-
}
|
|
62
|
+
},
|
|
63
|
+
"asks": [
|
|
64
|
+
"target"
|
|
65
|
+
]
|
|
51
66
|
}
|
|
52
67
|
],
|
|
53
68
|
[
|
|
@@ -83,12 +98,20 @@
|
|
|
83
98
|
"operator": "business.decide",
|
|
84
99
|
"requirements": {
|
|
85
100
|
"mode": "reconcile"
|
|
86
|
-
}
|
|
101
|
+
},
|
|
102
|
+
"asks": [
|
|
103
|
+
"featureId",
|
|
104
|
+
"targetState"
|
|
105
|
+
]
|
|
87
106
|
}
|
|
88
107
|
],
|
|
89
108
|
[
|
|
90
109
|
{
|
|
91
|
-
"operator": "git.publish"
|
|
110
|
+
"operator": "git.publish",
|
|
111
|
+
"asks": [
|
|
112
|
+
"boundary",
|
|
113
|
+
"approval"
|
|
114
|
+
]
|
|
92
115
|
}
|
|
93
116
|
]
|
|
94
117
|
],
|