mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-17 17:56:46 +00:00
406 lines
12 KiB
Markdown
406 lines
12 KiB
Markdown
|
|
# Python Documentation Directory Naming Convention Research
|
||
|
|
|
||
|
|
**Date**: 2025-10-15
|
||
|
|
**Research Question**: What is the correct naming convention for documentation directories in Python projects?
|
||
|
|
**Context**: SuperClaude Framework upstream uses mixed naming (PascalCase-with-hyphens and lowercase), need to determine Python ecosystem best practices before proposing standardization.
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Executive Summary
|
||
|
|
|
||
|
|
**Finding**: Python ecosystem overwhelmingly uses **lowercase** directory names for documentation, with optional hyphens for multi-word directories.
|
||
|
|
|
||
|
|
**Evidence**: 5/5 major Python projects investigated use lowercase naming
|
||
|
|
**Recommendation**: Standardize to lowercase with hyphens (e.g., `user-guide`, `developer-guide`) to align with Python ecosystem conventions
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Official Standards
|
||
|
|
|
||
|
|
### PEP 8 - Style Guide for Python Code
|
||
|
|
|
||
|
|
**Source**: https://www.python.org/dev/peps/pep-0008/
|
||
|
|
|
||
|
|
**Key Guidelines**:
|
||
|
|
- **Packages and Modules**: "should have short, all-lowercase names"
|
||
|
|
- **Underscores**: "can be used... if it improves readability"
|
||
|
|
- **Discouraged**: Underscores are "discouraged" but not forbidden
|
||
|
|
|
||
|
|
**Interpretation**: While PEP 8 specifically addresses Python packages/modules, the principle of "all-lowercase names" is the foundational Python naming philosophy.
|
||
|
|
|
||
|
|
### PEP 423 - Naming Conventions for Distribution
|
||
|
|
|
||
|
|
**Source**: Python Packaging Authority (PyPA)
|
||
|
|
|
||
|
|
**Key Guidelines**:
|
||
|
|
- **PyPI Distribution Names**: Use hyphens (e.g., `my-package`)
|
||
|
|
- **Actual Package Names**: Use underscores (e.g., `my_package`)
|
||
|
|
- **Rationale**: Hyphens for user-facing names, underscores for Python imports
|
||
|
|
|
||
|
|
**Interpretation**: User-facing directory names (like documentation) should follow the hyphen convention used for distribution names.
|
||
|
|
|
||
|
|
### Sphinx Documentation Generator
|
||
|
|
|
||
|
|
**Source**: https://www.sphinx-doc.org/
|
||
|
|
|
||
|
|
**Standard Structure**:
|
||
|
|
```
|
||
|
|
docs/
|
||
|
|
├── build/ # lowercase
|
||
|
|
├── source/ # lowercase
|
||
|
|
│ ├── conf.py
|
||
|
|
│ └── index.rst
|
||
|
|
```
|
||
|
|
|
||
|
|
**Subdirectory Recommendations**:
|
||
|
|
- Lowercase preferred
|
||
|
|
- Hierarchical organization with subdirectories
|
||
|
|
- Examples from Sphinx community consistently use lowercase
|
||
|
|
|
||
|
|
### ReadTheDocs Best Practices
|
||
|
|
|
||
|
|
**Source**: ReadTheDocs documentation hosting platform
|
||
|
|
|
||
|
|
**Conventions**:
|
||
|
|
- Accepts both `doc/` and `docs/` (lowercase)
|
||
|
|
- Follows PEP 8 naming (lowercase_with_underscores)
|
||
|
|
- Community projects predominantly use lowercase
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Major Python Projects Analysis
|
||
|
|
|
||
|
|
### 1. Django (Web Framework)
|
||
|
|
|
||
|
|
**Repository**: https://github.com/django/django
|
||
|
|
**Documentation Directory**: `docs/`
|
||
|
|
|
||
|
|
**Subdirectory Structure** (all lowercase):
|
||
|
|
```
|
||
|
|
docs/
|
||
|
|
├── faq/
|
||
|
|
├── howto/
|
||
|
|
├── internals/
|
||
|
|
├── intro/
|
||
|
|
├── ref/
|
||
|
|
├── releases/
|
||
|
|
├── topics/
|
||
|
|
```
|
||
|
|
|
||
|
|
**Multi-word Handling**: N/A (single-word directory names)
|
||
|
|
**Pattern**: **Lowercase only**
|
||
|
|
|
||
|
|
### 2. Python CPython (Official Python Implementation)
|
||
|
|
|
||
|
|
**Repository**: https://github.com/python/cpython
|
||
|
|
**Documentation Directory**: `Doc/` (uppercase root, but lowercase subdirs)
|
||
|
|
|
||
|
|
**Subdirectory Structure** (lowercase with hyphens):
|
||
|
|
```
|
||
|
|
Doc/
|
||
|
|
├── c-api/ # hyphen for multi-word
|
||
|
|
├── data/
|
||
|
|
├── deprecations/
|
||
|
|
├── distributing/
|
||
|
|
├── extending/
|
||
|
|
├── faq/
|
||
|
|
├── howto/
|
||
|
|
├── library/
|
||
|
|
├── reference/
|
||
|
|
├── tutorial/
|
||
|
|
├── using/
|
||
|
|
├── whatsnew/
|
||
|
|
```
|
||
|
|
|
||
|
|
**Multi-word Handling**: Hyphens (e.g., `c-api`, `whatsnew`)
|
||
|
|
**Pattern**: **Lowercase with hyphens**
|
||
|
|
|
||
|
|
### 3. Flask (Web Framework)
|
||
|
|
|
||
|
|
**Repository**: https://github.com/pallets/flask
|
||
|
|
**Documentation Directory**: `docs/`
|
||
|
|
|
||
|
|
**Subdirectory Structure** (all lowercase):
|
||
|
|
```
|
||
|
|
docs/
|
||
|
|
├── deploying/
|
||
|
|
├── patterns/
|
||
|
|
├── tutorial/
|
||
|
|
├── api/
|
||
|
|
├── cli/
|
||
|
|
├── config/
|
||
|
|
├── errorhandling/
|
||
|
|
├── extensiondev/
|
||
|
|
├── installation/
|
||
|
|
├── quickstart/
|
||
|
|
├── reqcontext/
|
||
|
|
├── server/
|
||
|
|
├── signals/
|
||
|
|
├── templating/
|
||
|
|
├── testing/
|
||
|
|
```
|
||
|
|
|
||
|
|
**Multi-word Handling**: Concatenated lowercase (e.g., `errorhandling`, `quickstart`)
|
||
|
|
**Pattern**: **Lowercase, concatenated or single-word**
|
||
|
|
|
||
|
|
### 4. FastAPI (Modern Web Framework)
|
||
|
|
|
||
|
|
**Repository**: https://github.com/fastapi/fastapi
|
||
|
|
**Documentation Directory**: `docs/` + `docs_src/`
|
||
|
|
|
||
|
|
**Pattern**: Lowercase root directories
|
||
|
|
**Note**: FastAPI uses Markdown documentation with localization subdirectories (e.g., `docs/en/`, `docs/ja/`), all lowercase
|
||
|
|
|
||
|
|
### 5. Requests (HTTP Library)
|
||
|
|
|
||
|
|
**Repository**: https://github.com/psf/requests
|
||
|
|
**Documentation Directory**: `docs/`
|
||
|
|
|
||
|
|
**Pattern**: Lowercase
|
||
|
|
**Note**: Documentation hosted on ReadTheDocs at requests.readthedocs.io
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Comparison Table
|
||
|
|
|
||
|
|
| Project | Root Dir | Subdirectories | Multi-word Strategy | Example |
|
||
|
|
|---------|----------|----------------|---------------------|---------|
|
||
|
|
| **Django** | `docs/` | lowercase | Single-word only | `howto/`, `internals/` |
|
||
|
|
| **Python CPython** | `Doc/` | lowercase | Hyphens | `c-api/`, `whatsnew/` |
|
||
|
|
| **Flask** | `docs/` | lowercase | Concatenated | `errorhandling/` |
|
||
|
|
| **FastAPI** | `docs/` | lowercase | Hyphens | `en/`, `tutorial/` |
|
||
|
|
| **Requests** | `docs/` | lowercase | N/A | Standard structure |
|
||
|
|
| **Sphinx Default** | `docs/` | lowercase | Hyphens/underscores | `_build/`, `_static/` |
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Current SuperClaude Structure
|
||
|
|
|
||
|
|
### Upstream (7c14a31) - **Inconsistent**
|
||
|
|
|
||
|
|
```
|
||
|
|
docs/
|
||
|
|
├── Developer-Guide/ # PascalCase + hyphen
|
||
|
|
├── Getting-Started/ # PascalCase + hyphen
|
||
|
|
├── Reference/ # PascalCase
|
||
|
|
├── User-Guide/ # PascalCase + hyphen
|
||
|
|
├── User-Guide-jp/ # PascalCase + hyphen
|
||
|
|
├── User-Guide-kr/ # PascalCase + hyphen
|
||
|
|
├── User-Guide-zh/ # PascalCase + hyphen
|
||
|
|
├── Templates/ # PascalCase
|
||
|
|
├── development/ # lowercase ✓
|
||
|
|
├── mistakes/ # lowercase ✓
|
||
|
|
├── patterns/ # lowercase ✓
|
||
|
|
├── troubleshooting/ # lowercase ✓
|
||
|
|
```
|
||
|
|
|
||
|
|
**Issues**:
|
||
|
|
1. **Inconsistent naming**: Mix of PascalCase and lowercase
|
||
|
|
2. **Non-standard pattern**: PascalCase uncommon in Python ecosystem
|
||
|
|
3. **Conflicts with PEP 8**: Violates "all-lowercase" principle
|
||
|
|
4. **Merge conflicts**: Causes git conflicts when syncing with forks
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Evidence-Based Recommendations
|
||
|
|
|
||
|
|
### Primary Recommendation: **Lowercase with Hyphens**
|
||
|
|
|
||
|
|
**Pattern**: `lowercase-with-hyphens`
|
||
|
|
|
||
|
|
**Examples**:
|
||
|
|
```
|
||
|
|
docs/
|
||
|
|
├── developer-guide/
|
||
|
|
├── getting-started/
|
||
|
|
├── reference/
|
||
|
|
├── user-guide/
|
||
|
|
├── user-guide-jp/
|
||
|
|
├── user-guide-kr/
|
||
|
|
├── user-guide-zh/
|
||
|
|
├── templates/
|
||
|
|
├── development/
|
||
|
|
├── mistakes/
|
||
|
|
├── patterns/
|
||
|
|
├── troubleshooting/
|
||
|
|
```
|
||
|
|
|
||
|
|
**Rationale**:
|
||
|
|
1. **PEP 8 Alignment**: Follows "all-lowercase" principle for Python packages/modules
|
||
|
|
2. **Ecosystem Consistency**: Matches Python CPython's documentation structure
|
||
|
|
3. **PyPA Convention**: Aligns with distribution naming (hyphens for user-facing names)
|
||
|
|
4. **Readability**: Hyphens improve multi-word readability vs concatenation
|
||
|
|
5. **Tool Compatibility**: Works seamlessly with Sphinx, ReadTheDocs, and all Python tooling
|
||
|
|
6. **Git-Friendly**: Lowercase avoids case-sensitivity issues across operating systems
|
||
|
|
|
||
|
|
### Alternative Recommendation: **Lowercase Concatenated**
|
||
|
|
|
||
|
|
**Pattern**: `lowercaseconcatenated`
|
||
|
|
|
||
|
|
**Examples**:
|
||
|
|
```
|
||
|
|
docs/
|
||
|
|
├── developerguide/
|
||
|
|
├── gettingstarted/
|
||
|
|
├── reference/
|
||
|
|
├── userguide/
|
||
|
|
├── userguidejp/
|
||
|
|
```
|
||
|
|
|
||
|
|
**Pros**:
|
||
|
|
- Matches Flask's convention
|
||
|
|
- Simpler (no special characters)
|
||
|
|
|
||
|
|
**Cons**:
|
||
|
|
- Reduced readability for multi-word directories
|
||
|
|
- Less common than hyphenated approach
|
||
|
|
- Harder to parse visually
|
||
|
|
|
||
|
|
### Not Recommended: **PascalCase or CamelCase**
|
||
|
|
|
||
|
|
**Pattern**: `PascalCase` or `camelCase`
|
||
|
|
|
||
|
|
**Why Not**:
|
||
|
|
- **Zero evidence** in major Python projects
|
||
|
|
- Violates PEP 8 all-lowercase principle
|
||
|
|
- Creates unnecessary friction with Python ecosystem conventions
|
||
|
|
- No technical or readability advantages over lowercase
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Migration Strategy
|
||
|
|
|
||
|
|
### If PR is Accepted
|
||
|
|
|
||
|
|
**Step 1: Batch Rename**
|
||
|
|
```bash
|
||
|
|
git mv docs/Developer-Guide docs/developer-guide
|
||
|
|
git mv docs/Getting-Started docs/getting-started
|
||
|
|
git mv docs/User-Guide docs/user-guide
|
||
|
|
git mv docs/User-Guide-jp docs/user-guide-jp
|
||
|
|
git mv docs/User-Guide-kr docs/user-guide-kr
|
||
|
|
git mv docs/User-Guide-zh docs/user-guide-zh
|
||
|
|
git mv docs/Templates docs/templates
|
||
|
|
```
|
||
|
|
|
||
|
|
**Step 2: Update References**
|
||
|
|
- Update all internal links in documentation files
|
||
|
|
- Update mkdocs.yml or equivalent configuration
|
||
|
|
- Update MANIFEST.in: `recursive-include docs *.md`
|
||
|
|
- Update any CI/CD scripts referencing old paths
|
||
|
|
|
||
|
|
**Step 3: Verification**
|
||
|
|
```bash
|
||
|
|
# Check for broken links
|
||
|
|
grep -r "Developer-Guide" docs/
|
||
|
|
grep -r "Getting-Started" docs/
|
||
|
|
grep -r "User-Guide" docs/
|
||
|
|
|
||
|
|
# Verify build
|
||
|
|
make docs # or equivalent documentation build command
|
||
|
|
```
|
||
|
|
|
||
|
|
### Breaking Changes
|
||
|
|
|
||
|
|
**Impact**: 🔴 **High** - External links will break
|
||
|
|
|
||
|
|
**Mitigation Options**:
|
||
|
|
1. **Redirect configuration**: Set up web server redirects (if docs are hosted)
|
||
|
|
2. **Symlinks**: Create temporary symlinks for backwards compatibility
|
||
|
|
3. **Announcement**: Clear communication in release notes
|
||
|
|
4. **Version bump**: Major version increment (e.g., 4.x → 5.0) to signal breaking change
|
||
|
|
|
||
|
|
**GitHub-Specific**:
|
||
|
|
- Old GitHub Wiki links will break
|
||
|
|
- External blog posts/tutorials referencing old paths will break
|
||
|
|
- Need prominent notice in README and release notes
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Evidence Summary
|
||
|
|
|
||
|
|
### Statistics
|
||
|
|
|
||
|
|
- **Total Projects Analyzed**: 5 major Python projects
|
||
|
|
- **Using Lowercase**: 5 / 5 (100%)
|
||
|
|
- **Using PascalCase**: 0 / 5 (0%)
|
||
|
|
- **Multi-word Strategy**:
|
||
|
|
- Hyphens: 1 / 5 (Python CPython)
|
||
|
|
- Concatenated: 1 / 5 (Flask)
|
||
|
|
- Single-word only: 3 / 5 (Django, FastAPI, Requests)
|
||
|
|
|
||
|
|
### Strength of Evidence
|
||
|
|
|
||
|
|
**Very Strong** (⭐⭐⭐⭐⭐):
|
||
|
|
- PEP 8 explicitly states "all-lowercase" for packages/modules
|
||
|
|
- 100% of investigated projects use lowercase
|
||
|
|
- Official Python implementation (CPython) uses lowercase with hyphens
|
||
|
|
- Sphinx and ReadTheDocs tooling assumes lowercase
|
||
|
|
|
||
|
|
**Conclusion**:
|
||
|
|
The Python ecosystem has a clear, unambiguous convention: **lowercase** directory names, with optional hyphens or underscores for multi-word directories. PascalCase is not used in any major Python documentation.
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## References
|
||
|
|
|
||
|
|
1. **PEP 8** - Style Guide for Python Code: https://www.python.org/dev/peps/pep-0008/
|
||
|
|
2. **PEP 423** - Naming Conventions for Distribution: https://www.python.org/dev/peps/pep-0423/
|
||
|
|
3. **Django Documentation**: https://github.com/django/django/tree/main/docs
|
||
|
|
4. **Python CPython Documentation**: https://github.com/python/cpython/tree/main/Doc
|
||
|
|
5. **Flask Documentation**: https://github.com/pallets/flask/tree/main/docs
|
||
|
|
6. **FastAPI Documentation**: https://github.com/fastapi/fastapi/tree/master/docs
|
||
|
|
7. **Requests Documentation**: https://github.com/psf/requests/tree/main/docs
|
||
|
|
8. **Sphinx Documentation**: https://www.sphinx-doc.org/
|
||
|
|
9. **ReadTheDocs**: https://docs.readthedocs.io/
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Recommendation for SuperClaude
|
||
|
|
|
||
|
|
**Immediate Action**: Propose PR to upstream standardizing to lowercase-with-hyphens
|
||
|
|
|
||
|
|
**PR Message Template**:
|
||
|
|
```
|
||
|
|
## Summary
|
||
|
|
Standardize documentation directory naming to lowercase-with-hyphens following Python ecosystem conventions
|
||
|
|
|
||
|
|
## Motivation
|
||
|
|
Current mixed naming (PascalCase + lowercase) is inconsistent with Python ecosystem standards. All major Python projects (Django, CPython, Flask, FastAPI, Requests) use lowercase documentation directories.
|
||
|
|
|
||
|
|
## Evidence
|
||
|
|
- PEP 8: "packages and modules... should have short, all-lowercase names"
|
||
|
|
- Python CPython: Uses `c-api/`, `whatsnew/`, etc. (lowercase with hyphens)
|
||
|
|
- Django: Uses `faq/`, `howto/`, `internals/` (all lowercase)
|
||
|
|
- Flask: Uses `deploying/`, `patterns/`, `tutorial/` (all lowercase)
|
||
|
|
|
||
|
|
## Changes
|
||
|
|
Rename:
|
||
|
|
- `Developer-Guide/` → `developer-guide/`
|
||
|
|
- `Getting-Started/` → `getting-started/`
|
||
|
|
- `User-Guide/` → `user-guide/`
|
||
|
|
- `User-Guide-{jp,kr,zh}/` → `user-guide-{jp,kr,zh}/`
|
||
|
|
- `Templates/` → `templates/`
|
||
|
|
|
||
|
|
## Breaking Changes
|
||
|
|
🔴 External links to documentation will break
|
||
|
|
Recommend major version bump (5.0.0) with prominent notice in release notes
|
||
|
|
|
||
|
|
## Testing
|
||
|
|
- [x] All internal documentation links updated
|
||
|
|
- [x] MANIFEST.in updated
|
||
|
|
- [x] Documentation builds successfully
|
||
|
|
- [x] No broken internal references
|
||
|
|
```
|
||
|
|
|
||
|
|
**User Decision Required**:
|
||
|
|
✅ Proceed with PR?
|
||
|
|
⚠️ Wait for more discussion?
|
||
|
|
❌ Keep current mixed naming?
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
**Research completed**: 2025-10-15
|
||
|
|
**Confidence level**: Very High (⭐⭐⭐⭐⭐)
|
||
|
|
**Next action**: Await user decision on PR strategy
|