@zibby/skill-ids 0.2.8 → 0.2.9

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/skill-ids",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Single authoritative Zibby skill-id map (zero-dep leaf). The one source of truth for well-known skill ids — every consumer (agent-workflow, core, skills, backend, templates) imports it, so the ids can never drift.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -185,6 +185,17 @@ export const SKILL_IDS = Object.freeze({
185
185
  // user connection required → UNGATED (auths with the run's own project token,
186
186
  // like kv-memory / dataset-store). Backed by artifactSkill in @zibby/skills.
187
187
  ARTIFACT: 'artifact',
188
+ // `report-check` — DATA-DRIVEN pre-flight for a page that renders data, run
189
+ // BEFORE artifact_publish. Compares the rendered HTML against the data it was
190
+ // built from: a table short of records, a bar whose length is not proportional
191
+ // to its datum, a printed number that is not that datum, a width the CSS
192
+ // cascade throws away, placeholder residue in visible text. Deliberately
193
+ // DISJOINT from backend/src/utils/artifact-validate.js, which owns document
194
+ // SHAPE (that gate stays the one authority on markup and is not restated).
195
+ // Tier ① and pure — no network, no credentials, no env — so it runs in the
196
+ // Fargate run container and the Copilot Lambda alike. Backed by
197
+ // reportCheckSkill in @zibby/skills.
198
+ REPORT_CHECK: 'report-check',
188
199
  });
189
200
 
190
201
  /**