# Send OGT Docs 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ogt-docs",
    "name": "OGT Docs",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/EduardoU24/ogt-docs",
    "canonicalUrl": "https://clawhub.ai/EduardoU24/ogt-docs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ogt-docs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ogt-docs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ogt-docs",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:43:17.159Z",
      "expiresAt": "2026-05-07T13:43:17.159Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ogt-docs",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ogt-docs",
        "contentDisposition": "attachment; filename=\"ogt-docs-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ogt-docs"
      },
      "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/ogt-docs"
    },
    "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/ogt-docs",
    "downloadUrl": "https://openagent3.xyz/downloads/ogt-docs",
    "agentUrl": "https://openagent3.xyz/skills/ogt-docs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ogt-docs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ogt-docs/agent.md"
  }
}
```
## Documentation

### Philosophy

Documentation is the database of decisions. Code is merely its implementation.

┌─────────────────────────────────────────────────────────────────┐
│                    THE DOC-FIRST PRINCIPLE                      │
├─────────────────────────────────────────────────────────────────┤
│  1. Documentation DEFINES what something IS                     │
│  2. Code IMPLEMENTS what documentation specifies                │
│  3. Conflicts RESOLVE in favor of documentation                 │
│                                                                 │
│  If docs say X and code does Y → CODE IS WRONG                  │
└─────────────────────────────────────────────────────────────────┘

### When to Use This Skill

Use ogt-docs when you need to:

Understand the docs/ folder structure
Find the right sub-skill for a specific task
Initialize a new docs-first project
Navigate between definition types

For specific tasks, use the specialized sub-skills listed below.

### Documentation Structure Overview

docs/
├── definitions/              # WHAT things ARE
│   ├── business/             # Business model, pricing, users
│   ├── features/             # Product features and specs
│   ├── technical/            # Architecture, services, data
│   └── domain/               # Domain-specific concepts
│
├── rules/                    # HOW to IMPLEMENT
│   ├── code/                 # Coding standards
│   │   ├── frontend/
│   │   ├── backend/
│   │   └── infra/
│   ├── git/                  # Version control rules
│   └── domain/               # Domain-specific rules
│
├── todo/                     # TASK management
│   ├── pending/              # Not started
│   ├── in_progress/          # Being worked on
│   ├── review/               # Awaiting review
│   ├── blocked/              # Cannot proceed
│   ├── done/                 # Completed & verified
│   └── rejected/             # Declined tasks
│
├── guides/                   # HOW-TO documents
│   └── {topic}/
│
└── social/                   # Marketing & communications
    ├── campaigns/
    ├── content/
    └── branding/

### The Folder-as-Entity Pattern

Every documentable item is a folder containing:

{item_slug}/
├── {type}.md                 # Primary document (task.md, feature.md, etc.)
├── {supporting_files}.md     # Additional documentation
└── .{signal_files}           # Status markers and metadata

Benefits:

Move entire folder between workflow stages
Attach unlimited supporting files
Signal status via dot-files
Version and track changes atomically

### Definitions (WHAT things ARE)

Sub-SkillPurposeUse Whenogt-docs-defineGeneral definition guidanceNeed overview of definition typesogt-docs-define-businessBusiness model, pricing, usersDefining business conceptsogt-docs-define-featureProduct features and specsSpecifying a new featureogt-docs-define-codeTechnical architectureDefining services, data modelsogt-docs-define-marketingBrand, messaging, audienceMarketing definitionsogt-docs-define-brandingVisual identity, toneBrand guidelinesogt-docs-define-toolsTooling and CLI specsDefining developer tools

### Rules (HOW to IMPLEMENT)

Sub-SkillPurposeUse Whenogt-docs-rulesGeneral rules guidanceNeed overview of rule typesogt-docs-rules-codeCoding standards overviewGeneral code rulesogt-docs-rules-code-frontFrontend-specific rulesReact, CSS, componentsogt-docs-rules-code-backBackend-specific rulesAPI, database, servicesogt-docs-rules-code-infraInfrastructure rulesDocker, CI/CD, deploymentogt-docs-rules-gitVersion control rulesCommits, branches, PRs

### Tasks (WHAT to DO)

Sub-SkillPurposeUse Whenogt-docs-create-taskCreate and manage tasksNeed to create/update a taskogt-docs-audit-taskVerify task completionChecking if task is truly done

### Other

Sub-SkillPurposeUse Whenogt-docs-createGeneral creation guidanceNeed to create any doc typeogt-docs-create-socialMarketing contentCreating social/marketing contentogt-docs-auditGeneral audit guidanceAuditing documentationogt-docs-initInitialize docs structureSetting up new projectogt-docs-configConfiguration optionsCustomizing docs workflow

### Workflow Overview

flowchart TB
    subgraph define ["1. DEFINE"]
        D1[Create Definition]
        D2[Get Approval]
    end

    subgraph regulate ["2. REGULATE"]
        R1[Create Rules]
        R2[Add Examples]
    end

    subgraph implement ["3. IMPLEMENT"]
        I1[Create Task]
        I2[Write Code]
        I3[Review]
    end

    subgraph verify ["4. VERIFY"]
        V1[Run Checks]
        V2[Confirm Match]
    end

    define --> regulate --> implement --> verify
    verify -->|Mismatch| implement
    verify -->|Docs Wrong| define

### "I need to define something new"

→ Use ogt-docs-define to understand types, then the specific sub-skill

### "I need to create a task"

→ Use ogt-docs-create-task

### "I need to check if a task is really done"

→ Use ogt-docs-audit-task

### "I need to add coding rules"

→ Use ogt-docs-rules-code or the specific frontend/backend/infra variant

### "I need to set up docs for a new project"

→ Use ogt-docs-init

### Naming Conventions

ElementFormatExampleFolder slugssnake_caseglobal_search, user_authPrimary fileslowercase typetask.md, feature.md, rule.mdSupporting fileslowercase descriptivephase_0.md, notes.md, progress.mdSignal filesdot + snake_case.blocked_reason, .approved_by_human

### Signal Files Reference

Signal files are dot-files that indicate status or metadata.

SignalTypeMeaning.versionContentSchema/doc version (JSON).blockedEmptyItem is blocked.blocked_reasonContentWhy it's blocked.approvedEmptyApproved for implementation.approved_by_{name}EmptyWho approved.rejectedEmptyRejected.rejected_reasonContentWhy rejected.verifiedEmptyImplementation verified.completed_atContentCompletion timestamp.assigned_to_{agent}EmptyWho's working on it.pr_linkContentAssociated PR URL.depends_onContentDependencies list

### The Golden Rules

If it's not documented, it doesn't exist
If code contradicts docs, code is wrong
Never trust "done" status without verification
Move folders, don't copy files
Signal with dot-files, don't edit status fields
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: EduardoU24
- 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-30T13:43:17.159Z
- Expires at: 2026-05-07T13:43:17.159Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ogt-docs)
- [Send to Agent page](https://openagent3.xyz/skills/ogt-docs/agent)
- [JSON manifest](https://openagent3.xyz/skills/ogt-docs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ogt-docs/agent.md)
- [Download page](https://openagent3.xyz/downloads/ogt-docs)