sphinx-7-intersphinx-cross-references

Sub-skill of sphinx: 7. Intersphinx Cross-References (+5).

5 stars

Best use case

sphinx-7-intersphinx-cross-references is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of sphinx: 7. Intersphinx Cross-References (+5).

Teams using sphinx-7-intersphinx-cross-references 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/7-intersphinx-cross-references/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/development/documentation/sphinx/7-intersphinx-cross-references/SKILL.md"

Manual Installation

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

How sphinx-7-intersphinx-cross-references Compares

Feature / Agentsphinx-7-intersphinx-cross-referencesStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of sphinx: 7. Intersphinx Cross-References (+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

# 7. Intersphinx Cross-References (+5)

## 7. Intersphinx Cross-References


```python
# conf.py
intersphinx_mapping = {
    'python': ('https://docs.python.org/3', None),
    'numpy': ('https://numpy.org/doc/stable/', None),
    'pandas': ('https://pandas.pydata.org/docs/', None),
    'scipy': ('https://docs.scipy.org/doc/scipy/', None),
    'matplotlib': ('https://matplotlib.org/stable/', None),
    'sklearn': ('https://scikit-learn.org/stable/', None),
}

*See sub-skills for full details.*

## 8. Multiple Output Formats


```bash
# Build HTML
sphinx-build -b html docs/source docs/build/html

# Build PDF (requires LaTeX)
sphinx-build -b latex docs/source docs/build/latex
cd docs/build/latex && make

# Build ePub
sphinx-build -b epub docs/source docs/build/epub

*See sub-skills for full details.*

## 9. Read the Docs Configuration


```yaml
# .readthedocs.yaml
version: 2

build:
  os: ubuntu-22.04
  tools:
    python: "3.11"
  jobs:
    pre_build:

*See sub-skills for full details.*

## 10. Custom Extensions


```python
# docs/source/_extensions/custom_directive.py

from docutils import nodes
from docutils.parsers.rst import Directive
from sphinx.application import Sphinx


class VersionAddedDirective(Directive):
    """

*See sub-skills for full details.*

## 11. GitHub Actions Deployment


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

on:
  push:
    branches: [main]
    paths:
      - 'docs/**'
      - 'src/**/*.py'

*See sub-skills for full details.*

## 12. API Documentation with sphinx-autoapi


```python
# conf.py - Using sphinx-autoapi (alternative to autodoc)
extensions = [
    'autoapi.extension',
]

# AutoAPI configuration
autoapi_type = 'python'
autoapi_dirs = ['../../src/mypackage']
autoapi_template_dir = '_templates/autoapi'

*See sub-skills for full details.*

Related Skills

planning-lane-cross-review-permission-fallback

5
from vamseeachanta/workspace-hub

Handle overnight planning-only lanes where plan revision/editing works but real cross-provider review dispatch is permission-blocked.

github-actions-cross-platform-validation-gotchas

5
from vamseeachanta/workspace-hub

Execution-time GitHub Actions pitfalls discovered while fixing cross-platform CI workflows — path-filter non-triggers, Windows shell parsing mismatches, and job-scoped validation.

gtm-cross-review-readiness

5
from vamseeachanta/workspace-hub

Adversarial review workflow for GTM feature work before user approval — validate shipped artifacts, live URLs, public-facing collateral, and issue/body status drift.

cross-review-policy

5
from vamseeachanta/workspace-hub

Actionable review routing policy — which agent reviews which agent's work, default three-agent adversarial review

cross-agent-skill-audit

5
from vamseeachanta/workspace-hub

Audit and fix skill accessibility across all 4 agents (Hermes, Codex, Codex CLI, Gemini CLI). Identifies gaps in symlink wiring, external_dirs, and per-repo routing.

repo-cleanup-references-to-remove

5
from vamseeachanta/workspace-hub

Sub-skill of repo-cleanup: References to Remove.

github-actions-2-matrix-builds-for-cross-platform-testing

5
from vamseeachanta/workspace-hub

Sub-skill of github-actions: 2. Matrix Builds for Cross-Platform Testing.

viv-analysis-design-code-references

5
from vamseeachanta/workspace-hub

Sub-skill of viv-analysis: Design Code References.

python-gis-ecosystem-cross-repo-context

5
from vamseeachanta/workspace-hub

Sub-skill of python-gis-ecosystem: Cross-Repo Context.

github-repo-architect-4-cross-repository-synchronization

5
from vamseeachanta/workspace-hub

Sub-skill of github-repo-architect: 4. Cross-Repository Synchronization (+1).

github-multi-repo-1-cross-repo-swarm-initialization

5
from vamseeachanta/workspace-hub

Sub-skill of github-multi-repo: 1. Cross-Repo Swarm Initialization (+4).

sphinx-task-lists

5
from vamseeachanta/workspace-hub

Sub-skill of sphinx: Task Lists.