haac-aikit 0.7.2 → 0.8.0

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/dist/cli.mjs CHANGED
@@ -1280,6 +1280,7 @@ function loadCatalog() {
1280
1280
  mcpJson: () => read("mcp/mcp.json"),
1281
1281
  settingsJson: () => read("settings/settings.json"),
1282
1282
  claudeMdReference: () => read("docs/claude-md-reference.md"),
1283
+ htmlDesignSystem: () => read("docs/html-design-system.html"),
1283
1284
  aikitRulesJson: () => read("rules/aikit-rules.json")
1284
1285
  };
1285
1286
  }
@@ -1536,6 +1537,7 @@ async function runSync(argv) {
1536
1537
  results.push(safeWrite(".claude/settings.json", catalog.settingsJson(), { ...opts, useMarkers: false }));
1537
1538
  if (config.scope !== "minimal") {
1538
1539
  results.push(safeWrite("docs/claude-md-reference.md", catalog.claudeMdReference(), { ...opts, useMarkers: false }));
1540
+ results.push(safeWrite("docs/aikit-html-design-system.html", catalog.htmlDesignSystem(), { ...opts, useMarkers: false }));
1539
1541
  results.push(safeWrite(".claude/aikit-rules.json", catalog.aikitRulesJson(), { ...opts, useMarkers: false }));
1540
1542
  results.push(...syncDir("rules/claude-rules", ".claude/rules", opts, [".md"]));
1541
1543
  }