sphinx-7-intersphinx-cross-references
Sub-skill of sphinx: 7. Intersphinx Cross-References (+5).
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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/7-intersphinx-cross-references/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How sphinx-7-intersphinx-cross-references Compares
| Feature / Agent | sphinx-7-intersphinx-cross-references | 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 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
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
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
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
Actionable review routing policy — which agent reviews which agent's work, default three-agent adversarial review
cross-agent-skill-audit
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
Sub-skill of repo-cleanup: References to Remove.
github-actions-2-matrix-builds-for-cross-platform-testing
Sub-skill of github-actions: 2. Matrix Builds for Cross-Platform Testing.
viv-analysis-design-code-references
Sub-skill of viv-analysis: Design Code References.
python-gis-ecosystem-cross-repo-context
Sub-skill of python-gis-ecosystem: Cross-Repo Context.
github-repo-architect-4-cross-repository-synchronization
Sub-skill of github-repo-architect: 4. Cross-Repository Synchronization (+1).
github-multi-repo-1-cross-repo-swarm-initialization
Sub-skill of github-multi-repo: 1. Cross-Repo Swarm Initialization (+4).
sphinx-task-lists
Sub-skill of sphinx: Task Lists.