โ† All skills
Tencent SkillHub ยท Productivity

Project Documentation

Complete workflow for project documentation including ADRs, PRDs, personas, and docs organization. Use when setting up documentation for a new project or improving existing docs. Triggers on project documentation, ADR, PRD, personas, docs structure, documentation setup.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Complete workflow for project documentation including ADRs, PRDs, personas, and docs organization. Use when setting up documentation for a new project or improving existing docs. Triggers on project documentation, ADR, PRD, personas, docs structure, documentation setup.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Project Documentation (Meta-Skill)

Complete workflow for setting up and maintaining project documentation.

OpenClaw / Moltbot / Clawbot

npx clawhub@latest install project-documentation

When to Use

Starting a new project and need docs structure Improving documentation on existing project Setting up ADRs, PRDs, or persona docs Want consistent documentation across projects

Docs-First Philosophy

Start every project with documentation, not code: 1. Define the idea โ†’ What is this? What problem does it solve? 2. Define the personas โ†’ Who uses this? What are their journeys? 3. Define the features โ†’ What does it do for each persona? 4. Define the stack โ†’ What technologies? Why? 5. Then build โ†’ With full context established

Directory Structure

docs/ โ”œโ”€โ”€ architecture/ # CURRENT STATE - Living docs of actual code โ”‚ โ”œโ”€โ”€ overview.md โ”‚ โ””โ”€โ”€ data-flow.md โ”œโ”€โ”€ guides/ # CURRENT STATE - How to use/operate โ”‚ โ”œโ”€โ”€ getting-started.md โ”‚ โ””โ”€โ”€ configuration.md โ”œโ”€โ”€ runbooks/ # CURRENT STATE - Short, actionable guides โ”‚ โ”œโ”€โ”€ local-dev.md โ”‚ โ”œโ”€โ”€ deploy.md โ”‚ โ””โ”€โ”€ database.md โ”œโ”€โ”€ planning/ # FUTURE - Not for docs site โ”‚ โ”œโ”€โ”€ roadmap.md โ”‚ โ””โ”€โ”€ specs/ โ”œโ”€โ”€ decisions/ # ADRs - Decision records โ”‚ โ”œโ”€โ”€ 001-tech-stack.md โ”‚ โ””โ”€โ”€ 002-auth-approach.md โ””โ”€โ”€ product/ # PRD, personas โ”œโ”€โ”€ overview.md โ”œโ”€โ”€ personas/ โ””โ”€โ”€ features.md

Critical Separation: Current vs Future

CategoryPurposeGoes on Docs Site?Current StateHow things work nowYesPlanningFuture specs, designsNoArchitectureLiving docs of codeYesRoadmap/TodosWhat we're working onNoRunbooksHow to operateYesProposed RunbooksFuture plansNo

Architecture Decision Records (ADRs)

Template: # ADR-001: [Title] ## Status [Proposed | Accepted | Deprecated | Superseded] ## Context [What is the issue we're solving?] ## Decision [What did we decide?] ## Consequences [What are the results - positive and negative?] ## Alternatives Considered [What other options did we evaluate?]

Product Requirements Document (PRD)

  • Template:
  • # PRD: [Feature Name]
  • ## Problem
  • [What problem are we solving?]
  • ## Users
  • [Which personas does this serve?]
  • ## Requirements
  • [ ] Requirement 1
  • [ ] Requirement 2
  • ## Non-Goals
  • [What are we explicitly NOT doing?]
  • ## Success Metrics
  • [How do we know this worked?]

Persona Documentation

  • Template:
  • # Persona: [Name]
  • ## Who They Are
  • Background
  • Technical level
  • Goals
  • ## Pain Points
  • [Pain 1]
  • [Pain 2]
  • ## Journey
  • 1. Discovery
  • 2. Onboarding
  • 3. Daily use
  • 4. Advanced usage
  • ## Content Needs
  • Doc types they need
  • Format preferences

Runbooks

  • Template:
  • # Runbook: [Task Name]
  • ## Prerequisites
  • [Requirement 1]
  • [Requirement 2]
  • ## Steps
  • 1. [Step 1]
  • 2. [Step 2]
  • ## Verify
  • [How to confirm success]
  • ## Troubleshooting
  • | Problem | Solution |
  • |---------|----------|
  • | [Issue] | [Fix] |

Roadmap Format

  • ## Roadmap
  • ### Current Sprint
  • [ ] Add user authentication endpoint
  • [ ] Create login form component
  • [ ] Wire form to auth endpoint
  • ### Backlog
  • [ ] Password reset flow
  • [ ] OAuth integration
  • [ ] Two-factor auth

Quality Gates

Before shipping docs: Separates current state from planning Uses appropriate template for doc type Written for the right audience Actionable (runbooks) or explanatory (guides) No stale/outdated information

Anti-Patterns

Mixing future plans with current state โ€” Confuses what's real Planning docs on docs site โ€” Users expect reality One-size-fits-all docs โ€” Different audiences need different depth Building features before personas โ€” No context for decisions Documentation written once and forgotten โ€” Keep it current

Checklist for New Projects

Create docs/ directory structure Write initial PRD/overview Document 2-3 personas Create ADR-001 for tech stack Set up roadmap format Create essential runbooks (local-dev, deploy) Separate planning/ from current-state docs

Related Skills

Commands: /bootstrap-docs, /new-feature Agent: development

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs