mkdocs-8-plugin-configuration

Sub-skill of mkdocs: 8. Plugin Configuration (+4).

5 stars

Best use case

mkdocs-8-plugin-configuration is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of mkdocs: 8. Plugin Configuration (+4).

Teams using mkdocs-8-plugin-configuration 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

$curl -o ~/.claude/skills/8-plugin-configuration/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_internal/documentation/mkdocs/8-plugin-configuration/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/8-plugin-configuration/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How mkdocs-8-plugin-configuration Compares

Feature / Agentmkdocs-8-plugin-configurationStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of mkdocs: 8. Plugin Configuration (+4).

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. Plugin Configuration (+4)

## 8. Plugin Configuration


```yaml
# mkdocs.yml - Comprehensive plugin setup
plugins:
  # Built-in search
  - search:
      lang: en
      separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
      pipeline:
        - stemmer
        - stopWordFilter

*See sub-skills for full details.*

## 9. Versioning with Mike


```bash
# Install mike
pip install mike

# Initialize versioning
mike deploy --push --update-aliases 1.0 latest

# Deploy a new version
mike deploy --push --update-aliases 2.0 latest


*See sub-skills for full details.*

## 10. Custom CSS and JavaScript


```yaml
# mkdocs.yml
extra_css:
  - stylesheets/extra.css
extra_javascript:
  - javascripts/extra.js
  - javascripts/mathjax.js
  - https://polyfill.io/v3/polyfill.min.js?features=es6
  - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
```

*See sub-skills for full details.*

## 11. GitHub Pages Deployment


```yaml
# .github/workflows/docs.yml
name: Deploy Documentation

on:
  push:
    branches:
      - main
    paths:
      - 'docs/**'

*See sub-skills for full details.*

## 12. Versioned Deployment with Mike


```yaml
# .github/workflows/docs-versioned.yml
name: Deploy Versioned Docs

on:
  push:
    tags:
      - 'v*'
  workflow_dispatch:
    inputs:

*See sub-skills for full details.*

Related Skills

portable-baseline-configuration-pattern

5
from vamseeachanta/workspace-hub

Separate portable/universal config from machine-specific settings to enable safe template reuse across environments

hermes-local-configuration

5
from vamseeachanta/workspace-hub

Class-level Hermes local configuration and setup workflows, including config audit gotchas and Windows installation.

cowork-plugin-customizer

5
from vamseeachanta/workspace-hub

Customize or personalize a Codex plugin for a specific organization's tools and workflows by replacing placeholders and configuring MCP servers.

Codex-plugin-update-id-scope

5
from vamseeachanta/workspace-hub

Fix Codex plugin update failures caused by using the short plugin name instead of the installed plugin id and wrong scope.

mkdocs-with-title

5
from vamseeachanta/workspace-hub

Sub-skill of mkdocs: With Title.

mkdocs-warning

5
from vamseeachanta/workspace-hub

MkDocs warning admonition syntax. Use when alerting readers to potential issues or cautions in MkDocs documentation.

mkdocs-tip

5
from vamseeachanta/workspace-hub

MkDocs tip admonition syntax. Use when adding best-practice suggestions or pro tips to MkDocs documentation.

mkdocs-tabbed-code-blocks

5
from vamseeachanta/workspace-hub

Sub-skill of mkdocs: Tabbed Code Blocks.

mkdocs-success

5
from vamseeachanta/workspace-hub

MkDocs success admonition syntax. Use when indicating completed actions or successful outcomes in MkDocs documentation.

mkdocs-subsection-11

5
from vamseeachanta/workspace-hub

Sub-skill of mkdocs: Subsection 1.1.

mkdocs-state-diagram

5
from vamseeachanta/workspace-hub

Sub-skill of mkdocs: State Diagram.

mkdocs-sequence-diagram

5
from vamseeachanta/workspace-hub

Sub-skill of mkdocs: Sequence Diagram.