openxiangda-skill-kit 2.0.0-alpha.118 → 2.0.0-alpha.119
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openxiangda-skill-kit",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.119",
|
|
4
4
|
"description": "Validation and deterministic packaging for OpenXiangda 2.0 AI skills.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"README.md"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"openxiangda-devkit-core": "2.0.0-alpha.
|
|
20
|
+
"openxiangda-devkit-core": "2.0.0-alpha.97"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"tsx": "4.23.12",
|
|
@@ -183,5 +183,12 @@ semantics and the Workflow-scoped file client for attachments, rich-text images
|
|
|
183
183
|
and signatures. Keep desktop and mobile renderers structurally independent;
|
|
184
184
|
place decision actions in the fixed primary group, all low-frequency actions in
|
|
185
185
|
the single more-actions entry, and collect comments in the action confirmation
|
|
186
|
-
layer.
|
|
187
|
-
|
|
186
|
+
layer. The canonical desktop paths are `/tasks/:taskId` and
|
|
187
|
+
`/workflows/:instanceId`; they render as standalone full-screen pages outside
|
|
188
|
+
the admin Shell, while the platform alone replace-redirects historical admin
|
|
189
|
+
detail URLs. Filter `system: true` and internal fields, omit empty sections,
|
|
190
|
+
merge operation actor/action/reason/time into its vertical node, and never show
|
|
191
|
+
UUIDs or revision/event diagnostics. Treat `stale` as metadata and show the
|
|
192
|
+
friendly refresh prompt only after a real command token/CAS conflict. Do not
|
|
193
|
+
copy the standard page into an application merely to show full business fields
|
|
194
|
+
or rearrange platform-owned operations.
|
|
@@ -156,14 +156,31 @@ back silently.
|
|
|
156
156
|
|
|
157
157
|
When `detailRouteCode` is omitted, use the platform standard detail page. Its
|
|
158
158
|
Surface carries `presentation.businessDetail`, pinned to the instance Data
|
|
159
|
-
logical revision, declaration digest
|
|
160
|
-
|
|
159
|
+
logical revision, declaration digest and physical resource while re-reading the
|
|
160
|
+
current values of the same Native Data record on every request. The start-time
|
|
161
|
+
`requestedRevision` remains CAS metadata; `sourceRevision` and visible values
|
|
162
|
+
must advance after a business-record update and must never become start-time
|
|
163
|
+
value snapshots. The projection applies the current user's field policy and
|
|
164
|
+
removes every `system: true` or internal field plus any empty group. Parent and subtable
|
|
161
165
|
resources stay on that same logical revision and each subtable is bounded to
|
|
162
166
|
200 rows. Render the provided summary, full field Surface, typed timeline and
|
|
163
167
|
server-owned operation descriptors; do not infer labels, operation hierarchy
|
|
164
168
|
or field semantics from codes in application code. Desktop and mobile have
|
|
165
169
|
independent renderers, low-frequency operations live under one more-actions
|
|
166
|
-
entry, and comments are collected only after an operation is selected.
|
|
170
|
+
entry, and comments are collected only after an operation is selected. A
|
|
171
|
+
`stale` detail status is metadata, not a persistent banner or an action block;
|
|
172
|
+
show the friendly refresh prompt only when a command returns a real
|
|
173
|
+
`freshSurface` token/CAS conflict and never auto-replay it. Merge operation
|
|
174
|
+
actor/action/reason/time into the corresponding vertical node instead of
|
|
175
|
+
rendering a second audit block. Never render UUIDs, revision/event diagnostics
|
|
176
|
+
or a technical information section. Resolve the applicant from a directory or
|
|
177
|
+
stable snapshot and use a friendly placeholder instead of exposing userId.
|
|
178
|
+
|
|
179
|
+
The standard desktop task and instance pages use `/tasks/:taskId` and
|
|
180
|
+
`/workflows/:instanceId` as standalone full-screen routes outside the admin
|
|
181
|
+
Shell. Historical `/admin/tasks/:taskId` and `/admin/workflows/:instanceId`
|
|
182
|
+
routes only replace-redirect while preserving query/hash. Mobile remains the
|
|
183
|
+
independent `/m/tasks/:taskId` and `/m/workflows/:instanceId` surface.
|
|
167
184
|
|
|
168
185
|
Files, rich-text images and signatures on this page use only the Workflow
|
|
169
186
|
instance-scoped preview/content client. Every request is rebound to the current
|