mcpbeat Sign in

Fix Sphinx Agent Skill

Automatically fix Sphinx documentation issues in any Azure SDK for Python package following Azure SDK Python documentation standards.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
5584
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Azure/azure-sdk-for-python --skill fix-sphinx

The instruction itself

17 sections, as written by the author

Fix Sphinx Documentation Issues Skill

This skill automatically fixes Sphinx documentation warnings and errors in any Azure SDK for Python package by analyzing existing documentation patterns and applying fixes with 100% confidence.

Overview

Intelligently fixes Sphinx documentation issues by:

  • Getting the package path or GitHub issue URL from the user
  • Reading and analyzing the issue details (if issue URL provided)
  • Setting up or using existing virtual environment
  • Installing required documentation dependencies
  • Running Sphinx build on the package
  • Analyzing the Sphinx output to identify warnings and errors
  • Searching codebase for existing documentation patterns to follow
  • Applying fixes only with 100% confidence
  • Re-running Sphinx build to verify fixes

10. Creating a pull request

11. Providing a summary of what was fixed

Running Sphinx

Command:

cd <package-path>
azpysdk --isolate sphinx .

> Note: azpysdk sphinx runs Sphinx documentation build for the package. This checks for documentation warnings and errors.

Using Latest Sphinx:

azpysdk --isolate next-sphinx .

> Use azpysdk next-sphinx to run with the latest version of Sphinx. This is useful for catching issues that may be flagged by newer Sphinx versions.

Reference Documentation

Fixing Strategy

Step 0: Get Package and Issue Details

Check if user provided in their request:

  • GitHub issue URL (look for https://github.com/Azure/azure-sdk-for-python/issues/... in user's message)
  • Package path or name (e.g. sdk/storage/azure-storage-blob or azure-storage-blob)
  • Virtual environment path (look for phrases like "using venv", "use env", "virtual environment at", or just the venv name)

If both GitHub issue URL and package path are missing:

Ask: "Please provide either the GitHub issue URL or the package path (e.g. sdk/storage/azure-storage-blob) for the Sphinx documentation problems you want to fix."

If a GitHub issue URL is provided:

Read the issue to understand which package and documentation files/modules are affected, and the specific warnings to fix.

If only a package path is provided:

Run Sphinx checks directly on the package.

If virtual environment is missing:

Ask: "Do you have an existing virtual environment path, or should I create 'env'?"

Step 1: CRITICAL - Activate Virtual Environment FIRST

IMMEDIATELY activate the virtual environment before ANY other command:

# Activate the provided virtual environment (e.g., env, venv)
.\<venv-name>\Scripts\Activate.ps1

# If creating new virtual environment:
python -m venv env
.\env\Scripts\Activate.ps1

⚠️ IMPORTANT: ALL subsequent commands MUST run within the activated virtual environment. Never run commands outside the venv.

Step 2: Install Dependencies (within activated venv)

# Navigate to the package directory (within activated venv)
cd <package-path>

# Install dev dependencies from dev_requirements.txt (within activated venv)
pip install -r dev_requirements.txt

# Install the package in editable mode (within activated venv)
pip install -e .

Step 3: Identify Target Files (within activated venv)

Based on the GitHub issue details, determine which documentation files to check:

Option A - Run Sphinx on the package and review output:

# Ensure you're in the package directory (within activated venv)
cd <package-path>

# Run Sphinx build on the package
azpysdk --isolate sphinx .
# Review output for warnings/errors in the specific files/modules mentioned in the issue

Option B - Check modified documentation files (if no specific target):

git diff --name-only HEAD | Select-String "\.py$|\.rst$|\.md$" | Select-String "<package-path>"
git diff --cached --name-only | Select-String "\.py$|\.rst$|\.md$" | Select-String "<package-path>"

Step 4: Run Sphinx (within activated venv)

⚠️ Ensure virtual environment is still activated before running:

# Navigate to the package directory
cd <package-path>

# Run Sphinx build on the package (within activated venv)
azpysdk --isolate sphinx .
# Review output for the specific files/modules from the issue

Step 5: Analyze Warnings and Errors

Parse the Sphinx output to identify:

  • Warning/error type (e.g., missing docstring, invalid reference, malformed docstring)
  • File path and line number
  • Specific issue description
  • Cross-reference with the GitHub issue (if provided) to ensure you're fixing the right problems

Step 6: Search for Existing Patterns

Before fixing, search the codebase for how similar documentation is handled:

# Example: Search for similar docstring patterns
grep -r "docstring_pattern" <package-path>/
grep -r ":param" <package-path>/
grep -r ":return:" <package-path>/

Use the existing documentation patterns to ensure consistency.

Step 7: Apply Fixes (ONLY if 100% confident)

ALLOWED ACTIONS:

✅ Fix documentation warnings/errors with 100% confidence

✅ Use existing documentation patterns as reference

✅ Follow Azure SDK Python documentation guidelines

✅ Make minimal, targeted changes to docstrings

✅ Add missing docstrings following existing patterns

✅ Fix malformed docstring syntax

✅ Correct parameter and return type documentation

FORBIDDEN ACTIONS:

❌ Fix warnings without complete confidence

❌ Create new documentation files for solutions

❌ Import non-existent modules in documentation

❌ Add new dependencies or imports

❌ Make unnecessary large changes

❌ Change code logic without clear reason

❌ Delete documentation without clear justification

Step 8: Verify Fixes

Re-run Sphinx to ensure:

  • The warning/error is resolved
  • No new warnings were introduced
  • The documentation builds successfully
  • The generated documentation looks correct

Step 9: Summary

Provide a summary:

  • GitHub issue being addressed
  • Number of warnings/errors fixed
  • Number of warnings/errors remaining
  • Types of fixes applied
  • Any documentation issues that need manual review

Step 10: Create Pull Request

> ⚠️ REQUIRED when a GitHub issue URL was provided: You MUST create a pull request after validating fixes. This is not optional.

Create a pull request with a descriptive title and body referencing the issue. Include what was fixed and confirm all Sphinx documentation checks pass. The PR title should follow the format: "fix(<package-name>): Resolve sphinx errors (#<issue-number>)".

Notes

  • Always read existing documentation patterns to understand the style before making changes
  • Prefer following existing documentation patterns over strict rule compliance
  • If unsure about a fix, mark it for manual review
  • Some warnings may require architectural changes - don't force fixes
  • Test the documentation build after fixing to ensure it renders correctly
  • Focus on documentation clarity and completeness for end users

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take azure/fix-sphinx from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference pip. Without those the skill loads but fails at the first command.