← Back to Skills Marketplace
benangel65

Design Style

by BenAngel65 · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
388
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install design-style
Description
Use this skill when the user asks to build, create, design, develop, or improve ANY frontend interface, web page, UI component, or visual element. This inclu...
README (SKILL.md)

\r \r

Design Style Skill\r

\r

Purpose\r

\r This skill helps Claude Code create beautiful, distinctive frontend interfaces by automatically retrieving design system prompts from the prompts/ directory. Instead of producing generic UI, this skill enables Claude to build interfaces with specific design aesthetics like Neo-brutalism, Modern Dark, Luxury, Cyberpunk, and more.\r \r

When to Use\r

\r This skill is automatically invoked when:\r

  • User asks to build a web page, landing page, or web application\r
  • User requests a UI component with a specific design style\r
  • User mentions frontend, React, Vue, or web development\r
  • User asks for a specific aesthetic (e.g., "make it look modern and dark" or "use a brutalist style")\r \r

Available Design Styles\r

\r The following design systems are available in the prompts/ directory:\r \r

  • Academia - Scholarly, classic, refined\r
  • ArtDeco - Luxurious 1920s glamour\r
  • Bauhaus - Functionalist, geometric minimalism\r
  • BoldTypography - Type-driven design\r
  • Botanical - Nature-inspired, organic\r
  • Claymorphism - Soft, clay-like 3D elements\r
  • Cyberpunk - Futuristic, neon, high-tech\r
  • Enterprise - Professional, corporate, scalable\r
  • FlatDesign - Clean, minimal, 2D\r
  • Fluent2 - Microsoft Fluent 2 Design System\r
  • HumanistLiterary - Warm, literary, conversational (Claude aesthetic)\r
  • Industrial - Raw, mechanical, utilitarian\r
  • Kinetic - Dynamic, motion-focused\r
  • Luxury - Premium, elegant, sophisticated\r
  • Material - Google Material Design\r
  • Maximalism - Bold, expressive, abundant\r
  • MinimalDrak - Minimal dark theme (note: typo in original)\r
  • ModernDark - Contemporary dark UI with depth\r
  • Monochrome - Black and white, high contrast\r
  • Neo-brutalism - Bold, raw, colorful brutalism\r
  • Neumorphism - Soft UI, skeuomorphic\r
  • Newsprint - Newspaper-inspired\r
  • Organic - Natural, flowing forms\r
  • PlayfulGeometric - Fun geometric shapes\r
  • Professional - Clean, business-focused\r
  • Retro - Vintage, nostalgic\r
  • Saas - Modern SaaS aesthetic\r
  • Sketch - Hand-drawn, artistic\r
  • Swiss - International Typographic Style\r
  • TerminalCLI - Command-line interface aesthetic\r
  • Vaporwave - 80s/90s aesthetic, nostalgic\r
  • Web3 - Decentralized, crypto-inspired\r \r

How It Works\r

\r

Step 1: Understand User Intent\r

\r When the user requests frontend work, first determine:\r

  1. Tech stack - What framework are they using? (React, Vue, Next.js, etc.)\r
  2. Design preference - Did they mention a specific style or aesthetic?\r
  3. Component scope - Single component, full page, or entire application?\r \r

Step 2: Select Design Style\r

\r If user specifies a style:\r

  • Match their request to available styles (e.g., "brutalist" → Neo-brutalism)\r
  • Case-insensitive matching (brutalism, Brutalism, BRUTALISM all work)\r \r If user doesn't specify:\r
  • For modern, professional projects → ModernDark or Professional\r
  • For creative, bold projects → Neo-brutalism or BoldTypography\r
  • For minimal, clean projects → FlatDesign or Swiss\r
  • For enterprise/corporate → Enterprise\r \r Ask the user if you're uncertain about which style fits their needs.\r \r

Step 3: Retrieve Design System\r

\r Use the Read tool to load the appropriate prompt file:\r \r

Read: prompts/\x3CStyleName>.md\r
```\r
\r
For example:\r
- `prompts/Neo-brutalism.md`\r
- `prompts/ModernDark.md`\r
- `prompts/Cyberpunk.md`\r
\r
### Step 4: Apply Design System\r
\r
Once you've loaded the design system prompt:\r
\r
1. **Internalize the design philosophy** - Understand the core principles, visual signatures, and differentiation factors\r
2. **Extract design tokens** - Colors, typography, spacing, shadows, borders\r
3. **Follow component patterns** - Use the specified button styles, card layouts, etc.\r
4. **Apply the "Bold Factor"** - Implement signature elements that make the design authentic\r
5. **Avoid anti-patterns** - Don't use techniques that break the aesthetic\r
\r
### Step 5: Build with Context\r
\r
**Before writing code:**\r
- Identify the user's existing tech stack\r
- Understand their component architecture\r
- Note any constraints (CSS frameworks, design libraries, etc.)\r
\r
**When writing code:**\r
- Match their existing patterns and conventions\r
- Centralize design tokens in CSS variables or a config file\r
- Create reusable, composable components\r
- Explain your architectural choices briefly\r
\r
**Quality standards:**\r
- Preserve or improve accessibility\r
- Ensure responsive design across devices\r
- Make deliberate, creative design choices (not generic boilerplate)\r
- Leave the codebase cleaner than you found it\r
\r
## Examples\r
\r
### Example 1: User Specifies Style\r
\r
**User:** "Create a landing page for my SaaS product with a neo-brutalist design"\r
\r
**Skill Actions:**\r
1. Detect keywords: "landing page", "neo-brutalist"\r
2. Map "neo-brutalist" → `prompts/Neo-brutalism.md`\r
3. Read the design system prompt\r
4. Ask clarifying questions: "What tech stack are you using? React, Vue, or plain HTML/CSS?"\r
5. Build the landing page following Neo-brutalism principles (thick borders, hard shadows, bold colors, etc.)\r
\r
### Example 2: User Doesn't Specify Style\r
\r
**User:** "Help me build a portfolio website"\r
\r
**Skill Actions:**\r
1. Detect: "portfolio website" (creative context)\r
2. Suggest options: "Would you like a specific design style? I can create it in Modern Dark (sophisticated), Neo-brutalism (bold and creative), or Swiss (minimal and clean)."\r
3. User responds with preference\r
4. Load appropriate prompt and build\r
\r
### Example 3: Component Request\r
\r
**User:** "Add a contact form to my Next.js app. Make it look modern and professional."\r
\r
**Skill Actions:**\r
1. Keywords: "Next.js", "modern and professional"\r
2. Select: `ModernDark.md` (modern) or `Professional.md` (professional)\r
3. Read design system\r
4. Build form component matching their Next.js patterns\r
5. Use design tokens from the prompt (colors, typography, shadows, etc.)\r
\r
## Quick Reference Commands\r
\r
When implementing, you can quickly reference specific sections:\r
\r
**Colors:**\r
```\r
Grep: pattern "Token|Value|Usage" path "prompts/\x3CStyle>.md"\r
```\r
\r
**Typography:**\r
```\r
Grep: pattern "Font|Weight|Size" path "prompts/\x3CStyle>.md"\r
```\r
\r
**Component Patterns:**\r
```\r
Grep: pattern "Button|Card|Input" path "prompts/\x3CStyle>.md"\r
```\r
\r
## Tips for Best Results\r
\r
1. **Read the full prompt** - Don't just skim. The design philosophy and differentiation sections are critical.\r
2. **Implement signature elements** - Every design system has a "Bold Factor" section. These elements are what make it authentic.\r
3. **Avoid anti-patterns** - Each prompt lists what NOT to do. Follow these rules strictly.\r
4. **Ask questions** - If the user's needs are unclear, ask before building.\r
5. **Match existing code** - Don't fight their tech stack. Integrate the design system into their existing patterns.\r
\r
## Notes\r
\r
- All design system prompts follow the same structure: `\x3Crole>` and `\x3Cdesign-system>` sections\r
- Prompts include detailed color palettes, typography scales, component patterns, and implementation examples\r
- Each style is production-ready and has been carefully crafted for visual distinctiveness\r
- The prompts are designed to prevent generic, AI-looking interfaces\r
\r
## Future Enhancements\r
\r
Potential improvements to this skill:\r
- Style combination support (e.g., "Cyberpunk + Minimal")\r
- Custom style creation workflow\r
- Design token extraction to JSON/CSS\r
- Component library generation from prompts\r
Usage Guidance
This skill appears to do what it claims (provide design-system prompts used to generate styled frontend code), but there are two things to double-check before installing or enabling it widely: 1) Review the prompt files and scripts yourself (or ask the publisher): many files include <role> sections that set assistant behavior. Ensure those are harmless design instructions and do not contain hidden directives that could alter policy/safety behavior or instruct the agent to exfiltrate data or ignore safeguards. 2) Beware of the 'trigger proactively' instruction in SKILL.md: the skill asks to be invoked for ANY frontend/UI mention. If you do not want this skill to run broadly or autonomously, restrict its invocation (do not enable always/autonomous invocation, limit eligibility rules, or require explicit user confirmation before use). Optional extra steps: inspect scripts/verify-skill.sh and scripts/list-styles.sh to confirm they don't call external URLs or execute unexpected commands; search the prompt files for URLs, inline data-URIs, or any commands that ask for secrets or to access remote services. If you lack time or expertise, treat this skill as 'review before enabling' and prefer enabling it only on-demand.
Capability Analysis
Type: OpenClaw Skill Name: design-style Version: 1.0.0 ```json { "classification": "suspicious", "summary": "The skill bundle is classified as suspicious due to a path traversal vulnerability identified in `scripts/list-styles.sh`. The script attempts to access `PROMPTS_DIR="../../../prompts"`, which tries to traverse outside the skill's expected directory structure. While the current usage (`ls`) is benign, this pattern is a security risk that could be exploited for unauthorized file access if the execution context or variables were manipulated. No other clear evidence of malicious intent, such as data exfiltration or prompt injection, was found in `SKILL.md` or the `prompts/*.md` files." } ```
Capability Assessment
Purpose & Capability
Name/description match the actual contents: many design-system prompt files and a mapping JSON are present and the runtime instructions only read local prompt files to produce design guidance. No unrelated binaries, env vars, or external installs are requested — this aligns with the stated purpose.
Instruction Scope
SKILL.md instructs the agent to Read prompts/<StyleName>.md and to proactively trigger for ANY frontend/UI work. The prompt files contain embedded <role> blocks that set assistant persona/behavior (effectively injecting system-like instructions). While such prompt templates are expected for a design system, the presence of system-prompt-override patterns and the explicit 'trigger proactively' guidance broaden the agent's authority and could be used to change model behavior beyond narrowly handling a user request.
Install Mechanism
This is instruction-only (no install spec). Two small scripts and prompt files are included but there is no download/extract/install mechanism. No external binaries or third-party package installs are declared.
Credentials
The skill requests no environment variables, credentials, or config paths. The declared capabilities (Read/Glob/Grep) match the need to load local prompt files; no unrelated secrets or services are requested.
Persistence & Privilege
always:false and no persistent install are present. However the SKILL.md's instruction to 'trigger this skill proactively for ANY frontend/UI work' attempts to broaden when the skill should run. Because the platform allows autonomous invocation by default, this recommendation increases the chance the skill will run widely — combine that with the embedded role prompts and the risk grows. The skill does not itself request always:true or system-wide config changes.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install design-style
  3. After installation, invoke the skill by name or use /design-style
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the design-style skill to power visually distinctive frontend/UI work. - Automatically identifies and applies specific design system prompts (e.g., Neo-brutalism, Modern Dark) for projects involving frontend design, web pages, or UI components. - Supports a wide range of design systems, from Material and Cyberpunk to FlatDesign and Retro, with clear style-matching guidance. - Encourages proactive invocation for any frontend or UI-related tasks, not just when style is explicitly mentioned. - Includes detailed workflow for selecting styles, retrieving design tokens, and ensuring produced code matches both aesthetic and technical requirements.
Metadata
Slug design-style
Version 1.0.0
License
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is Design Style?

Use this skill when the user asks to build, create, design, develop, or improve ANY frontend interface, web page, UI component, or visual element. This inclu... It is an AI Agent Skill for Claude Code / OpenClaw, with 388 downloads so far.

How do I install Design Style?

Run "/install design-style" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Design Style free?

Yes, Design Style is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Design Style support?

Design Style is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Design Style?

It is built and maintained by BenAngel65 (@benangel65); the current version is v1.0.0.

💬 Comments