원클릭으로
ultracite
Skill: ultracite
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Skill: ultracite
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
General repo context and behavior guidelines
Skill: chat-context
General repo context and behavior guidelines
Documentation review and fix workflow for MDX files
Skill: lazy-prefetch-pattern
Skill: react
| name | ultracite |
| description | Skill: ultracite |
This project uses Ultracite, a zero-config Biome preset that enforces strict code quality standards through automated formatting and linting.
npx ultracite@6.3.3 fixnpx ultracite@6.3.3 checknpx ultracite@6.3.3 doctorBiome (the underlying engine) provides extremely fast Rust-based linting and formatting. Most issues are automatically fixable.
Write code that is accessible, performant, type-safe, and maintainable. Focus on clarity and explicit intent over brevity.
unknown over any when the type is genuinely unknownas const) for immutable values and literal typesfor...of loops over .forEach() and indexed for loops?.) and nullish coalescing (??) for safer property accessconst by default, let only when reassignment is needed, never varawait promises in async functions - don't forget to use the return valueasync/await syntax instead of promise chains for better readabilitykey prop for elements in iterables (prefer unique IDs over array indices)<button>, <nav>, etc.) instead of divs with rolesconsole.log, debugger, and alert statements from production codeError objects with descriptive messages, not strings or other valuestry-catch blocks meaningfully - don't catch errors just to rethrow themrel="noopener" when using target="_blank" on linksdangerouslySetInnerHTML unless absolutely necessaryeval() or assign directly to document.cookie<Image>) over <img> tagsNext.js:
<Image> component for imagesnext/head or App Router metadata API for head elementsReact 19+:
React.forwardRefSolid/Svelte/Vue/Qwik:
class and for attributes (not className or htmlFor)it() or test() blocks.only or .skip in committed codedescribe nestingBiome's linter will catch most issues automatically. Focus your attention on:
Most formatting and common issues are automatically fixed by Biome. Run npx ultracite@6.3.3 fix before committing to ensure compliance.