@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.
Files changed (75) hide show
  1. package/INDEX.md +3 -1
  2. package/INDEX.vi.md +3 -1
  3. package/README.md +6 -1
  4. package/README.vi.md +6 -1
  5. package/knowledge/ui/presentation/INDEX.md +5 -0
  6. package/knowledge/ui/presentation/INDEX.vi.md +1 -0
  7. package/knowledge/ui/presentation/radius.md +183 -0
  8. package/knowledge/ui/presentation/radius.vi.md +182 -0
  9. package/operators/INDEX.md +5 -5
  10. package/operators/INDEX.vi.md +5 -5
  11. package/operators/architecture-decide/operator.md +27 -4
  12. package/operators/architecture-decide/operator.vi.md +23 -4
  13. package/operators/architecture-decide/self-test.mjs +18 -1
  14. package/operators/architecture-decide/validate.mjs +29 -1
  15. package/operators/backend-source-apply/operator.md +197 -182
  16. package/operators/backend-source-apply/operator.vi.md +190 -178
  17. package/operators/backend-source-apply/self-test.mjs +257 -257
  18. package/operators/backend-source-apply/validate.mjs +240 -240
  19. package/operators/business-decide/self-test.mjs +2 -1
  20. package/operators/business-decide/validate.mjs +3 -0
  21. package/operators/content-generate/self-test.mjs +1 -1
  22. package/operators/frontend-direction-decide/self-test.mjs +1 -1
  23. package/operators/frontend-presentation-resolve/operator.md +6 -0
  24. package/operators/frontend-presentation-resolve/operator.vi.md +6 -0
  25. package/operators/frontend-presentation-resolve/self-test.mjs +6 -5
  26. package/operators/frontend-presentation-resolve/validate.mjs +30 -6
  27. package/operators/frontend-source-apply/operator.md +3 -1
  28. package/operators/frontend-source-apply/operator.vi.md +3 -1
  29. package/operators/frontend-source-apply/self-test.mjs +1 -1
  30. package/operators/frontend-surface-audit/self-test.mjs +1 -1
  31. package/operators/git-publish/self-test.mjs +1 -1
  32. package/operators/platform-operate/self-test.mjs +1 -1
  33. package/operators/quality-verify/operator.md +5 -1
  34. package/operators/quality-verify/operator.vi.md +5 -1
  35. package/operators/quality-verify/self-test.mjs +15 -2
  36. package/operators/quality-verify/validate.mjs +21 -1
  37. package/operators/release-deploy/self-test.mjs +235 -235
  38. package/operators/uat-verify/operator.md +20 -6
  39. package/operators/uat-verify/operator.vi.md +21 -7
  40. package/operators/uat-verify/self-test.mjs +6 -5
  41. package/operators/uat-verify/validate.mjs +10 -4
  42. package/operators/workspace-bind/operator.md +18 -4
  43. package/operators/workspace-bind/operator.vi.md +16 -4
  44. package/operators/workspace-bind/self-test.mjs +3 -1
  45. package/operators/workspace-bind/validate.mjs +1 -0
  46. package/package.json +1 -1
  47. package/readiness/initialization/workspaces/local-route.schema.json +1 -1
  48. package/resources/orchestrator.json +14 -8
  49. package/routing.json +2 -1
  50. package/scripts/validate-request.mjs +12 -1
  51. package/scripts/validate-response.mjs +14 -3
  52. package/scripts/validate-step.mjs +2 -1
  53. package/scripts/validate-workflows.mjs +8 -1
  54. package/templates/kinds/architecture-decision.contract.json +1 -0
  55. package/templates/kinds/architecture-decision.skeleton.md +6 -0
  56. package/templates/kinds/backend-source-application.contract.json +1 -1
  57. package/templates/kinds/backend-source-application.skeleton.md +1 -1
  58. package/templates/kinds/frontend-presentation-resolution.contract.json +1 -1
  59. package/templates/kinds/frontend-presentation-resolution.skeleton.md +1 -0
  60. package/templates/kinds/mutations.schema.json +65 -65
  61. package/templates/kinds/route.schema.json +4 -2
  62. package/templates/kinds/stack-model.schema.json +23 -1
  63. package/templates/kinds/workspace-route-binding.contract.json +2 -2
  64. package/templates/step/response.schema.json +10 -0
  65. package/templates/step/state.schema.json +205 -0
  66. package/workflows/README.md +3 -0
  67. package/workflows/README.vi.md +3 -0
  68. package/workflows/backend-feature.json +26 -5
  69. package/workflows/content-unit.json +4 -1
  70. package/workflows/frontend-new-surface.json +15 -5
  71. package/workflows/frontend-reconstruct.json +10 -4
  72. package/workflows/frontend-refine.json +10 -4
  73. package/workflows/frontend-with-uat.json +15 -3
  74. package/workflows/full-feature.json +31 -8
  75. 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
  ],
@@ -21,7 +21,13 @@
21
21
  ],
22
22
  [
23
23
  {
24
- "operator": "release.deploy"
24
+ "operator": "release.deploy",
25
+ "asks": [
26
+ "release",
27
+ "target",
28
+ "approval",
29
+ "rollbackIdentity"
30
+ ]
25
31
  }
26
32
  ]
27
33
  ],