/cs-design-system
Run the one-time markdown-html design-system onboarding wizard. Captures brand primary/accent (HEX) + heading/body Google Fonts + design style (editorial/technical/minimal/playful) + default output directory + syntax theme + TOC behavior + optional logo/company. WCAG-AA
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cs-design-system
Context preview
What this command does when you run it.
Run the one-time markdown-html design-system onboarding wizard. Captures brand primary/accent (HEX) + heading/body Google Fonts + design style (editorial/technical/minimal/playful) + default output directory + syntax theme + TOC behavior + optional logo/company. WCAG-AA
Command definition
cs-design-system.mddescription: Run the one-time markdown-html design-system onboarding wizard. Captures brand primary/accent (HEX) + heading/body Google Fonts + design style (editorial/technical/minimal/playful) + default output directory + syntax theme + TOC behavior + optional logo/company. WCAG-AA validates body-text contrast; refuses if it fails. Stores at ~/.config/markdown-html/design-system.json (or project-scoped with --scope project). Every converter reads this config via config_loader.py before rendering.
argument-hint: "[--defaults | --show | --reset | --set key=value | --scope global|project]"
/cs:design-system — Markdown-HTML design-system onboarding
Run the design-system wizard:
python3 markdown-html/skills/design-system/scripts/onboard.py $ARGUMENTS
Modes
| Flag | Behavior | |---|---| | (no flag) | Interactive — walks 10 questions one at a time. Default. | | `--defaults` | Zero-touch: writes built-in defaults (`#0A1628` navy + `#00D4AA` teal + Inter + technical + sticky TOC + `./markdown-html-out/`) without prompting. Useful for CI or first-test. | | `--set key=value` | Non-interactive override (repeatable). Dotted keys supported: `brand.primary=#FF6B35`, `typography.heading_font=Lora`, `design_style=editorial`. | | `--show` | Print the 10 questions + the current effective config (project > global > defaults). | | `--reset` | Delete the saved config at the chosen scope. | | `--scope project` | Save to `./.markdown-html/design-system.json` (per-repo override) instead of global `~/.config/markdown-html/design-system.json`. |
The 10 questions
1. Default output directory (path; must be writable) 2. Brand primary HEX 3. Brand accent HEX (optional; auto-derives if blank) 4. Heading Google Font (12 safe defaults) 5. Body Google Font 6. Design style: editorial / technical / minimal / playful 7. Syntax-highlighting theme: light / dark / auto 8. TOC behavior: sticky-sidebar / collapsible-top / inline / none 9. Company / project name (optional, shows in footer) 10. Logo URL (optional, base64-embedded at render time)
Hard refusals
- `default_output_dir` empty or unwritable → exit 3. Pick a path you control.
- WCAG AA body-text contrast fails (< 4.5:1) → exit 4. Pick a darker primary, blank `brand.bg`/`brand.text` to let derivation pick a passing pair, or override `brand.text` explicitly.
- WCAG link contrast walked iteratively; falls back to a passing color if accent on bg can't reach 4.5:1.
After onboarding
Inspect the effective config:
python3 markdown-html/skills/design-system/scripts/config_loader.py --show
python3 markdown-html/skills/design-system/scripts/config_loader.py --status
Then convert markdown via `/cs:markdown-html <path>.md`.
Bypass
`MARKDOWN_HTML_NO_CONFIG=1` skips saved config and returns DEFAULTS only. Useful for headless CI, ephemeral test containers, and evaluator loops. Never set it silently for an interactive user.
Read more
description: Run the one-time markdown-html design-system onboarding wizard. Captures brand primary/accent (HEX) + heading/body Google Fonts + design style (editorial/technical/minimal/playful) + default output directory + syntax theme + TOC behavior + optional logo/company. WCAG-AA validates body-text contrast; refuses if it fails. Stores at ~/.config/markdown-html/design-system.json (or project-scoped with --scope project). Every converter reads this config via config_loader.py before rendering. argument-hint: "[--defaults | --show | --reset | --set key=value | --scope global|project]"
/cs:design-system — Markdown-HTML design-system onboarding
Run the design-system wizard:
python3 markdown-html/skills/design-system/scripts/onboard.py $ARGUMENTS
Modes
| Flag | Behavior | |---|---| | (no flag) | Interactive — walks 10 questions one at a time. Default. | | `--defaults` | Zero-touch: writes built-in defaults (`#0A1628` navy + `#00D4AA` teal + Inter + technical + sticky TOC + `./markdown-html-out/`) without prompting. Useful for CI or first-test. | | `--set key=value` | Non-interactive override (repeatable). Dotted keys supported: `brand.primary=#FF6B35`, `typography.heading_font=Lora`, `design_style=editorial`. | | `--show` | Print the 10 questions + the current effective config (project > global > defaults). | | `--reset` | Delete the saved config at the chosen scope. | | `--scope project` | Save to `./.markdown-html/design-system.json` (per-repo override) instead of global `~/.config/markdown-html/design-system.json`. |
The 10 questions
1. Default output directory (path; must be writable) 2. Brand primary HEX 3. Brand accent HEX (optional; auto-derives if blank) 4. Heading Google Font (12 safe defaults) 5. Body Google Font 6. Design style: editorial / technical / minimal / playful 7. Syntax-highlighting theme: light / dark / auto 8. TOC behavior: sticky-sidebar / collapsible-top / inline / none 9. Company / project name (optional, shows in footer) 10. Logo URL (optional, base64-embedded at render time)
Hard refusals
- `default_output_dir` empty or unwritable → exit 3. Pick a path you control.
- WCAG AA body-text contrast fails (< 4.5:1) → exit 4. Pick a darker primary, blank `brand.bg`/`brand.text` to let derivation pick a passing pair, or override `brand.text` explicitly.
- WCAG link contrast walked iteratively; falls back to a passing color if accent on bg can't reach 4.5:1.
After onboarding
Inspect the effective config:
python3 markdown-html/skills/design-system/scripts/config_loader.py --show python3 markdown-html/skills/design-system/scripts/config_loader.py --status
Then convert markdown via `/cs:markdown-html <path>.md`.
Bypass
`MARKDOWN_HTML_NO_CONFIG=1` skips saved config and returns DEFAULTS only. Useful for headless CI, ephemeral test containers, and evaluator loops. Never set it silently for an interactive user.
362 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Other commands on claude-skills.
- /focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Open command - /clean
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Open command - /cm
Stage working tree changes and create a Conventional Commit (no push).
Open command - /cp
Stage, commit, and push the current branch following git governance rules.
Open command - /pr
Create a pull request from the current branch.
Open command - /plugin-audit
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform compatibility, and ecosystem integration. Runs all built-in validation tools, invokes domain-appropriate agents for code review,
Open command

