agent-comms
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
Material-UI (MUI) styling standards: sx-prop priority, theme tokens, spacing scale, responsive design, and accessibility. TRIGGER when: styling MUI components, defining theme tokens, or building responsive layouts. SKIP: component logic and hooks (use react-patterns);
$ npx -y skills add komluk/scaffolding --skill mui-styling --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mui-stylingContext preview
The summary Claude sees to decide when to auto-load this skill.
Material-UI (MUI) styling standards: sx-prop priority, theme tokens, spacing scale, responsive design, and accessibility. TRIGGER when: styling MUI components, defining theme tokens, or building responsive layouts. SKIP: component logic and hooks (use react-patterns);
name: mui-styling description: "Material-UI (MUI) styling standards: sx-prop priority, theme tokens, spacing scale, responsive design, and accessibility. TRIGGER when: styling MUI components, defining theme tokens, or building responsive layouts. SKIP: component logic and hooks (use react-patterns); cross-stack UX/design decisions (use ui-ux-pro-max)." context: fork agent: general-purpose
Material-UI styling standards and best practices.
---
| Priority | Approach | Use When | |----------|----------|----------| | 1st | `sx` prop | Most styling needs | | 2nd | `styled()` API | Reusable styled components | | 3rd | Theme overrides | Global component defaults | | Avoid | Inline CSS / CSS files | Never use in MUI projects |
---
| Value | Pixels | Usage | |-------|--------|-------| | 0.5 | 4px | Tight spacing | | 1 | 8px | Default small | | 2 | 16px | Default medium | | 3 | 24px | Section spacing | | 4 | 32px | Large spacing |
| Prop | CSS Property | |------|--------------| | `m` | margin | | `p` | padding | | `mt`, `mr`, `mb`, `ml` | margin-top/right/bottom/left | | `pt`, `pr`, `pb`, `pl` | padding-top/right/bottom/left | | `mx`, `my` | margin x/y axis | | `px`, `py` | padding x/y axis | | `gap` | flex/grid gap |
---
| Category | Values | |----------|--------| | Primary | `primary.main`, `primary.light`, `primary.dark`, `primary.contrastText` | | Secondary | `secondary.main`, `secondary.light`, `secondary.dark` | | Status | `error.main`, `warning.main`, `info.main`, `success.main` | | Grey | `grey.100` through `grey.900` | | Background | `background.default`, `background.paper` | | Text | `text.primary`, `text.secondary`, `text.disabled` |
| Use Case | Color | |----------|-------| | Primary actions | `primary.main` | | Secondary actions | `secondary.main` | | Error states | `error.main` | | Success feedback | `success.main` | | Backgrounds | `background.paper` or `background.default` | | Body text | `text.primary` | | Helper text | `text.secondary` |
---
| Key | Min Width | Target | |-----|-----------|--------| | `xs` | 0px | Mobile phones | | `sm` | 600px | Tablets portrait | | `md` | 900px | Tablets landscape | | `lg` | 1200px | Desktops | | `xl` | 1536px | Large screens |
| Syntax | Description | |--------|-------------| | `{ xs: value }` | Mobile first, applies to xs and up | | `{ sm: value }` | Applies to sm and up | | Object syntax | `{ xs: '100%', sm: 400, md: 600 }` |
| Guideline | Description | |-----------|-------------| | Mobile first | Start with `xs`, override for larger | | Test all breakpoints | Verify layout at each breakpoint | | Use relative units | Prefer `%`, `vh`, `vw` over fixed `px` | | Hide/show elements | Use `display: { xs: 'none', md: 'block' }` |
---
| Component | Use When | |-----------|----------| | `Box` | Generic container, flexbox layouts | | `Stack` | Vertical/horizontal lists with spacing | | `Grid` | 12-column grid layouts | | `Container` | Centered max-width wrapper |
| Property | Values | |----------|--------| | `display` | `'flex'`, `'inline-flex'` | | `flexDirection` | `'row'`, `'column'` | | `justifyContent` | `'flex-start'`, `'center'`, `'space-between'` | | `alignItems` | `'flex-start'`, `'center'`, `'stretch'` | | `gap` | Spacing value (1, 2, 3...) |
| Prop | Description | |------|-------------| | `container` | Defines grid container | | `item` | Defines grid item | | `xs`, `sm`, `md`, `lg` | Columns at breakpoint (1-12) | | `spacing` | Gap between items |
---
| Variant | Use For | |---------|---------| | `h1` - `h6` | Headings (use semantic hierarchy) | | `body1` | Primary body text | | `body2` | Secondary body text | | `caption` | Small helper text | | `button` | Button text |
| Guideline | Description | |-----------|-------------| | Semantic hierarchy | h1 > h2 > h3 (don't skip levels) | | Color for emphasis | Use `text.secondary` for less important | | Consistent variants | Same content type = same variant |
---
| Variant | Use When | |---------|----------| | `contained` | Primary actions | | `outlined` | Secondary actions | | `text` | Tertiary actions, links |
| Element | Standard | |---------|----------| | Padding | `p: 2` or `p: 3` | | Border radius | Use theme default | | Shadow | Use theme shadows (1-24) |
| Element | Standard | |---------|----------| | TextField | `fullWidth` for forms | | Spacing | `Stack spacing={2}` between fields | | Labels | Always provide `label` prop |
---
| Avoid | Use Instead | |-------|-------------| | Inline CSS objects | `sx` prop with theme values | | `!important` | Increase specificity via `sx` | | Fixed pixel values | `theme.spacing()` values | | Hardcoded colors | `theme.palette` colors | | CSS classes | `sx` prop or `styled()` | | External CSS files | MUI styling system |
---
---
| Standard | Implementation | |----------|----------------| | Color contrast | Use theme colors (WCAG compliant) | | Focus indicators | Don't remove, customize if needed | | Touch targets |
Spec-driven multi-agent orchestration for Claude Code — pure markdown, zero backend, runs on the stock runtime. 13 agents, 36 skills, 19 commands, 15 hooks, per-phase model tiers, opt-in lifecycle hooks, optional cross-device semantic memory.
Repo: komluk/scaffolding
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge. TRIGGER when: reading or writing agent memory files, choosing which…
RESTful API design standards: resource naming, HTTP methods, status codes, pagination, versioning. TRIGGER when: designing new API endpoints, defining error…
Optimize Claude Code context-window usage for accuracy and cost. TRIGGER when: hitting context limits, structuring prompts for an agent, or trimming what gets…
Schema design, index strategy, migration safety, and query analysis. TRIGGER when: designing tables or indexes, writing a migration, or diagnosing a slow…