Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

database-doc-generator数据库文档生成器

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

5,715

周安装

241

GitHub Stars

公开资料未说明

下载量

1,889
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install database-doc-generator

简介

从 PostgreSQL 数据库自动生成专业的结构文档报告。

  • 输出包含表结构列详情格式化规范的 Excel 文件。
  • 支持外键关系索引等元数据完整提取展示。database-doc-generator 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 连接字符串必须具有只读权限防止意外修改。
  • 大型数据库建议分页处理避免单次响应超时。

SKILL.md

name
database-doc-generator
description
Generate professional database structure documentation from PostgreSQL databases. Creates Excel files with table schemas, column details, and formatting. Use when user needs to document database structure, export schema information, or create data dictionaries. Triggers on phrases like "generate database documentation", "export database schema", "create data dictionary", "database structure export", "PostgreSQL documentation".

Database Documentation Generator

This skill generates professional database structure documentation from PostgreSQL databases. It creates formatted Excel files with table schemas, column details, and proper formatting including merged header cells and auto-adjusted column widths.

⚠️ SECURITY WARNING

IMPORTANT SECURITY NOTES:

  1. Never commit real database credentials to source control
  2. Use environment variables or secure configuration files for credentials
  3. Review all database connections before use
  4. This skill requires network access to PostgreSQL databases
  5. Install dependencies manually - automatic installation is disabled for security

Security-First Installation & Usage

Installation Method: Instruction-Only (No Auto-Download)

This skill uses a secure instruction-only installation model:

  • ✅ No automatic code downloads
  • ✅ No archive extraction
  • ✅ No arbitrary URL fetching
  • ✅ No elevated permissions required

Step 1: Secure Environment Setup

# Method A: Virtual Environment (RECOMMENDED)
python -m venv venv-database-docs
source venv-database-docs/bin/activate  # On Windows: venv-database-docs\Scripts\activate

# Method B: With pinned versions for security
pip install -r requirements.txt

# Method C: Manual installation
pip install psycopg2-binary==2.9.9 pandas==2.2.1 openpyxl==3.1.2

Step 2: Security Validation (MANDATORY)

# Run comprehensive security check
python scripts/security_check.py

# Expected output: "SECURITY CHECK PASSED"
# If warnings appear, review and fix before proceeding

Step 2: Set Secure Credentials

NEVER hardcode credentials. Use environment variables:

# Set credentials via environment variables (RECOMMENDED)
export DB_HOST=your-actual-host
export DB_PORT=5432
export DB_NAME=your-actual-database
export DB_USER=your-actual-username
export DB_PASSWORD=your-actual-EXAMPLE_PASSWORD

# Optional: Enable SSL for secure connections
export DB_SSLMODE=require

Step 3: Generate Documentation Securely

# Method A: Using environment variables (most secure)
python scripts/generate_database_doc.py

# Method B: With command-line arguments
python scripts/generate_database_doc.py \
  --host your-host \
  --database your-db \
  --user your-user \
  --EXAMPLE_PASSWORD your-EXAMPLE_PASSWORD

# Method C: Using secure config file
python scripts/generate_database_doc.py --config /path/to/secure_config.json

Step 4: Verify Output Security

# Check file permissions
ls -la output.xlsx

# Set secure permissions (Unix)
chmod 600 output.xlsx

Quick Start (Simplified)

  1. Install dependencies:
   pip install psycopg2-binary pandas openpyxl
  1. Set environment variables:
   export DB_HOST=localhost DB_NAME=mydb DB_USER=EXAMPLE_USER DB_PASSWORD=secret
  1. Run security check:
   python scripts/security_check.py
  1. Generate documentation:
   python scripts/generate_database_doc.py
  1. The skill will:

- Validate security configuration - Connect to the database (with SSL if configured) - Extract table structure information (read-only) - Generate formatted Excel documentation - Apply proper formatting - Set secure file permissions when possible

Database Connection

The skill supports PostgreSQL databases. Provide connection details in this format:

{
    'host': 'your-host',
    'port': 5432,
    'database': 'your-database',
    'user': 'your-username',
    'EXAMPLE_PASSWORD': 'your-EXAMPLE_PASSWORD'
}

Output Features

The generated Excel file includes:

  1. Professional Formatting:

- Each table on a separate worksheet - Table name as merged header cell above columns - Auto-adjusted column widths for readability - Clear column headers

  1. Column Information:

- Column name (代码) - Data type (数据类型) - Length/precision (长度) - Mandatory flag (强制) - Description/comment (注释)

  1. Default Values:

- varchar/character varying: Default length 2000 - timestamp/timestamptz/time/timetz: Default precision 6

Usage Examples

Example 1: Generate documentation for specific tables

Generate database documentation for tables: users, orders, products
Host: EXAMPLE_HOST, Port: 5432, Database: mydb
Username: EXAMPLE_USER, Password: EXAMPLE_PASSWORD

Example 2: Generate documentation for all tables

Create database structure documentation for all tables
Connection: localhost:5432/mydb
Credentials: EXAMPLE_USER/EXAMPLE_PASSWORD

Example 3: Export schema with custom output path

Export database schema to D:/docs/database.xlsx
Tables: customers, invoices, payments
Connection details: [provide details]

Advanced Features

Custom Table Selection

  • Specify individual table names
  • Use wildcards or patterns (via SQL WHERE clause)
  • Omit to include all tables

Output Customization

  • Default output: EXAMPLE_PATH/database_documentation.xlsx
  • Can specify custom output path
  • Creates directory if it doesn't exist

Error Handling

  • Validates database connection
  • Handles missing tables gracefully
  • Provides detailed error messages
  • Continues processing other tables if one fails

Scripts

The skill includes Python scripts for database documentation generation. See scripts/ for implementation details.

References

For detailed SQL queries and formatting options, see references/.

Notes

  • Only executes SELECT queries (no modifications)
  • Respects database permissions
  • Handles large schemas efficiently
  • Preserves data integrity

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.96%
按下载量换算1,586

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills