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

astroastro 搜索

Agent Skill

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

总安装

955

周安装

39

GitHub Stars

10

下载量

306
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill astro

简介

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

  • 它支持根据关键词、任务场景或来源线索进行信息检索,帮助 Agent 高效获取所需资料。
  • 可通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • astro 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Astro

Overview

Astro is an all-in-one web framework for building fast, content-focused websites. It uses an islands architecture that ships zero JavaScript by default, hydrating only interactive components on demand. Components from React, Svelte, Vue, Solid, and Preact can coexist in a single project.

When to use: Content-driven sites (blogs, docs, marketing), portfolios, e-commerce storefronts, any site where most pages are primarily static with isolated interactive regions.

When NOT to use: Highly interactive single-page applications (dashboards, real-time collaboration tools), apps requiring full client-side routing with shared global state across all components.

Quick Reference

PatternAPI / DirectiveKey Points
Content collectiondefineCollection({loader, schema})Zod schemas, glob/file loaders, type-safe queries
Query collectiongetCollection('blog')Returns typed array, supports filter callback
Single entrygetEntry('blog', 'my-post')Fetch by collection name and entry ID
Island (load)<Component client:load />Hydrate immediately on page load
Island (idle)<Component client:idle />Hydrate when browser is idle
Island (visible)<Component client:visible />Hydrate when component enters viewport
Island (media)<Component client:media="(max-width: 768px)" />Hydrate on media query match
Island (client-only)<Component client:only="react" />Skip SSR, render only on client
View transitions<ClientRouter />Add to <head>, enables SPA-like navigation
Persist statetransition:persistMaintain island state across navigations
Programmatic navigatenavigate(href)Client-side navigation from scripts
Static outputoutput: 'static'Pre-render all pages at build time (default)
Server outputoutput: 'server'Server-render all pages on demand
Hybrid (opt-in SSR)output: 'static' + per-page prerender = falseStatic by default, opt individual pages into SSR
Hybrid (opt-in static)output: 'server' + per-page prerender = trueSSR by default, opt individual pages into static
Server islands<Component server:defer />Defer server rendering for dynamic content in static
MiddlewareonRequest(context, next)Runs before every route, chain with sequence()
Astro DB tabledefineTable({columns})Type-safe SQL with column definitions
Framework componentImport .jsx / .svelte / .vueAuto-detected by file extension
Integrationastro add reactCLI to add framework adapters and tools
Render contentconst {Content} = await entry.render()Compile Markdown/MDX to component
Dynamic routesgetStaticPaths() + collection queryGenerate pages from collection entries
API endpointexport const GET: APIRouteServer-rendered REST endpoints
Shared island statenanostoresReactive state across framework boundaries
Environment variablesimport.meta.env.PUBLIC_*PUBLIC_ prefix for client-accessible vars
Transition animationtransition:animate="slide"initial, fade, slide, none
Prefetch linksdata-astro-prefetchhover, viewport, load, or false
Collection referencereference('authors')Type-safe cross-collection relations
Script re-executiondata-astro-rerunRe-run <script> on every view transition navigation
Redirectcontext.redirect(url, status)Redirect from middleware or server pages

Common Mistakes

MistakeCorrect Pattern
Adding client: directive to .astro componentsOnly UI framework components (React, Svelte, Vue) accept client:
Using client:load everywhereDefault to client:idle or client:visible; use client:load sparingly
Forgetting framework string with client:onlyMust specify framework: client:only="react"
Mixing framework components in non-Astro filesOnly .astro files can compose components from multiple frameworks
Using output: 'server' for mostly static sitesUse output: 'static' with per-page prerender = false for hybrid
Omitting <ClientRouter /> for view transitionsMust be in <head> of every page (use shared layout)
Content config not at src/content.config.tsFile must be named content.config.ts in src/ root
Not awaiting getCollection() callsAlways await collection queries in frontmatter
Importing from astro:content in client scriptsContent APIs are server-only; pass data as props to client components
Placing middleware outside src/middleware.tsMiddleware must be at src/middleware.ts or src/middleware/index.ts
Passing functions as props to islandsOnly serializable data crosses the server/client boundary
Using transition:persist without matching pagesComponent must appear on both old and new page with same persist value
Missing adapter for server/hybrid modeInstall an adapter: npx astro add vercel (or node, netlify, etc.)

Delegation

  • Pattern discovery: Use Explore agent
  • Build configuration: Use Task agent
  • Code review: Delegate to code-reviewer agent
If the tailwind skill is available, delegate styling and Tailwind CSS configuration to it. If the vitest skill is available, delegate unit testing patterns to it. If the playwright skill is available, delegate end-to-end testing patterns to it. If the vite skill is available, delegate build configuration and Vite plugin setup to it. If the drizzle skill is available, delegate advanced database query patterns to it. If the sentry skill is available, delegate error monitoring and observability setup to it. If the pino-logging skill is available, delegate server-side logging configuration to it. If the tanstack-query skill is available, delegate client-side data fetching and caching to it.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.66%
按下载量换算112

Claude

31.62%
按下载量换算97

Cursor

18.51%
按下载量换算57

Gemini CLI

10%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills