@tekyzinc/gsd-t 2.66.10 → 2.67.10

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 CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [2.67.10] - 2026-04-05
6
+
7
+ ### Added (design-chart-taxonomy)
8
+ - **Lists section** — new category between Tables and Controls: `list-simple-vertical`, `list-icon-vertical`, `list-avatar-vertical`, `list-thumbnail-vertical`. Includes decision rule: columns across rows = table; self-contained rows = list.
9
+ - **Table-vs-list decision rule** in Tables section — prevents catastrophic misclassification (jamming list-style repeating items into `table-*` entries).
10
+ - **Naming grammar** — documents the `{category}-{variant}-{orientation}` pattern with common modifiers. Prevents ad-hoc name invention.
11
+ - **Formalized extension workflow** — proposal-first process with: section placement, sibling-diff rationale, catastrophic-misclassification argument, companion-entries-flagged field. Replaces the terse 4-step extension guide.
12
+
13
+ ### Milestone
14
+ - **Extensibility VALIDATED** — task-012 forced the taxonomy-extension workflow (picked `list-thumbnail-vertical`, not previously in taxonomy). Proposal-first process worked cleanly; `$ref` composition chain unaffected by new entries. 12 consecutive 50/50 scores across element/widget/page/scale/extensibility tiers.
15
+
5
16
  ## [2.66.10] - 2026-04-05
6
17
 
7
18
  ### Changed (page-contract template)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.66.10",
3
+ "version": "2.67.10",
4
4
  "description": "GSD-T: Contract-Driven Development for Claude Code — 51 slash commands with headless CI/CD mode, graph-powered code analysis, real-time agent dashboard, execution intelligence, task telemetry, doc-ripple enforcement, backlog management, impact analysis, test sync, milestone archival, and PRD generation",
5
5
  "author": "Tekyz, Inc.",
6
6
  "license": "MIT",
@@ -196,4 +196,12 @@ Page-level verification runs AFTER all widgets pass their own verification. Page
196
196
 
197
197
  ## Composes Elements (direct, not via widgets)
198
198
 
199
- {List any element contracts referenced directly by the page (rare — usually everything goes through widgets). E.g., `button-primary` for a floating action button.}
199
+ Split into two lists:
200
+
201
+ **Existing element contracts used directly:**
202
+ - {e.g., `button-primary` — FAB}
203
+
204
+ **Inline stubs (promotion candidates):**
205
+ - {e.g., `page-topbar` — used by: dashboard-shell-page. Promote when ≥2 pages use it.}
206
+
207
+ The first list is atoms that already have their own contracts and are composed into this page without a wrapping widget. The second list is atoms that DON'T have contracts yet but should be extracted once ≥2 pages use them. Keep them distinct.