一键导入
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.