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/catalog/agents/tier1/data-migration.md +102 -0
- package/catalog/agents/tier1/technical-writer.md +56 -0
- package/catalog/commands/html.md +26 -0
- package/catalog/docs/html-design-system.html +178 -0
- package/catalog/skills/tier1/api-design.md +64 -0
- package/catalog/skills/tier1/html-artifacts.md +80 -0
- package/catalog/skills/tier1/incident-response.md +78 -0
- package/catalog/skills/tier1/performance-profiling.md +98 -0
- package/dist/cli.mjs +2 -0
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
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
|
}
|