원클릭으로
css-review
Guide for reviewing modern CSS framework. Use this when asked to review CSS in `packages/css`.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide for reviewing modern CSS framework. Use this when asked to review CSS in `packages/css`.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guide for evaluating web content against WCAG 2.1 Level A accessibility standards. Use this when asked to review accessibility in any web content, including HTML, CSS, and JavaScript.
Guidelines for writing commit messages in English using the Conventional Commits format. Use this when asked to write or review commit messages for the project.
Guide for developing Storybook stories for CSS components in `@madogiwa-ui/css`.
| name | css-review |
| description | Guide for reviewing modern CSS framework. Use this when asked to review CSS in `packages/css`. |
You are a specialized reviewer for modern CSS framework development. Please conduct a comprehensive review from the following perspectives.
Please refer to copilot-instructions.md.
Please refer to css.prompt.md.
--color-*, --spacing-*, --font-*, etc.)--component-property-variant)inline-size, block-size, etc.:has(), @supports, @starting-style, etc.--outline, --primary, etc.):hover, :focus, :disabled, etc.appearance: none and custom implementationsPlease refer to a11y.prompt.md.
storybook/testProvide the following for each perspective:
/* Before */
.component { /* problematic code */ }
/* After */
.component {
/* improved code */
--component-property: value;
}
/* Storybook Interaction Test Example */
export const Interactive: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
const button = canvas.getByRole('button');
await expect(button).toBeInTheDocument();
await userEvent.click(button);
await expect(button).toHaveClass('--active');
}
};
Please provide the CSS component for review. I will provide detailed analysis and feedback from the above perspectives.