Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

astro-dev天文开发者

Agent Skill

astro-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

642

周安装

27

GitHub Stars

13

下载量

225
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:astro-dev(天文开发者)
来源仓库:https://github.com/gigio1023/astro-dev-skill
仓库路径:skills/astro-dev
安装命令:
npx skills add https://github.com/gigio1023/astro-dev-skill --skill astro-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gigio1023/astro-dev-skill --skill astro-dev

简介

astro-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息检索和筛选的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网或文件操作。
  • astro-dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Astro Dev

Documentation Strategy

This skill works best alongside the Astro Docs MCP (search_astro_docs()). The MCP handles single-concept lookups (API details, config options). This skill handles what MCP can't: guardrails that catch wrong code before it's generated, multi-concept patterns that require combining several features, and decision frameworks for choosing between approaches.

MCP-first workflow

  1. For "how does X work?" → Use MCP: search_astro_docs({query: "X"})
  2. For "what's the right pattern for X?" → Use this skill's reference files
  3. Before generating any Astro code → Check the guardrails below to avoid known mistakes
  4. No MCP available? → Fall back to references/doc-endpoints.md for LLM-optimized doc URLs

Quick Router — Read the right file for your task

What you're doingRead this file
Project setup / core APIs / styles / scripts / middlewarereferences/astro-core-patterns.md
Content collections (schema, loader, querying, Zod 4)references/content-collections.md
Blog features (RSS, pagination, tags, SEO, TOC, Shiki)references/blog-recipes.md
Tailwind CSS (config, theming, classes, fonts)references/tailwind.md
Client directives / islands / hydrationreferences/islands-and-hydration.md
Forms, actions, data mutationsreferences/actions-and-forms.md
View transitions, ClientRouter, script lifecyclereferences/view-transitions.md
Sessions, env vars, i18n, CSP, Cloudflare, prerenderreferences/server-features.md
Doc URLs, MCP fallbackreferences/doc-endpoints.md

Load only the module you need. Never preload all.


Agent Guardrails

Patterns that agents consistently generate incorrectly. Each was identified from repeated failures.

1. Content Collections require explicit loader:

// agents generate this (outdated)
const blog = defineCollection({ schema: z.object({...}) })

// correct pattern
import { glob } from 'astro/loaders'
const blog = defineCollection({
  loader: glob({ pattern: '**/*.{md,mdx}', base: './src/content/blog' }),
  schema: ({ image }) => z.object({...})
})

Schema is a function receiving helpers like image(). See references/content-collections.md.

2. Tailwind uses CSS-native config, not JS:

/* agents generate this (outdated) */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* correct pattern */
@import "tailwindcss";
@theme inline {
  --color-primary: oklch(0.6 0.2 250);
}

Use @tailwindcss/vite plugin, NOT @astrojs/tailwind (deprecated). See references/tailwind.md.

3. Astro.glob() does not exist:

// agents generate this (removed API)
const posts = await Astro.glob('./posts/*.md')

// correct pattern
import { getCollection } from 'astro:content'
const posts = await getCollection('blog')

4. render() is a standalone function:

// agents generate this (outdated)
const { Content } = await post.render()

// correct pattern
import { render } from 'astro:content'
const { Content } = await render(post)

5. Integration plugins run before your remarkPlugins: Astro integrations prepend their remark/rehype plugins via astro:config:setup. Your markdown.remarkPlugins run after integration plugins, not before.

To run a remark plugin before an integration (e.g., intercepting code blocks before a syntax highlighter processes them), create your own Astro integration that prepends to the existing plugin list:

export function myIntegration(): AstroIntegration {
  return {
    name: 'my-plugin',
    hooks: {
      'astro:config:setup': ({ config, updateConfig }) => {
        const existing = [...(config.markdown?.remarkPlugins || [])]
        updateConfig({
          markdown: { remarkPlugins: [myRemarkPlugin, ...existing] },
        })
      },
    },
  }
}

Place it after the target integration in the integrations[] array — it reads the current list (which already includes the target's plugins) and prepends yours before them.

Alternative: If the plugin is available as a rehype plugin (e.g., rehype-expressive-code instead of astro-expressive-code), use it in markdown.rehypePlugins directly. Rehype plugins execute in array order, giving you explicit control without the integration wrapper trick. Remark plugins always run before rehype plugins in the markdown pipeline.

6. Choose the right client: directive — both directions matter:

<!-- agents do this (wasteful) -->
<Counter client:load />
<Sidebar client:load />
<Footer client:load />

<!-- correct: choose based on urgency -->
<Counter client:load />
<Sidebar client:idle />
<Footer client:visible />

Use client:idle for non-critical interactive components, client:visible for below-the-fold.

But don't use client:idle on immediately clickable elements either:

<!-- WRONG: user clicks before hydration, click is silently lost -->
<SearchButton client:idle />
<MobileMenu client:idle />

<!-- correct: elements users click immediately need client:load -->
<SearchButton client:load />
<MobileMenu client:load />

If a user can click it in the first 2 seconds, it must be client:load. See references/islands-and-hydration.md.

7. Use Actions for forms, not manual API routes:

// agents build this (verbose, no validation)
// src/pages/api/subscribe.ts
export const POST: APIRoute = async ({ request }) => { ... }

// correct: use Actions (typed, validated, CSRF-protected)
// src/actions/index.ts
export const server = {
  subscribe: defineAction({
    accept: 'form',
    input: z.object({ email: z.email() }),  // Zod 4: z.email(), not z.string().email()
    handler: async (input) => { ... },
  }),
}

See references/actions-and-forms.md.

8. Cookies, sessions, and forms require on-demand rendering:

---
// agents forget this — the page silently fails or behaves unexpectedly
export const prerender = false  // REQUIRED for dynamic features

const session = Astro.cookies.get('session')
---

Pages are prerendered by default. Any page using cookies, sessions, Actions, or POST handling must opt out. See references/server-features.md.

9. Use astro:env for environment variables, not process.env:

// avoid as the default app pattern for secrets
const secret = process.env.API_KEY

// preferred app pattern: define schema in config, import from virtual module
import { API_KEY } from 'astro:env/server'

Note: In Astro 6, import.meta.env values are inlined at build time. For runtime server env vars, use astro:env secrets or process.env. See references/server-features.md.

10. Styles are scoped — class doesn't pass through to children:

<!-- agents assume class passes through (it doesn't) -->
<Card class="mt-4" />

<!-- correct: Card.astro must accept and apply class -->
---
const { class: className, ...rest } = Astro.props
---
<div class:list={['card', className]} {...rest}>
  <slot />
</div>

Use :global() to style slotted/markdown content. See references/astro-core-patterns.md.

11. <script> is deduplicated — don't expect per-instance behavior:

<!-- Script runs ONCE even if component renders 10 times -->
<script>
  document.querySelectorAll('.my-btn').forEach(btn => { ... })
</script>

Pass server data to scripts via data-* attributes, not template expressions. define:vars implies is:inline (no bundling). See references/astro-core-patterns.md.

12. fetch() in frontmatter runs at build time, not per request:

---
// In static mode, this runs ONCE at build time
const data = await fetch('https://api.example.com/data').then(r => r.json())
---

For per-request data, page must be on-demand (export const prerender = false). For client-side re-fetching, use a framework component with client:* directive.

13. Don't build manual locale routing — use Astro's built-in i18n:

// astro.config.ts
export default defineConfig({
  i18n: {
    defaultLocale: 'en',
    locales: ['en', 'ko', 'ja'],
  },
})

Note: Astro 6 changed redirectToDefaultLocale default to false. See references/server-features.md.

14. Import Zod from astro/zod, not from astro:content:

// agents generate this (deprecated in Astro 6)
import { defineCollection, z } from 'astro:content'

// correct pattern
import { defineCollection } from 'astro:content'
import { z } from 'astro/zod'

Also astro:schema is deprecated. Always use astro/zod. Astro 6 ships Zod 4 — z.string().email()z.email(), {message:}{error:}.

15. Legacy content collections are fully removed in Astro 6:

// ERRORS in Astro 6:
// - src/content/config.ts (must be src/content.config.ts)
// - defineCollection({ type: 'content' }) (type field removed)
// - defineCollection({}) without loader (loader is mandatory)

// correct: every collection needs a loader
import { defineCollection } from 'astro:content'
import { glob } from 'astro/loaders'

const blog = defineCollection({
  loader: glob({ pattern: '**/*.md', base: './src/content/blog' }),
})

16. CJS config files are no longer supported:

// ERRORS in Astro 6
// astro.config.cjs — CommonJS not supported
// module.exports = { ... }

// correct: use ESM (.ts or .mjs)
// astro.config.ts
import { defineConfig } from 'astro/config'
export default defineConfig({ ... })

17. With <ClientRouter />: use astro:page-load, not direct calls:

// breaks on first load or after navigation
initFeature()
document.addEventListener('astro:after-swap', initFeature)

// correct: covers both initial load AND navigations
document.addEventListener('astro:page-load', initFeature)

18. With <ClientRouter />: use event delegation, not direct listeners:

// listeners lost when DOM is swapped during navigation
btn.addEventListener('click', handler)

// correct: survives DOM swaps
document.addEventListener('click', (e) => {
  if ((e.target as HTMLElement).closest('.btn')) handler()
})

19. Preserve theme/state in astro:before-swap, not after-swap:

document.addEventListener('astro:before-swap', (e) => {
  e.newDocument.documentElement.setAttribute('data-theme',
    localStorage.getItem('theme-preference') || 'light')
})

Setting in after-swap causes a flash — the new page renders without the attribute before your handler runs.

20. Visibility CSS (display: none) must be in global.css, not component styles: Component <style is:global> loads after HTML paint → hidden content briefly visible (FOUC). Put it in global.css so it's available on first paint.

See references/view-transitions.md for full patterns.


Common Integration Stack

See templates/ for copy-ready config files.

// astro.config.ts
import { defineConfig, fontProviders } from 'astro/config'
import tailwindcss from '@tailwindcss/vite'
import mdx from '@astrojs/mdx'
import react from '@astrojs/react'
import sitemap from '@astrojs/sitemap'

export default defineConfig({
  site: 'https://example.com',
  integrations: [mdx(), react(), sitemap()],
  vite: {
    plugins: [tailwindcss()],
  },
  fonts: [
    {
      provider: fontProviders.google(),
      name: 'Inter',
      cssVariable: '--font-inter',
      weights: ['100 900'],
    },
  ],
})

Workflow: Explore Before Modifying

  1. Check Astro version: package.json"astro" version determines API surface
  2. Check Node version: Astro 6 requires Node 22.12.0+
  3. Check config format: .ts or .mjs (.cjs no longer supported), which integrations are installed
  4. Check content schema: Must be src/content.config.ts (not src/content/config.ts — errors in v6)
  5. Check Tailwind setup: @tailwindcss/vite in astro config vs @astrojs/tailwind
  6. Then write code using the correct API for the detected versions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.29%
按下载量换算84

Claude

28.25%
按下载量换算64

Cursor

19.27%
按下载量换算43

Gemini CLI

9.28%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills