Install
$ agentstack add skill-qgolem-orc-design-system ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Design System
Load an existing design system spec for reference, or scaffold a new one from a template.
Mode Detection
Parse $ARGUMENTS:
- If first token is
new→ Scaffold Mode (remaining tokens = system name) - Otherwise → Load Mode (first token = system name or query)
Load Mode (default)
- Discover systems:
Glob("skills/design-system/systems/*/spec.md")from the repo root - Select system:
- If
$ARGUMENTSfirst token matches a discovered system name → use it; remaining tokens are the query - If no token match and exactly one system exists → default to it silently
- If no token match and multiple systems exist → list available systems via
AskUserQuestion
- Load:
Read systems//spec.md - Present: Output the spec content. If a query was provided, highlight the relevant section.
Scaffold Mode (new )
- Parse system name from
$ARGUMENTS(e.g.,new acme-brand→ name isacme-brand) - Validate name is lowercase kebab-case; reject otherwise
- Create directory:
mkdir -p systems// - Copy template: Read
templates/spec.md, write tosystems//spec.md - Replace placeholder: Update
[System Name]and[system name]in the copied file with the actual name - Ask user:
`` AskUserQuestion: "I've scaffolded systems//spec.md with blank sections. Would you like to fill it in interactively now, or edit the file yourself later?" ``
- Interactive → Walk through each section (Color Palette, Typography, Borders, Layout, Cards, Components, CSS, Shadows, Breakpoints, Scrollbar, Constraints), asking the user for their values
- Later → Report the file path and stop
- Report: "Design system `
created. Use/orc:vibe-code [component]` to design with it."
Examples
Load a system
/orc:design-system orc-brand
Loads systems/orc-brand/spec.md into context — full color palette, typography, layout, component patterns.
Load with a query
/orc:design-system orc-brand typography
Loads orc-brand spec, highlights the Typography section (font families, type scale).
Scaffold a new system
/orc:design-system new acme-brand
Creates systems/acme-brand/spec.md from template with blank sections, asks whether to fill interactively.
Real-world: how orc-brand was created
The orc-brand design system was built in 3 steps:
- Research —
/orc:adr "Design system for a Claude Code plugin landing page — dark theme, developer-focused, terminal aesthetic"researched color palettes, typography, and layout patterns across 100+ developer tool landing pages. Output:docs/adr/ADR5.001-landing-page-design-direction.md
- Scaffold —
/orc:design-system new orc-brandcreated the empty spec from template.
- Fill — The spec was filled based on ADR findings: deep charcoal palette (#0D0D0D base), warm amber accent (#E8A04A) for Claude brand tie-in, Inter + JetBrains Mono typography, three-layer CSS token architecture (primitives → semantic → component), terminal block and feature card component patterns. Static HTML + CSS only — no framework.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: qGolem
- Source: qGolem/orc
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.