Agent skill
pattern-ui
Add UI polish with layout and styling
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/pattern-ui
SKILL.md
UI Polish Phase
Only do this AFTER all logic is verified and tests pass.
Read First
docs/common/components/COMPONENTS.md- Full component referencedocs/common/patterns/style.md- Styling patternsdocs/common/patterns/two-way-binding.md- $value, $checked bindings
Available Components
Layout: ct-screen, ct-vstack, ct-hstack, ct-box
Input: ct-input, ct-textarea, ct-checkbox, ct-select
Action: ct-button
Display: ct-text, ct-status-pill
Key Patterns
Two-way binding:
<ct-input $value={field} />
<ct-checkbox $checked={done} />
Layout structure:
<ct-screen title="My Pattern">
<ct-vstack gap="md">
<ct-hstack gap="sm">
{/* horizontal items */}
</ct-hstack>
</ct-vstack>
</ct-screen>
Reference Existing Patterns
Search packages/patterns/ for UI layout examples ONLY (not data/action patterns).
Done When
- UI renders correctly
- Bindings work (typing updates state)
- No regression in data behavior
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?