You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,20 @@ To manually update the site:
39
39
4. Commit the updated `docs/data.json` and any `.catalog/` files.
40
40
5. Push to trigger GitHub Pages deployment.
41
41
42
+
## Consistency Audit for Docs Metadata
43
+
44
+
When changing docs presentation metadata (`styles.css`, `app.js`, `icons.json`, `plugins.json`, `mcp.json`):
45
+
46
+
1. Prefer canonical tokens from `styles.css` and `style-tokens.json` over hardcoded values.
47
+
2. Ensure every in-scope pack has icon/title mappings in `icons.json` and `plugins.json`.
48
+
3. Run the audit checks:
49
+
50
+
```bash
51
+
make validate-consistency-audit
52
+
```
53
+
54
+
4. Review style/icon findings in `reports/consistency-audit.md` before merge.
55
+
42
56
## Security
43
57
44
58
All DOM manipulation in `app.js` uses `textContent` and `createElement` to prevent XSS vulnerabilities. No `innerHTML` is used with user-provided data.
0 commit comments