scene-capability-engine 3.5.0 → 3.5.2
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/CHANGELOG.md +30 -0
- package/README.md +16 -2
- package/README.zh.md +16 -2
- package/docs/command-reference.md +32 -4
- package/lib/commands/studio.js +862 -28
- package/lib/spec/related-specs.js +10 -2
- package/lib/spec/scene-binding-overrides.js +115 -0
- package/lib/studio/spec-intake-governor.js +328 -5
- package/lib/workspace/takeover-baseline.js +25 -0
- package/package.json +1 -1
- package/template/.sce/config/studio-intake-policy.json +86 -0
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"enabled": true,
|
|
4
4
|
"auto_create_spec": true,
|
|
5
5
|
"force_spec_for_studio_plan": true,
|
|
6
|
+
"allow_manual_spec_override": false,
|
|
6
7
|
"prefer_existing_scene_spec": true,
|
|
7
8
|
"related_spec_min_score": 45,
|
|
8
9
|
"allow_new_spec_when_goal_diverges": true,
|
|
@@ -61,8 +62,93 @@
|
|
|
61
62
|
},
|
|
62
63
|
"governance": {
|
|
63
64
|
"auto_run_on_plan": true,
|
|
65
|
+
"require_auto_on_plan": true,
|
|
64
66
|
"max_active_specs_per_scene": 3,
|
|
65
67
|
"stale_days": 14,
|
|
66
68
|
"duplicate_similarity_threshold": 0.66
|
|
69
|
+
},
|
|
70
|
+
"backfill": {
|
|
71
|
+
"enabled": true,
|
|
72
|
+
"active_only_default": true,
|
|
73
|
+
"default_scene_id": "scene.sce-core",
|
|
74
|
+
"override_file": ".sce/spec-governance/spec-scene-overrides.json",
|
|
75
|
+
"rules": [
|
|
76
|
+
{
|
|
77
|
+
"id": "moqui-core",
|
|
78
|
+
"scene_id": "scene.moqui-core",
|
|
79
|
+
"keywords": [
|
|
80
|
+
"moqui"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "orchestration",
|
|
85
|
+
"scene_id": "scene.sce-orchestration",
|
|
86
|
+
"keywords": [
|
|
87
|
+
"orchestrate",
|
|
88
|
+
"runtime",
|
|
89
|
+
"controller",
|
|
90
|
+
"batch",
|
|
91
|
+
"parallel"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "template-registry",
|
|
96
|
+
"scene_id": "scene.sce-template-registry",
|
|
97
|
+
"keywords": [
|
|
98
|
+
"template",
|
|
99
|
+
"scene-package",
|
|
100
|
+
"registry",
|
|
101
|
+
"catalog",
|
|
102
|
+
"scene-template"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "spec-governance",
|
|
107
|
+
"scene_id": "scene.sce-spec-governance",
|
|
108
|
+
"keywords": [
|
|
109
|
+
"spec",
|
|
110
|
+
"gate",
|
|
111
|
+
"ontology",
|
|
112
|
+
"governance",
|
|
113
|
+
"policy"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "quality",
|
|
118
|
+
"scene_id": "scene.sce-quality",
|
|
119
|
+
"keywords": [
|
|
120
|
+
"test",
|
|
121
|
+
"quality",
|
|
122
|
+
"stability",
|
|
123
|
+
"jest",
|
|
124
|
+
"coverage"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "docs",
|
|
129
|
+
"scene_id": "scene.sce-docs",
|
|
130
|
+
"keywords": [
|
|
131
|
+
"document",
|
|
132
|
+
"documentation",
|
|
133
|
+
"onboarding",
|
|
134
|
+
"guide"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "platform",
|
|
139
|
+
"scene_id": "scene.sce-platform",
|
|
140
|
+
"keywords": [
|
|
141
|
+
"adopt",
|
|
142
|
+
"upgrade",
|
|
143
|
+
"workspace",
|
|
144
|
+
"repo",
|
|
145
|
+
"environment",
|
|
146
|
+
"devops",
|
|
147
|
+
"release",
|
|
148
|
+
"github",
|
|
149
|
+
"npm"
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
]
|
|
67
153
|
}
|
|
68
154
|
}
|