mddd-cli 6.2.0 → 6.2.1

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.
@@ -171,7 +171,6 @@ The skill ships a **rigid reference template** that the agent **must** follow se
171
171
  | 4 | External Integrations (`graph LR`) | Focused diagram of every third-party system |
172
172
  | 5 | Infrastructure Topology (`graph TB`) | Stand-alone top-down diagram of infra |
173
173
  | 6 | Component Dependency Matrix | Compact truth-table: from / to / label / trigger / source spec |
174
- | 7 | Click-Through Map | `flowchart LR` with `click` directives for every internal node |
175
174
  | 8 | Generation Footer | Counts + validation status |
176
175
 
177
176
  ### Strict substitution rules
package/bin/cli.js CHANGED
@@ -20,7 +20,7 @@ const program = new Command();
20
20
  program
21
21
  .name('md')
22
22
  .description('Manager for co-located specifications for Mermaid Diagram Driven Development (MDDD)')
23
- .version('6.2.0');
23
+ .version('6.2.1');
24
24
 
25
25
  // ==========================================
26
26
  // COMMAND: md init
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mddd-cli",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "Official CLI for modular, co-located, and versioned Mermaid Diagram Driven Development (MDDD).",
5
5
  "type": "module",
6
6
  "exports": "./bin/cli.js",