documentation-project-structure
Sub-skill of documentation: Project Structure (+3).
Best use case
documentation-project-structure is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of documentation: Project Structure (+3).
Teams using documentation-project-structure 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/project-structure/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How documentation-project-structure Compares
| Feature / Agent | documentation-project-structure | 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 documentation: Project Structure (+3).
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
# Project Structure (+3)
## Project Structure
```
docs/
├── index.md # Home page
├── getting-started/ # Quickstart guides
│ ├── installation.md
│ └── configuration.md
├── guides/ # How-to guides
│ ├── basic-usage.md
│ └── advanced.md
├── reference/ # API reference
│ └── api.md
└── assets/ # Images, diagrams
└── images/
```
## Frontmatter Standards
```yaml
---
title: Page Title
description: Brief description for SEO
sidebar_position: 1
tags:
- guide
- configuration
---
```
## Admonitions
```markdown
!!! note "Title"
This is a note admonition.
!!! warning
This is a warning without a custom title.
!!! tip "Pro Tip"
Helpful tips go here.
```
## Code Blocks with Highlighting
```markdown
```python title="example.py" hl_lines="2 3"
def hello():
message = "Hello" # highlighted
print(message) # highlighted
```
```Related Skills
repo-structure
Canonical source layout, test mirroring, root cleanliness, gitignore, docs classification, and committed artifact rules for all workspace-hub tier-1 repos. Consult before creating directories or files in any submodule.
github-issue-structure-for-personal-finance-tracking
Pattern for organizing financial analysis work across multiple repos (data/config vs. logic separation)
documentation-contract-plan-hardening
Harden a documentation/contract plan before adversarial review by mapping every issue-scope requirement to independent acceptance criteria and tests, especially for routing/indexing contracts.
python-project-template
Generate standardized Python project structure with pyproject.toml, UV environment, pytest configuration, and workspace-hub compliance. Creates production-ready project scaffolding.
github-project-board
Synchronize AI swarms with GitHub Projects for visual task management and progress tracking. Use for project board automation, task synchronization, sprint management, and team coordination with GitHub Projects.
modular-architecture-documentation
Systematically document multi-module system architectures including module boundaries, CLI commands, and architecture decisions.
repo-cleanup-structure-section-updates
Sub-skill of repo-cleanup: Structure Section Updates (+1).
discipline-refactor-target-repository-structure
Sub-skill of discipline-refactor: Target Repository Structure.
discipline-refactor-standard-folders-module-structure
Sub-skill of discipline-refactor: Standard Folders → Module Structure (+1).
mkdocs-3-navigation-structure
Sub-skill of mkdocs: 3. Navigation Structure (+2).
interactive-menu-builder-1-basic-menu-structure
Sub-skill of interactive-menu-builder: 1. Basic Menu Structure.
repo-structure-never-tests-inside-src
Sub-skill of repo-structure: NEVER: tests/ inside src/ (+7).