Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

ogt-docs奥格特文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

30,401

周安装

1,218

GitHub Stars

公开资料未说明

下载量

9,841
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ogt-docs(奥格特文档)
来源仓库:https://github.com/eduardou24/ogt-docs
安装命令:
openclaw skills install ogt-docs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ogt-docs

简介

文档作为真相来源工作流程。在处理使用 docs/ 作为定义、规则和任务的规范源的项目时使用。路由到特定文档类型的专门子技能。

SKILL.md

name
ogt-docs
description
Documentation-as-Source-of-Truth workflow. Use when working with projects that use docs/ as the canonical source for definitions, rules, and tasks. Routes to specialized sub-skills for specific documentation types.

OGT Docs - Documentation as Source of Truth

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

Sub-Skills Reference

Definitions (WHAT things ARE)

Sub-SkillPurposeUse When
ogt-docs-defineGeneral definition guidanceNeed overview of definition types
ogt-docs-define-businessBusiness model, pricing, usersDefining business concepts
ogt-docs-define-featureProduct features and specsSpecifying a new feature
ogt-docs-define-codeTechnical architectureDefining services, data models
ogt-docs-define-marketingBrand, messaging, audienceMarketing definitions
ogt-docs-define-brandingVisual identity, toneBrand guidelines
ogt-docs-define-toolsTooling and CLI specsDefining developer tools

Rules (HOW to IMPLEMENT)

Sub-SkillPurposeUse When
ogt-docs-rulesGeneral rules guidanceNeed overview of rule types
ogt-docs-rules-codeCoding standards overviewGeneral code rules
ogt-docs-rules-code-frontFrontend-specific rulesReact, CSS, components
ogt-docs-rules-code-backBackend-specific rulesAPI, database, services
ogt-docs-rules-code-infraInfrastructure rulesDocker, CI/CD, deployment
ogt-docs-rules-gitVersion control rulesCommits, branches, PRs

Tasks (WHAT to DO)

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

Other

Sub-SkillPurposeUse When
ogt-docs-createGeneral creation guidanceNeed to create any doc type
ogt-docs-create-socialMarketing contentCreating social/marketing content
ogt-docs-auditGeneral audit guidanceAuditing documentation
ogt-docs-initInitialize docs structureSetting up new project
ogt-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

Quick Start

"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

ElementFormatExample
Folder slugssnake_caseglobal_search, user_auth
Primary fileslowercase typetask.md, feature.md, rule.md
Supporting fileslowercase descriptivephase_0.md, notes.md, progress.md
Signal 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

  1. If it's not documented, it doesn't exist
  2. If code contradicts docs, code is wrong
  3. Never trust "done" status without verification
  4. Move folders, don't copy files
  5. Signal with dot-files, don't edit status fields

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.39%
按下载量换算7,616

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills