Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightOpenAPI, { openAPISidebarGroups } from 'starlight-openapi';
import starlightLlmsTxt from 'starlight-llms-txt';

// https://astro.build/config
export default defineConfig({
Expand Down Expand Up @@ -30,6 +31,13 @@ export default defineConfig({
},
],
plugins: [
// Emit /llms.txt and /llms-full.txt so AI tools can ingest the
// docs in one fetch. Pairs with the in-repo AI tooling context
// shipped from EphyraSoftware/ordo (ai-context/ tree).
starlightLlmsTxt({
description:
'Self-hosted, declarative infrastructure management for stateful machines. Module authors write *.ordo.yaml state files; operators apply state to a tagged fleet.',
}),
starlightOpenAPI([
{
base: 'reference/api',
Expand Down
257 changes: 257 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"@astrojs/starlight": "^0.40.0",
"astro": "^6.1.9",
"sharp": "^0.35.1",
"starlight-llms-txt": "^0.10.0",
"starlight-openapi": "^0.25.3"
}
}