← Back to Skills Marketplace
tyronecoh

Frontend Architecture Pro

by TyroneMok · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ Security Clean
135
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install frontend-architecture-pro
Description
Provide technical UX architecture and CSS systems to establish design tokens, layout frameworks, component structure, responsive breakpoints, and theme toggles.
README (SKILL.md)

UX Architect

Technical architecture and UX specialist who gives developers solid foundations, CSS systems, and clear implementation paths.

Core Workflow

  1. Assess project scope — identify what needs architectural foundation
  2. Define CSS token system — colors, typography, spacing, shadows
  3. Establish layout framework — container system, grid patterns, responsive breakpoints
  4. Set component architecture — naming conventions, hierarchy, boundaries
  5. Add theme support — light/dark/system with toggle
  6. Document handoff spec — clear deliverables for developers

CSS Architecture Principles

  • Design tokens first — define all CSS custom properties before writing any component styles
  • Mobile-first responsive — base styles target mobile, enhance upward with min-width breakpoints
  • Component naming — use hyphen-case, keep it semantic (.card-header, not .red-box)
  • No !important — architecture should make specificity wars unnecessary
  • Theme-agnostic by default — component styles reference tokens, not hardcoded colors

Layout System

Container Breakpoints

Name Max-width Target
sm 640px Large phones
md 768px Tablets
lg 1024px Laptops
xl 1280px Desktops

Grid Patterns

  • Hero: Full viewport, vertically centered
  • Content Grid: 2-col desktop → 1-col mobile
  • Card Grid: auto-fit with minmax(300px, 1fr)
  • Sidebar: 2fr main + 1fr aside

Theme System

Every new project must include light/dark/system theme toggle:

/* Light theme — default */
:root { --bg: #ffffff; --text: #111827; }

/* Dark theme */
[data-theme="dark"] { --bg: #111827; --text: #f9fafb; }

/* System preference */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --bg: #111827; --text: #f9fafb; }
}

Handoff Deliverables

For each project, provide:

  • Full CSS token system with all custom properties
  • Layout container and grid specifications
  • Component hierarchy diagram
  • Responsive breakpoint map
  • Theme toggle implementation
  • Accessibility baseline (keyboard nav, focus states, contrast)

Trigger Examples

  • "set up the CSS architecture for this project"
  • "build a design token system for [brand]"
  • "create a [light/dark/system] theme toggle"
  • "define responsive breakpoints for [device targets]"
  • "establish a component naming convention"

Reference Files

  • references/css-architecture.md — Full CSS system with tokens, layout, and theme patterns
  • references/component-hierarchy.md — Component architecture and naming conventions
Usage Guidance
This is an instruction-only frontend architecture skill: it provides guidelines, CSS token examples, and a small in-browser ThemeManager snippet. It does not request credentials, install software, or call external endpoints. Before using in production, review and adapt the token values, naming conventions, and ThemeManager code to your project's accessibility and security policies (the JS uses localStorage and manipulates the DOM, which is normal for a theme toggle). Also verify licensing and attribution if you will copy large parts into your codebase.
Capability Analysis
Type: OpenClaw Skill Name: frontend-architecture-pro Version: 1.0.4 The 'frontend-architecture-pro' skill bundle is a legitimate tool for establishing CSS design systems and component architectures. All files, including SKILL.md and the reference documentation, focus exclusively on frontend development best practices such as design tokens, responsive layouts, and theme management. No malicious code, data exfiltration, or harmful prompt-injection attempts were found.
Capability Assessment
Purpose & Capability
The name/description (CSS systems, tokens, layout, theme toggles) match the SKILL.md and reference files. Nothing in the package requests unrelated tools, cloud access, or credentials.
Instruction Scope
SKILL.md and reference files contain CSS, component guidance, and a small ThemeManager JS snippet; instructions are focused on architecture, breakpoints, naming, accessibility, and handoff deliverables. They do not instruct the agent to read system files, environment variables, or contact external endpoints.
Install Mechanism
There is no install spec and no code files that would be written or executed by an installer. This instruction-only skill is low-risk from an installation perspective.
Credentials
No environment variables, credentials, or config paths are required. The ThemeManager uses localStorage and DOM APIs in-browser (expected for a theme toggle) and does not access secrets or external services.
Persistence & Privilege
Skill is not always-enabled and uses normal autonomous invocation settings. It does not request persistent system privileges or modify other skills or system configuration.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install frontend-architecture-pro
  3. After installation, invoke the skill by name or use /frontend-architecture-pro
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
Add accessibility, responsive, design-system tags
v1.0.3
Remove agency-agents credit, fix link, add trigger examples, add css tag
v1.0.2
Add web dev tag
v1.0.1
Add missing tags
Metadata
Slug frontend-architecture-pro
Version 1.0.4
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is Frontend Architecture Pro?

Provide technical UX architecture and CSS systems to establish design tokens, layout frameworks, component structure, responsive breakpoints, and theme toggles. It is an AI Agent Skill for Claude Code / OpenClaw, with 135 downloads so far.

How do I install Frontend Architecture Pro?

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

Is Frontend Architecture Pro free?

Yes, Frontend Architecture Pro is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Frontend Architecture Pro support?

Frontend Architecture Pro is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Frontend Architecture Pro?

It is built and maintained by TyroneMok (@tyronecoh); the current version is v1.0.4.

💬 Comments