Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

technical-doc-generator技术文档生成器

Agent Skill

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

总安装

35,592

周安装

1,483

GitHub Stars

公开资料未说明

下载量

11,864
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install technical-doc-generator

简介

从代码库生成专业技术文档 - API 文档、自述文件、架构图、变更日志和入门指南。在编写文档、创建 API 文档或交付文档项目时使用。

SKILL.md

name
technical-doc-generator
description
Generate professional technical documentation from codebases — API docs, READMEs, architecture diagrams, changelogs, and onboarding guides. Use when writing docs, creating API documentation, or delivering documentation projects.
argument-hint
[path-or-repo] [doc-type]
allowed-tools
Read, Write, Edit, Grep, Glob, Bash

Technical Documentation Generator

Scan a codebase and generate client-deliverable technical documentation. Produces API docs, READMEs, architecture overviews, changelogs, and developer onboarding guides.

How to Use

/technical-doc-generator ./src api-docs
/technical-doc-generator . full
/technical-doc-generator ./src readme
/technical-doc-generator . changelog
/technical-doc-generator ./src onboarding
  • $ARGUMENTS[0] = Path to codebase (default: current directory)
  • $ARGUMENTS[1] = Doc type: api-docs, readme, architecture, changelog, onboarding, full (all)

Documentation Types

readme — Project README

Scan the project and generate a comprehensive README:

# Project Name

Brief description (1-2 sentences from package.json, pyproject.toml, or code analysis).

## Features
- [Auto-detected from code structure]

## Quick Start

### Prerequisites
[Detected from package.json, requirements.txt, go.mod, etc.]

### Installation
[Generated from detected package manager and config files]

### Configuration
[Detected from .env.example, config files, environment variables in code]

### Usage
[Basic usage examples from entry points, CLI args, or main functions]

## Project Structure
[Generated directory tree with descriptions]

## API Reference
[Brief overview with link to full docs if generated]

## Contributing
[Standard contributing section]

## License
[Detected from LICENSE file]

api-docs — API Documentation

Scan for API endpoints and generate documentation:

  1. Detect the framework: Express, FastAPI, Django, Flask, Rails, Spring, Gin, etc.
  2. Extract endpoints: Routes, methods, parameters, request/response bodies
  3. Generate OpenAPI/Swagger spec (YAML)
  4. Generate human-readable docs (Markdown)

For each endpoint:

### `POST /api/users`

Create a new user account.

**Authentication**: Required (Bearer token)

**Request Body**:
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| email | string | Yes | User's email address |
| name | string | Yes | Full name |
| role | string | No | User role (default: "member") |

**Example Request**:

{ "email": "user@example.com", "name": "Jane Doe", "role": "admin" }


**Response** (`201 Created`):

{ "id": "usr_abc123", "email": "user@example.com", "name": "Jane Doe", "role": "admin", "created_at": "2026-02-13T10:00:00Z" }


**Error Responses**:
| Status | Description |
|--------|-------------|
| 400 | Invalid request body |
| 409 | Email already exists |
| 401 | Missing or invalid auth token |

architecture — Architecture Overview

Generate an architecture document with:

  1. System overview: What the system does, high-level description
  2. Technology stack: Languages, frameworks, databases, services detected
  3. Directory structure: Annotated tree with purpose of each directory
  4. Component diagram: Mermaid diagram showing major components and their relationships
  5. Data flow: How data moves through the system
  6. Database schema: If migrations or models are found, document the schema
  7. External dependencies: Third-party services, APIs, databases
  8. Configuration: Environment variables and their purposes

Mermaid diagram example:

graph TB
    Client[Client App] --> API[API Server]
    API --> Auth[Auth Service]
    API --> DB[(PostgreSQL)]
    API --> Cache[(Redis)]
    API --> Queue[Job Queue]
    Queue --> Worker[Background Worker]
    Worker --> DB
    Worker --> Email[Email Service]

changelog — Changelog from Git History

Parse git log and generate a structured changelog:

# Changelog

## [Unreleased]
### Added
- [Features from commits since last tag]

### Changed
- [Modifications]

### Fixed
- [Bug fixes]

## [1.2.0] - 2026-02-10
### Added
- ...

Rules:

  • Group by semantic version tags (or by month if no tags)
  • Categorize commits: Added, Changed, Fixed, Removed, Security, Deprecated
  • Parse conventional commits if used (feat:, fix:, chore:, etc.)
  • Skip merge commits and build/CI commits
  • Link to PRs/issues if references found in commit messages

onboarding — Developer Onboarding Guide

Generate a guide for new developers joining the project:

# Developer Onboarding Guide

## Prerequisites
[Required software, versions, accounts]

## Getting Started
### 1. Clone and Setup
[Step-by-step with exact commands]

### 2. Environment Configuration
[All env vars explained with example values]

### 3. Run Locally
[Commands to start the dev server, run tests, etc.]

### 4. Verify Setup
[How to confirm everything is working]

## Codebase Tour
### Architecture Overview
[Brief system description with diagram]

### Key Directories
[What lives where and why]

### Important Files
[Config files, entry points, key modules]

## Development Workflow
### Branching Strategy
[Detected from git history or standard gitflow]

### Running Tests
[Test commands, test structure]

### Code Style
[Linting config, formatting tools detected]

### Making Changes
[Typical workflow: branch → code → test → PR]

## Common Tasks
### Add a new API endpoint
[Step-by-step based on existing patterns]

### Add a database migration
[Based on detected ORM/migration tool]

### Deploy
[If deployment config is detected]

## Troubleshooting
### Common Issues
[Based on README, issues, or common patterns]

full — Complete Documentation Package

Generate ALL of the above, organized in a docs/ directory:

docs/
  README.md              # Project README (also copy to project root if none exists)
  API.md                 # API documentation
  ARCHITECTURE.md        # Architecture overview
  CHANGELOG.md           # Changelog
  ONBOARDING.md          # Developer onboarding
  openapi.yaml           # OpenAPI spec (if API detected)
  diagrams/              # Mermaid source files

Codebase Scanning Strategy

  1. Package files first: package.json, pyproject.toml, go.mod, Cargo.toml, Gemfile, pom.xml
  2. Config files: .env.example, docker-compose.yml, CI/CD configs
  3. Entry points: main.*, index.*, app.*, server.*
  4. Route/endpoint files: Files containing route definitions
  5. Models/schemas: Database models, TypeScript interfaces, Pydantic models
  6. Test files: To understand expected behavior
  7. Existing docs: Any existing README, docs/, wiki content

Do NOT read every file. Be strategic — scan structure first, then dive into key files.

Output

Save all generated docs to output/docs/ (or docs/ if specified). Present a summary of what was generated and suggest next steps for the client.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.67%
按下载量换算10,520

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills