用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/theyoungastronauts/polaris --skill verify-astro命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| 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).