@tekyzinc/gsd-t 2.31.15 → 2.31.16

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": "@tekyzinc/gsd-t",
3
- "version": "2.31.15",
3
+ "version": "2.31.16",
4
4
  "description": "GSD-T: Contract-Driven Development for Claude Code — 46 slash commands with backlog management, impact analysis, test sync, milestone archival, and PRD generation",
5
5
  "author": "Tekyz, Inc.",
6
6
  "license": "MIT",
@@ -458,6 +458,33 @@ constants: UPPER_SNAKE_CASE (MAX_RETRIES)
458
458
  private: _underscore (_internal_method)
459
459
  ```
460
460
 
461
+ ## Markdown Tables
462
+
463
+ Emoji display as 2 characters wide in terminal/monospace but count as 1 in string length. This causes misaligned columns. **Always add one extra space after emoji in table cells** to compensate:
464
+
465
+ ```
466
+ WRONG — misaligned in terminal:
467
+ | Channel | Support |
468
+ |----------|---------|
469
+ | Discord | ✅ |
470
+ | LINE | ❌ |
471
+
472
+ RIGHT — one extra space after emoji:
473
+ | Channel | Support |
474
+ |----------|---------|
475
+ | Discord | ✅ |
476
+ | LINE | ❌ |
477
+ ```
478
+
479
+ This extra space is invisible in rendered HTML (GitHub, VS Code preview) but restores alignment in terminal views. Apply to all GSD-T-generated docs that use emoji in tables.
480
+
481
+ Also pad all cell values in a column to the width of the widest value:
482
+ ```
483
+ | iMessage (BlueBubbles) | ✅ |
484
+ | Discord | ✅ |
485
+ | QQ | ❌ |
486
+ ```
487
+
461
488
 
462
489
  # Recovery After Interruption
463
490