Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

documentation文档

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:documentation(文档)
来源仓库:https://github.com/nguyenthienthanh/aura-frog
仓库路径:skills/documentation
安装命令:
npx skills add nguyenthienthanh/aura-frog --skill "documentation"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add nguyenthienthanh/aura-frog --skill "documentation"

简介

用于辅助文档、README 和 Markdown 内容的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接。
  • 使用时需保留项目已有事实和路径,避免虚构信息。
  • 涉及对外文案时应控制语气,避免过度营销。
  • 确保内容真实准确,不夸大能力。documentation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
documentation
description
Create Architecture Decision Records (ADRs) and Runbooks for operational documentation.
autoInvoke
false
priority
medium
triggers

Skill: Documentation (ADR & Runbook)

Category: Documentation Version: 1.0.0 Used By: All agents, Phase 8


Overview

Create Architecture Decision Records (ADRs) and Runbooks for operational documentation.


Part 1: Architecture Decision Records (ADR)

When to Create ADR

  • Choosing between technologies
  • Significant architectural changes
  • New patterns or conventions
  • Deprecating existing approaches

ADR Template

# ADR-[NUMBER]: [TITLE]

**Status:** [Proposed | Accepted | Deprecated | Superseded by ADR-XXX]
**Date:** YYYY-MM-DD
**Deciders:** [Names/Teams]

## Context

[What is the issue? Why do we need to make a decision?]

## Decision

[What is the change being proposed/decided?]

## Options Considered

### Option 1: [Name]
- **Pros:** [Benefits]
- **Cons:** [Drawbacks]

### Option 2: [Name]
- **Pros:** [Benefits]
- **Cons:** [Drawbacks]

### Option 3: [Name]
- **Pros:** [Benefits]
- **Cons:** [Drawbacks]

## Consequences

### Positive
- [Benefit 1]
- [Benefit 2]

### Negative
- [Tradeoff 1]
- [Tradeoff 2]

### Risks
- [Risk 1] - Mitigation: [How to handle]

## References

- [Link to relevant docs/discussions]

ADR Example

# ADR-001: Use PostgreSQL for Primary Database

**Status:** Accepted
**Date:** 2025-01-15
**Deciders:** Backend Team, DevOps

## Context

We need a relational database for our new application. The application requires ACID compliance, complex queries, and JSON support.

## Decision

Use PostgreSQL 16 as the primary database.

## Options Considered

### Option 1: PostgreSQL
- **Pros:** ACID, JSON support, excellent performance, open source
- **Cons:** Requires more ops expertise than managed solutions

### Option 2: MySQL
- **Pros:** Familiar, widely supported
- **Cons:** Weaker JSON support, licensing concerns

### Option 3: MongoDB
- **Pros:** Flexible schema, easy scaling
- **Cons:** Not ideal for relational data, eventual consistency

## Consequences

### Positive
- Full ACID compliance
- Native JSON/JSONB support
- Strong ecosystem and tooling

### Negative
- Team needs PostgreSQL training
- More complex backup strategy

ADR Naming Convention

docs/adr/
├── ADR-001-database-selection.md
├── ADR-002-authentication-strategy.md
├── ADR-003-api-versioning.md
└── README.md (index)

Part 2: Runbook

When to Create Runbook

  • New service deployment
  • Common operational tasks
  • Incident response procedures
  • On-call handoff documentation

Runbook Template

# Runbook: [Service/Task Name]

**Service:** [Service name]
**Owner:** [Team/Person]
**Last Updated:** YYYY-MM-DD
**On-Call:** [Rotation/Contact]

## Overview

[Brief description of what this runbook covers]

## Prerequisites

- [ ] Access to [system/tool]
- [ ] Credentials for [service]
- [ ] VPN connected (if applicable)

## Common Operations

### Start Service

Command to start

systemctl start service-name

Verify running

systemctl status service-name


### Stop Service

Graceful shutdown

systemctl stop service-name

Force stop (if graceful fails)

systemctl kill service-name


### Check Logs

Recent logs

journalctl -u service-name -n 100

Follow logs

journalctl -u service-name -f

Search for errors

journalctl -u service-name | grep -i error


### Health Check

Endpoint check

curl -s http://localhost:8080/health | jq

Expected response

{ "status": "healthy", "version": "1.0.0" }


## Troubleshooting

### Issue: Service Won't Start

**Symptoms:** Service fails to start, exits immediately

**Diagnosis:**

journalctl -u service-name -n 50


**Common Causes:**
1. Missing environment variables → Check `.env` file
2. Port already in use → `lsof -i :8080`
3. Database connection failed → Check DB connectivity

**Resolution:**

Fix env vars

source /etc/service-name/env

Restart

systemctl restart service-name


### Issue: High Memory Usage

**Symptoms:** Memory > 80% threshold

**Diagnosis:**

Check memory

free -h ps aux --sort=-%mem | head -10


**Resolution:**

Restart service (temporary)

systemctl restart service-name

Scale if needed

kubectl scale deployment service-name --replicas=3


## Alerts & Escalation

| Alert | Severity | Action | Escalate After |
|-------|----------|--------|----------------|
| Service Down | Critical | Restart, check logs | 5 min |
| High CPU | Warning | Monitor, scale if needed | 15 min |
| High Memory | Warning | Restart if > 90% | 10 min |
| Error Rate > 5% | Critical | Check logs, rollback | 5 min |

## Contacts

| Role | Name | Contact |
|------|------|---------|
| Primary On-Call | [Name] | [Slack/Phone] |
| Secondary | [Name] | [Slack/Phone] |
| Team Lead | [Name] | [Slack/Phone] |

## Related Documentation

- [Service Architecture](link)
- [Deployment Guide](link)
- [Monitoring Dashboard](link)

Runbook Naming Convention

docs/runbooks/
├── api-service.md
├── database-maintenance.md
├── deployment-rollback.md
├── incident-response.md
└── README.md (index)

Documentation Checklist

ADR Checklist

  • [ ] Clear problem statement
  • [ ] Options evaluated objectively
  • [ ] Decision clearly stated
  • [ ] Consequences documented
  • [ ] Numbered and indexed

Runbook Checklist

  • [ ] Prerequisites listed
  • [ ] Commands are copy-paste ready
  • [ ] Common issues documented
  • [ ] Escalation path defined
  • [ ] Contacts current

Best Practices

Do's

  • Keep ADRs immutable (supersede, don't edit)
  • Test runbook commands before documenting
  • Include "why" not just "what"
  • Review runbooks after incidents
  • Index all documentation

Don'ts

  • Delete old ADRs (mark superseded)
  • Write runbooks without testing
  • Assume reader knows context
  • Let docs become stale
  • Skip the troubleshooting section

Version: 1.0.0 | Last Updated: 2025-11-28

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

29.47%
按下载量换算23

Claude Code

25.08%
按下载量换算20

windsurf

16.35%
按下载量换算13

cline

11.65%
按下载量换算9

Codex

7.36%
按下载量换算6

Antigravity

3.09%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills