Docs site generator
Skill a5c-ai/babysitter/library/specializations/software-architecture/skills/docs-site-generator
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
npx -y skills add a5c-ai/babysitter --skill docs-site-generatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Generate documentation sites using Docusaurus, MkDocs, or VuePress
SKILL.md
2.6 KB, as published. Nobody here has run it
Documentation Site Generator Skill
Overview
Generates documentation sites using popular frameworks (Docusaurus, MkDocs, VuePress) with custom theme configuration and search integration.
Capabilities
- Generate Docusaurus documentation sites
- Generate MkDocs documentation sites
- VuePress support
- Custom theme configuration
- Search integration (Algolia, local)
- Versioning support
- Multi-language support
- Sidebar auto-generation
Target Processes
- c4-model-documentation
- api-design-specification
- observability-implementation
Input Schema
{
"type": "object",
"required": ["framework", "docsPath"],
"properties": {
"framework": {
"type": "string",
"enum": ["docusaurus", "mkdocs", "vuepress"],
"default": "docusaurus"
},
"docsPath": {
"type": "string",
"description": "Path to documentation source files"
},
"outputDir": {
"type": "string",
"description": "Output directory for generated site"
},
"config": {
"type": "object",
"properties": {
"title": { "type": "string" },
"description": { "type": "string" },
"baseUrl": { "type": "string" },
"theme": { "type": "string" },
"search": {
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": ["algolia", "local"]
}
}
},
"versioning": {
"type": "boolean",
"default": false
}
}
}
}
}
Output Schema
{
"type": "object",
"properties": {
"outputDir": {
"type": "string"
},
"configPath": {
"type": "string"
},
"pages": {
"type": "array",
"items": { "type": "string" }
},
"buildCommand": {
"type": "string"
}
}
}
Usage Example
{
kind: 'skill',
skill: {
name: 'docs-site-generator',
context: {
framework: 'docusaurus',
docsPath: 'docs',
outputDir: 'website',
config: {
title: 'Project Documentation',
baseUrl: '/docs/',
theme: '@docusaurus/theme-classic'
}
}
}
}