@tekyzinc/gsd-t 2.60.10 → 2.61.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,12 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [2.61.10] - 2026-04-05
6
+
7
+ ### Added
8
+ - **Circular charts `-percentage` clarification** — `design-chart-taxonomy.md` now explicitly states that `chart-pie` and `chart-donut` do NOT take a `-percentage` suffix, because circular charts are inherently part-to-whole (circle = 100%). Whether segment labels show percentages or absolute values is a labelling choice recorded in the Test Fixture, not a distinct element. Prevents agents from inventing `chart-donut-percentage` when it doesn't exist in the closed set. Closes gap A from convergence run 2.
9
+ - **Figma MCP size guard** in `gsd-t-design-decompose.md` Step 1: call `get_metadata` first to map the tree, then `get_design_context` only on leaf nodes (< 100KB). Avoids the 250KB+ tool-results file dump when called on full-page frames. Closes gap #3 from convergence runs 1 and 2.
10
+
5
11
  ## [2.60.10] - 2026-04-05
6
12
 
7
13
  ### Added
@@ -41,6 +41,8 @@ Run these checks, log results to user inline:
41
41
 
42
42
  Enumerate every visual element on every page/screen in the design. Use Figma MCP `get_metadata` or `get_design_context` if available; otherwise use visual analysis on the image.
43
43
 
44
+ > **⚠ Figma MCP size guard**: `get_design_context` on a full-page frame (e.g., a 390×3372px mobile screen) can return 250KB+ and be auto-saved to a tool-results file, forcing you to grep through it. **Always call `get_metadata` FIRST** to map the tree, then call `get_design_context` **only on leaf card/component nodes** (typically < 100KB). If you must call it on a frame, use `excludeScreenshot: true` to halve the payload.
45
+
44
46
  Produce an initial flat inventory table:
45
47
 
46
48
  | # | Element on Design | Appears On Pages | Visual Variant |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.60.10",
3
+ "version": "2.61.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",
@@ -54,6 +54,8 @@ The catastrophic failure mode is: agent sees "bars" in Figma, picks `chart-bar-g
54
54
  | `chart-radial-bar` | Concentric arcs, one per category |
55
55
  | `chart-polar` | Radial grid with data plotted by angle |
56
56
 
57
+ > **Note on `-percentage` suffix**: Circular charts (`chart-pie`, `chart-donut`) are inherently part-to-whole — the circle is 100% by definition — so they do **NOT** take a `-percentage` suffix. Whether segment labels show percentages (`30%`) or absolute values (`$485`) is a labelling choice recorded in the element contract's Test Fixture, not a distinct element name. Do not invent `chart-donut-percentage` or `chart-pie-percentage`.
58
+
57
59
  ### Distribution / comparison
58
60
 
59
61
  | Element name | Visual distinguisher |