원클릭으로
badge-tag
Generate badges, tags, and status indicators with multiple color variants.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate badges, tags, and status indicators with multiple color variants.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Adapt designs to work across different screen sizes, devices, contexts, or platforms. Ensures consistent experience across varied environments.
Improve layout, spacing, and visual rhythm. Fixes monotonous grids, inconsistent spacing, and weak visual hierarchy to create intentional compositions.
Perform comprehensive audit of interface quality across accessibility, performance, theming, and responsive design. Generates detailed report of issues with severity ratings and recommendations.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
One-time setup that gathers design context for your project and saves it to your AI config file. Run once to establish persistent design guidelines.
| name | badge-tag |
| description | Generate badges, tags, and status indicators with multiple color variants. |
.badge {
display: inline-flex;
align-items: center;
padding: 3px 10px;
border-radius: 100px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.02em;
}
.badge-default {
background: rgba(255, 255, 255, 0.06);
color: rgba(255, 255, 255, 0.6);
}
.badge-primary {
background: rgba(var(--accent-rgb), 0.12);
color: var(--accent);
}
.badge-success {
background: rgba(34, 197, 94, 0.12);
color: #22c55e;
}
.badge-warning {
background: rgba(245, 158, 11, 0.12);
color: #f59e0b;
}
.badge-danger {
background: rgba(239, 68, 68, 0.12);
color: #ef4444;
}
.tag {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 4px 10px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
}
.tag-removable::after {
content: '×';
margin-left: 4px;
cursor: pointer;
opacity: 0.5;
}
.tag-removable:hover::after {
opacity: 1;
}
Rules: