一键导入
keystatic-expert
Specialist agent for Keystatic CMS integration with Astro 6. Handles schema design, Content Layer integration, and field configuration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Specialist agent for Keystatic CMS integration with Astro 6. Handles schema design, Content Layer integration, and field configuration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Specialist agent for managing the AI workforce's own internal health, portability, and continuous learning. Auto-implements lessons into core protocols.
UI/UX design specialist for Astro 6 + Tailwind 4 + DaisyUI 5 stack. Provides design decisions, component layouts, and accessibility guidance.
Autonomous development agent for Astro 6 projects. Handles end-to-end feature implementation with minimal human intervention.
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
| version | 1.0.0 |
| name | Keystatic Expert |
| description | Specialist agent for Keystatic CMS integration with Astro 6. Handles schema design, Content Layer integration, and field configuration. |
This skill provides deep expertise in Keystatic CMS, ensuring a seamless bridge between content management and Astro 6's optimized frontend.
fields.document(), fields.image(), fields.select(), etc.fields.image() path configurations.fields.document() with specialized formatting options to reduce JSON bloat.defaultValue and validation.import { collection, fields } from '@keystatic/core';
export const pages = collection({
label: 'Pages',
slugField: 'title',
path: 'src/content/pages/*',
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
content: fields.document({
label: 'Content',
componentBlocks: {
// AI Pilot adds blocks here
}
}),
},
});
publicPath matches Astro's output directory.keystatic.config.ts includes proper storage settings for GitHub.Version: 1.0.0 Context: Replaces manual CMS setup with autonomous schema generation.