Read this in Japanese (日本語) 🇯🇵
A Starlight plugin that turns your documentation into AI-installable skills.
Document once — ship to humans and AI agents.
npx skills add <your-github-repo>
As AI takes on more of the coding and review work, the risk of over-reliance grows. While human oversight is still essential, skills should be installable by both humans and AI agents from the same source of truth.
This plugin lets you maintain your skills as normal Starlight documentation pages and automatically publishes them as discoverable, spec-compliant skill files.
npm install starlight-skills// astro.config.mjs
import starlight from '@astrojs/starlight';
import starlightSkills from 'starlight-skills';
export default defineConfig({
integrations: [
starlight({
title: 'My Docs',
plugins: [
starlightSkills({
// optional — see Options below
}),
],
}),
],
});Full documentation, including getting started guides, frontmatter schemas, and configuration options, is available on our dedicated documentation site: