{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ogt-docs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ogt-docs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ogt-docs",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Philosophy",
        "body": "Documentation is the database of decisions. Code is merely its implementation.\n\n┌─────────────────────────────────────────────────────────────────┐\n│                    THE DOC-FIRST PRINCIPLE                      │\n├─────────────────────────────────────────────────────────────────┤\n│  1. Documentation DEFINES what something IS                     │\n│  2. Code IMPLEMENTS what documentation specifies                │\n│  3. Conflicts RESOLVE in favor of documentation                 │\n│                                                                 │\n│  If docs say X and code does Y → CODE IS WRONG                  │\n└─────────────────────────────────────────────────────────────────┘"
      },
      {
        "title": "When to Use This Skill",
        "body": "Use ogt-docs when you need to:\n\nUnderstand the docs/ folder structure\nFind the right sub-skill for a specific task\nInitialize a new docs-first project\nNavigate between definition types\n\nFor specific tasks, use the specialized sub-skills listed below."
      },
      {
        "title": "Documentation Structure Overview",
        "body": "docs/\n├── definitions/              # WHAT things ARE\n│   ├── business/             # Business model, pricing, users\n│   ├── features/             # Product features and specs\n│   ├── technical/            # Architecture, services, data\n│   └── domain/               # Domain-specific concepts\n│\n├── rules/                    # HOW to IMPLEMENT\n│   ├── code/                 # Coding standards\n│   │   ├── frontend/\n│   │   ├── backend/\n│   │   └── infra/\n│   ├── git/                  # Version control rules\n│   └── domain/               # Domain-specific rules\n│\n├── todo/                     # TASK management\n│   ├── pending/              # Not started\n│   ├── in_progress/          # Being worked on\n│   ├── review/               # Awaiting review\n│   ├── blocked/              # Cannot proceed\n│   ├── done/                 # Completed & verified\n│   └── rejected/             # Declined tasks\n│\n├── guides/                   # HOW-TO documents\n│   └── {topic}/\n│\n└── social/                   # Marketing & communications\n    ├── campaigns/\n    ├── content/\n    └── branding/"
      },
      {
        "title": "The Folder-as-Entity Pattern",
        "body": "Every documentable item is a folder containing:\n\n{item_slug}/\n├── {type}.md                 # Primary document (task.md, feature.md, etc.)\n├── {supporting_files}.md     # Additional documentation\n└── .{signal_files}           # Status markers and metadata\n\nBenefits:\n\nMove entire folder between workflow stages\nAttach unlimited supporting files\nSignal status via dot-files\nVersion and track changes atomically"
      },
      {
        "title": "Definitions (WHAT things ARE)",
        "body": "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"
      },
      {
        "title": "Rules (HOW to IMPLEMENT)",
        "body": "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"
      },
      {
        "title": "Tasks (WHAT to DO)",
        "body": "Sub-SkillPurposeUse Whenogt-docs-create-taskCreate and manage tasksNeed to create/update a taskogt-docs-audit-taskVerify task completionChecking if task is truly done"
      },
      {
        "title": "Other",
        "body": "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"
      },
      {
        "title": "Workflow Overview",
        "body": "flowchart TB\n    subgraph define [\"1. DEFINE\"]\n        D1[Create Definition]\n        D2[Get Approval]\n    end\n\n    subgraph regulate [\"2. REGULATE\"]\n        R1[Create Rules]\n        R2[Add Examples]\n    end\n\n    subgraph implement [\"3. IMPLEMENT\"]\n        I1[Create Task]\n        I2[Write Code]\n        I3[Review]\n    end\n\n    subgraph verify [\"4. VERIFY\"]\n        V1[Run Checks]\n        V2[Confirm Match]\n    end\n\n    define --> regulate --> implement --> verify\n    verify -->|Mismatch| implement\n    verify -->|Docs Wrong| define"
      },
      {
        "title": "\"I need to define something new\"",
        "body": "→ Use ogt-docs-define to understand types, then the specific sub-skill"
      },
      {
        "title": "\"I need to create a task\"",
        "body": "→ Use ogt-docs-create-task"
      },
      {
        "title": "\"I need to check if a task is really done\"",
        "body": "→ Use ogt-docs-audit-task"
      },
      {
        "title": "\"I need to add coding rules\"",
        "body": "→ Use ogt-docs-rules-code or the specific frontend/backend/infra variant"
      },
      {
        "title": "\"I need to set up docs for a new project\"",
        "body": "→ Use ogt-docs-init"
      },
      {
        "title": "Naming Conventions",
        "body": "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"
      },
      {
        "title": "Signal Files Reference",
        "body": "Signal files are dot-files that indicate status or metadata.\n\nSignalTypeMeaning.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"
      },
      {
        "title": "The Golden Rules",
        "body": "If it's not documented, it doesn't exist\nIf code contradicts docs, code is wrong\nNever trust \"done\" status without verification\nMove folders, don't copy files\nSignal with dot-files, don't edit status fields"
      }
    ],
    "body": "OGT Docs - Documentation as Source of Truth\nPhilosophy\n\nDocumentation is the database of decisions. Code is merely its implementation.\n\n┌─────────────────────────────────────────────────────────────────┐\n│                    THE DOC-FIRST PRINCIPLE                      │\n├─────────────────────────────────────────────────────────────────┤\n│  1. Documentation DEFINES what something IS                     │\n│  2. Code IMPLEMENTS what documentation specifies                │\n│  3. Conflicts RESOLVE in favor of documentation                 │\n│                                                                 │\n│  If docs say X and code does Y → CODE IS WRONG                  │\n└─────────────────────────────────────────────────────────────────┘\n\nWhen to Use This Skill\n\nUse ogt-docs when you need to:\n\nUnderstand the docs/ folder structure\nFind the right sub-skill for a specific task\nInitialize a new docs-first project\nNavigate between definition types\n\nFor specific tasks, use the specialized sub-skills listed below.\n\nDocumentation Structure Overview\ndocs/\n├── definitions/              # WHAT things ARE\n│   ├── business/             # Business model, pricing, users\n│   ├── features/             # Product features and specs\n│   ├── technical/            # Architecture, services, data\n│   └── domain/               # Domain-specific concepts\n│\n├── rules/                    # HOW to IMPLEMENT\n│   ├── code/                 # Coding standards\n│   │   ├── frontend/\n│   │   ├── backend/\n│   │   └── infra/\n│   ├── git/                  # Version control rules\n│   └── domain/               # Domain-specific rules\n│\n├── todo/                     # TASK management\n│   ├── pending/              # Not started\n│   ├── in_progress/          # Being worked on\n│   ├── review/               # Awaiting review\n│   ├── blocked/              # Cannot proceed\n│   ├── done/                 # Completed & verified\n│   └── rejected/             # Declined tasks\n│\n├── guides/                   # HOW-TO documents\n│   └── {topic}/\n│\n└── social/                   # Marketing & communications\n    ├── campaigns/\n    ├── content/\n    └── branding/\n\nThe Folder-as-Entity Pattern\n\nEvery documentable item is a folder containing:\n\n{item_slug}/\n├── {type}.md                 # Primary document (task.md, feature.md, etc.)\n├── {supporting_files}.md     # Additional documentation\n└── .{signal_files}           # Status markers and metadata\n\n\nBenefits:\n\nMove entire folder between workflow stages\nAttach unlimited supporting files\nSignal status via dot-files\nVersion and track changes atomically\nSub-Skills Reference\nDefinitions (WHAT things ARE)\nSub-Skill\tPurpose\tUse When\nogt-docs-define\tGeneral definition guidance\tNeed overview of definition types\nogt-docs-define-business\tBusiness model, pricing, users\tDefining business concepts\nogt-docs-define-feature\tProduct features and specs\tSpecifying a new feature\nogt-docs-define-code\tTechnical architecture\tDefining services, data models\nogt-docs-define-marketing\tBrand, messaging, audience\tMarketing definitions\nogt-docs-define-branding\tVisual identity, tone\tBrand guidelines\nogt-docs-define-tools\tTooling and CLI specs\tDefining developer tools\nRules (HOW to IMPLEMENT)\nSub-Skill\tPurpose\tUse When\nogt-docs-rules\tGeneral rules guidance\tNeed overview of rule types\nogt-docs-rules-code\tCoding standards overview\tGeneral code rules\nogt-docs-rules-code-front\tFrontend-specific rules\tReact, CSS, components\nogt-docs-rules-code-back\tBackend-specific rules\tAPI, database, services\nogt-docs-rules-code-infra\tInfrastructure rules\tDocker, CI/CD, deployment\nogt-docs-rules-git\tVersion control rules\tCommits, branches, PRs\nTasks (WHAT to DO)\nSub-Skill\tPurpose\tUse When\nogt-docs-create-task\tCreate and manage tasks\tNeed to create/update a task\nogt-docs-audit-task\tVerify task completion\tChecking if task is truly done\nOther\nSub-Skill\tPurpose\tUse When\nogt-docs-create\tGeneral creation guidance\tNeed to create any doc type\nogt-docs-create-social\tMarketing content\tCreating social/marketing content\nogt-docs-audit\tGeneral audit guidance\tAuditing documentation\nogt-docs-init\tInitialize docs structure\tSetting up new project\nogt-docs-config\tConfiguration options\tCustomizing docs workflow\nWorkflow Overview\nflowchart TB\n    subgraph define [\"1. DEFINE\"]\n        D1[Create Definition]\n        D2[Get Approval]\n    end\n\n    subgraph regulate [\"2. REGULATE\"]\n        R1[Create Rules]\n        R2[Add Examples]\n    end\n\n    subgraph implement [\"3. IMPLEMENT\"]\n        I1[Create Task]\n        I2[Write Code]\n        I3[Review]\n    end\n\n    subgraph verify [\"4. VERIFY\"]\n        V1[Run Checks]\n        V2[Confirm Match]\n    end\n\n    define --> regulate --> implement --> verify\n    verify -->|Mismatch| implement\n    verify -->|Docs Wrong| define\n\nQuick Start\n\"I need to define something new\"\n\n→ Use ogt-docs-define to understand types, then the specific sub-skill\n\n\"I need to create a task\"\n\n→ Use ogt-docs-create-task\n\n\"I need to check if a task is really done\"\n\n→ Use ogt-docs-audit-task\n\n\"I need to add coding rules\"\n\n→ Use ogt-docs-rules-code or the specific frontend/backend/infra variant\n\n\"I need to set up docs for a new project\"\n\n→ Use ogt-docs-init\n\nNaming Conventions\nElement\tFormat\tExample\nFolder slugs\tsnake_case\tglobal_search, user_auth\nPrimary files\tlowercase type\ttask.md, feature.md, rule.md\nSupporting files\tlowercase descriptive\tphase_0.md, notes.md, progress.md\nSignal files\tdot + snake_case\t.blocked_reason, .approved_by_human\nSignal Files Reference\n\nSignal files are dot-files that indicate status or metadata.\n\nSignal\tType\tMeaning\n.version\tContent\tSchema/doc version (JSON)\n.blocked\tEmpty\tItem is blocked\n.blocked_reason\tContent\tWhy it's blocked\n.approved\tEmpty\tApproved for implementation\n.approved_by_{name}\tEmpty\tWho approved\n.rejected\tEmpty\tRejected\n.rejected_reason\tContent\tWhy rejected\n.verified\tEmpty\tImplementation verified\n.completed_at\tContent\tCompletion timestamp\n.assigned_to_{agent}\tEmpty\tWho's working on it\n.pr_link\tContent\tAssociated PR URL\n.depends_on\tContent\tDependencies list\nThe Golden Rules\nIf it's not documented, it doesn't exist\nIf code contradicts docs, code is wrong\nNever trust \"done\" status without verification\nMove folders, don't copy files\nSignal with dot-files, don't edit status fields"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/EduardoU24/ogt-docs",
    "publisherUrl": "https://clawhub.ai/EduardoU24/ogt-docs",
    "owner": "EduardoU24",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}