docusaurus-8-versioning
Sub-skill of docusaurus: 8. Versioning (+5).
Best use case
docusaurus-8-versioning is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of docusaurus: 8. Versioning (+5).
Teams using docusaurus-8-versioning should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/8-versioning/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How docusaurus-8-versioning Compares
| Feature / Agent | docusaurus-8-versioning | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of docusaurus: 8. Versioning (+5).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 8. Versioning (+5)
## 8. Versioning
```bash
# Create a new version
npm run docusaurus docs:version 1.0
# Creates:
# - versioned_docs/version-1.0/
# - versioned_sidebars/version-1.0-sidebars.json
# - versions.json
```
*See sub-skills for full details.*
## 9. Internationalization (i18n)
```javascript
// docusaurus.config.js
module.exports = {
i18n: {
defaultLocale: 'en',
locales: ['en', 'fr', 'de'],
localeConfigs: {
en: { label: 'English', htmlLang: 'en-US' },
fr: { label: 'Francais', htmlLang: 'fr-FR' },
},
*See sub-skills for full details.*
## 10. Search with Algolia
```javascript
// docusaurus.config.js
module.exports = {
themeConfig: {
algolia: {
appId: 'YOUR_APP_ID',
apiKey: 'YOUR_SEARCH_API_KEY',
indexName: 'your_index_name',
contextualSearch: true,
},
*See sub-skills for full details.*
## 11. Custom CSS
```css
/* src/css/custom.css */
:root {
--ifm-color-primary: #2e8555;
--ifm-code-font-size: 95%;
--ifm-font-family-base: 'Inter', sans-serif;
}
[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
}
.navbar { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
```
## 12. GitHub Pages Deployment
```yaml
# .github/workflows/deploy.yml
name: Deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
*See sub-skills for full details.*
## 13. Vercel/Netlify Deployment
```json
// vercel.json
{
"buildCommand": "npm run build",
"outputDirectory": "build",
"framework": "docusaurus-2"
}
```
```toml
# netlify.toml
[build]
command = "npm run build"
publish = "build"
```Related Skills
skill-creator-versioning
Sub-skill of skill-creator: Versioning.
github-release-manager-semantic-versioning
Sub-skill of github-release-manager: Semantic Versioning (+2).
docusaurus-whats-new
Sub-skill of docusaurus: What's New.
docusaurus-subsection-h3
Sub-skill of docusaurus: Subsection (H3).
docusaurus-integration-with-typedoc
Sub-skill of docusaurus: Integration with TypeDoc (+1).
docusaurus-custom-homepage
Sub-skill of docusaurus: Custom Homepage (+1).
docusaurus-build-fails-with-module-not-found
Sub-skill of docusaurus: Build Fails with Module Not Found (+6).
docusaurus-6-admonitions
Sub-skill of docusaurus: 6. Admonitions (+1).
docusaurus-5-mdx-and-react-components
Sub-skill of docusaurus: 5. MDX and React Components.
docusaurus-1-project-structure
Sub-skill of docusaurus: 1. Project Structure (+3).
docusaurus-1-documentation-structure
Sub-skill of docusaurus: 1. Documentation Structure (+2).
documentation-docusaurus-setup
Sub-skill of documentation: Docusaurus Setup.