원클릭으로
web-ui-design
Design responsive web interfaces using modern UX principles, accessibility standards, and mobile-first approaches
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design responsive web interfaces using modern UX principles, accessibility standards, and mobile-first approaches
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design AI agents with appropriate capabilities, tools, and personas for specific software development tasks
Design RESTful APIs with proper resource modeling, HTTP methods, error handling, and clear contracts following REST principles
Document APIs comprehensively with signatures, parameters, return values, errors, and working code examples for developer reference
Implement robust third-party API integrations with proper authentication, error handling, and rate limiting
Apply proven architectural patterns (MVC, layered, microservices) to create maintainable systems with clear separation of concerns
Systematically reproduce, diagnose, and analyze bugs to determine root cause, assess severity, and plan fix strategy
| name | Web UI Design |
| description | Design responsive web interfaces using modern UX principles, accessibility standards, and mobile-first approaches |
| category | ui-design |
| required_tools | ["Read","Write","WebSearch","WebFetch"] |
Design modern, responsive web interfaces using HTML/CSS/JavaScript frameworks, following current UX best practices and accessibility standards.
Context: User profile page
<!-- Mobile-first responsive design -->
<div class="profile-container">
<header class="profile-header">
<img src="avatar.jpg" alt="User avatar" class="avatar">
<h1>John Doe</h1>
</header>
<section class="profile-info">
<div class="info-grid">
<div class="info-item">
<label>Email</label>
<span>john@example.com</span>
</div>
<div class="info-item">
<label>Role</label>
<span>Developer</span>
</div>
</div>
</section>
<footer class="profile-actions">
<button class="btn-primary">Edit Profile</button>
<button class="btn-secondary">Change Password</button>
</footer>
</div>
<style>
.profile-container {
max-width: 800px;
margin: 0 auto;
padding: 1rem;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
}
@media (max-width: 768px) {
.info-grid { grid-template-columns: 1fr; }
}
</style>