Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/theyoungastronauts/polaris --skill verify-astro명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Pull just the do-this-yourself steps out of a long answer, so the user doesn't have to read the whole thing.
Hand in-flight work to a fresh session instead of compacting, or pick up from a relay doc.
Close out a session — record what was learned, update any connected stores, and report what's left dirty.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | verify-astro |
| description | Astro verification checklist. |
| disable-model-invocation | true |
Systematic verification checklist for Astro sites. Used by the reviewer agent after code execution.
client:* directives on components that don't need interactivityclient:visible > client:idle > client:load)---), not in <script> tagsinterface Props<style> used (no is:global unless intentional).astro components preferred over framework components for non-interactive UI<title> and <meta name="description">getStaticPaths() (static output)src/pages/404.astro)src/content.config.ts with Zod validationgetCollection() / getEntry() (not raw file reads)astro check passes for content typesbase-100, primary, etc.) — no hardcoded hex@fontsource)<Image> from astro:assets (not raw <img>)loading="eager" or priorityloading="lazy"header, main, footer, nav, section)og:title, og:description, og:image) on all pages@astrojs/sitemap integration)robots.txt exists in public/astro check passesDockerfile.dev exists and uses a supported LTS Node image (node:22-alpine or newer)docker-compose.yml exists with volume mountsMakefile exists and wraps all commands via docker compose execnpm run / npx commands used directly on hostProduce a verification-report.md (same format as verify-django).