# Send Project Documentation to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "project-documentation",
    "name": "Project Documentation",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/wpank/project-documentation",
    "canonicalUrl": "https://clawhub.ai/wpank/project-documentation",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/project-documentation",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-documentation",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "project-documentation",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T23:43:50.604Z",
      "expiresAt": "2026-05-07T23:43:50.604Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-documentation",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-documentation",
        "contentDisposition": "attachment; filename=\"project-documentation-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "project-documentation"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/project-documentation"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/project-documentation",
    "downloadUrl": "https://openagent3.xyz/downloads/project-documentation",
    "agentUrl": "https://openagent3.xyz/skills/project-documentation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-documentation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-documentation/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wpank
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T23:43:50.604Z
- Expires at: 2026-05-07T23:43:50.604Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/project-documentation)
- [Send to Agent page](https://openagent3.xyz/skills/project-documentation/agent)
- [JSON manifest](https://openagent3.xyz/skills/project-documentation/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/project-documentation/agent.md)
- [Download page](https://openagent3.xyz/downloads/project-documentation)