원클릭으로
documentation-structure
Design a documentation outline for a project or feature.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design a documentation outline for a project or feature.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review code changes and report issues by severity with actionable fixes.
Sharpen a fuzzy intention into one measurable objective string that drives the rest of the work.
Convert a Prompt Flow PRS pipeline submission to run a Microsoft Agent Framework workflow.
Build a Model Context Protocol (MCP) server that lets an LLM call into external tools and resources.
Summarize PDF documents into concise bullet-point digests.
Bump a dependency version across a pnpm workspace and update lockfile.
| slug | documentation-structure |
| name | Documentation Structure |
| version | 0.1.0 |
| description | Design a documentation outline for a project or feature. |
| category | documentation |
| tags | ["docs","structure","readme","onboarding"] |
| inputs | [{"name":"project_type","type":"string","required":true,"description":"Library, service, CLI, etc."},{"name":"audiences","type":"array","required":false,"description":"e.g., users, contributors, operators"}] |
| output | {"format":"markdown","description":"A docs outline with page titles, purposes, and cross-links."} |
| author | badhope |
| license | MIT |
| created | "2026-06-21T00:00:00.000Z" |
| updated | "2026-06-21T00:00:00.000Z" |
Starting a new project, reorganizing scattered docs, or preparing for open-source release.
Describe the project type and primary audiences.
A hierarchical docs outline with each page's goal and suggested cross-links.
Design a documentation structure for the given project type and audiences.
Output:
1. Top-level sections (e.g., Getting Started, API Reference, Operations)
2. Each page title and one-sentence purpose
3. Cross-links between pages
4. One README outline (the entry point)
5. Notes on what NOT to put in docs vs code comments
Keep the structure actionable. Avoid generic sections that do not serve the audiences.
Input:
project_type: Python library
audiences: [users, contributors]
Output:
## Docs Outline
- README: one-line pitch, install, quickstart, badges
- `docs/getting-started.md`: first 5 minutes
- `docs/api.md`: auto-generated from docstrings
- `docs/examples.md`: 3 end-to-end recipes
- `docs/contributing.md`: dev setup, test commands, release process
## Cross-links
README quickstart → examples → API reference
These are the bugs that bite every new user. Check them before shipping:
Docs that contradict code: Documentation that says one thing, code does another.
README that assumes expertise: "See the docs" doesn't help when someone needs to get started.
Out-of-date examples: Examples that worked last year no longer work.
No search or findability: Users can't find the docs they need.
Documentation for imaginary users: Writing docs for a hypothetical expert instead of actual users.