بنقرة واحدة
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.