Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

Generated Pages

When you set "openapi": "openapi.json" on a tab, Holocron generates one page per operation in the spec.

Slug format

Each operation gets a slug derived from the method and path:
OperationGenerated slug
GET /usersapi/get-users
POST /usersapi/post-users
The openapiBase prefix (default "api") is prepended to all slugs.

Grouping by tags

Operations are grouped by their tags field in the spec. Each tag becomes a sidebar group:
paths: /users: get: tags: [Users] operationId: listUsers post: tags: [Users] operationId: createUser /teams: get: tags: [Teams] operationId: listTeams
This produces:
  • Users group: get-users, post-users
  • Teams group: get-teams

Page layout

Generated API pages use a two-column layout:
  • Left column: description, parameters, request body schema
  • Right column: request and response examples (displayed in the aside)