Files
agentic-dev/docs/work/2026-05-14-ci-security-and-supply-chain/01-trace-schema-extensions/_story.md
Danijel Martinek c17d3f147d chore(work): decompose 2026-05-14-ci-security-and-supply-chain epic
Decomposer produced 9 stories under docs/work/2026-05-14-ci-
security-and-supply-chain/, ordered to land the schema foundation
first and the cross-referencing content (reviewer prompt, guide)
last:

01 - trace schema extensions (socketRisk + lastRevalidated)
02 - Socket integration (skill + CI)
03 - Renovate adoption
04 - major-bump re-evaluation flow
05 - trace revalidation workflow
06 - CodeQL + audit signatures
07 - gitleaks pre-commit
08 - reviewer prompt update
09 - CI security guide + docs

Also fixes a one-char status typo in the PRD frontmatter
(\`appoved\` -> \`approved\`) that landed with the decompose run.

Anchored by ADR-023 + the approved PRD at
docs/work/prds/2026-05-14-ci-security-and-supply-chain.prd.md.
Sequencing: depends on stories 01/02/04/06 of the in-flight
library-evaluation epic landing first.
2026-05-14 18:59:12 +02:00

3.0 KiB

id, epic, title, type, status, feature, depends-on, blocks
id epic title type status feature depends-on blocks
01-trace-schema-extensions 2026-05-14-ci-security-and-supply-chain Trace schema extensions (socketRisk + lastRevalidated) technical-story in-progress scripts
02-socket-integration
04-major-bump-reevaluation
05-trace-revalidation-workflow

Goal

Extend scripts/library-decisions/schema.mjs with two new fields — socketRisk (the 9th filter result) and lastRevalidated (ISO-date or null) — and update docs/library-decisions/_template.md to reflect the expanded schema.

Why

Every downstream enforcement layer (the evaluate-library skill's 9th filter, the check.mjs major-bump mode, the revalidate.mjs weekly cron) depends on these two fields being present and validated at the schema layer first. Landing them here in one green commit before any consumer touches them prevents schema-drift between layers.

External dependency: library-evaluation epic story 01 (trace schema foundation) must be complete before this story — scripts/library-decisions/schema.mjs and docs/library-decisions/_template.md must exist. That epic is marked done.

Done when

  • scripts/library-decisions/schema.mjs exports an updated Zod schema where filter-results includes socketRisk: z.union([z.literal("clean"), z.literal("flagged"), z.string()]) and the trace frontmatter includes lastRevalidated: z.string().nullable() (ISO date or null).
  • docs/library-decisions/_template.md mirrors both new fields with inline documentation of their allowed values.
  • schema.test.mjs covers: socketRisk round-trips for all three variants (clean, flagged, arbitrary string); lastRevalidated accepts ISO date strings and null; a trace missing socketRisk in filter-results fails validation; lastRevalidated: null is valid (default for fresh adoptions).
  • pnpm typecheck && pnpm lint && pnpm test && pnpm conformance && pnpm fallow:audit && pnpm coverage:diff all pass.

In scope

  • scripts/library-decisions/schema.mjs — schema additions only (no new exports, no breaking changes to existing field shapes).
  • scripts/library-decisions/schema.test.mjs — new test cases for the two new fields.
  • docs/library-decisions/_template.md — field documentation additions.

Out of scope

  • socket-cli invocation or Socket CI step — Story 02.
  • check.mjs major-bump mode — Story 04.
  • revalidate.mjs script — Story 05.
  • Backfilling existing traces with the new fields — Story 05 (the revalidation cron handles this on its first run).

Tasks

  • Extend scripts/library-decisions/schema.mjs adding socketRisk (union: "clean" | "flagged" | string) to the filter-results Zod object and lastRevalidated (nullable ISO-date string) to the trace frontmatter schema; update docs/library-decisions/_template.md to document both fields with their enum values; add test cases to schema.test.mjs covering socketRisk round-trips (all three variants), lastRevalidated ISO + null acceptance, and missing-socketRisk rejection; all gates pass on this single commit.