Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

oss-docs操作系统文档

Agent Skill

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

总安装

8,886

周安装

374

GitHub Stars

318

下载量

3,112
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boshu2/agentops --skill oss-docs

简介

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

  • 适合提炼结构、统一术语或检查链接有效性。
  • 通过 npx skills add 命令从 boshu2/agentops 仓库安装使用。
  • 涉及对外文案时应控制语气,避免过度营销或夸大能力描述。
  • 保留项目已有事实和路径信息,不将未确认内容写成确定结论。

SKILL.md

OSS Documentation Skill

Scaffold and audit documentation for open source projects.

Overview

This skill helps prepare repositories for open source release by:

  1. Auditing existing documentation completeness
  2. Scaffolding missing standard files
  3. Generating content tailored to project type

Commands

CommandAction
auditCheck which OSS docs exist/missing
scaffoldCreate all missing standard files
scaffold [file]Create specific file
updateRefresh existing docs with latest patterns
validateCheck docs follow best practices

Phase 0: Project Detection

# Determine project type and language
PROJECT_NAME=$(basename $(pwd))
LANGUAGES=()

[[ -f go.mod ]] && LANGUAGES+=("go")
[[ -f pyproject.toml ]] || [[ -f setup.py ]] && LANGUAGES+=("python")
[[ -f package.json ]] && LANGUAGES+=("javascript")
[[ -f Cargo.toml ]] && LANGUAGES+=("rust")

# Detect project category
if [[ -f Dockerfile ]] && [[ -d cmd ]]; then
    PROJECT_TYPE="cli"
elif [[ -d config/crd ]]; then
    PROJECT_TYPE="operator"
elif [[ -f Chart.yaml ]]; then
    PROJECT_TYPE="helm"
else
    PROJECT_TYPE="library"
fi

Subcommand: audit

Required Files (Tier 1 - Core)

FilePurpose
LICENSELegal terms
README.mdProject overview
CONTRIBUTING.mdHow to contribute
CODE_OF_CONDUCT.mdCommunity standards

Recommended Files (Tier 2 - Standard)

FilePurpose
SECURITY.mdVulnerability reporting
CHANGELOG.mdVersion history
AGENTS.mdAI assistant context
.github/ISSUE_TEMPLATE/Issue templates
.github/PULL_REQUEST_TEMPLATE.mdPR template

Optional Files (Tier 3 - Enhanced)

FileWhen Needed
docs/QUICKSTART.mdComplex setup
docs/ARCHITECTURE.mdNon-trivial codebase
docs/CLI_REFERENCE.mdCLI tools
docs/CONFIG.mdConfigurable software
examples/Complex workflows

Subcommand: scaffold

Template Selection

Project TypeFocus
cliInstallation, commands, examples
operatorK8s CRDs, RBAC, deployment
serviceAPI, configuration, deployment
libraryAPI reference, examples
helmValues, dependencies, upgrading

Documentation Organization

project/
├── README.md              # Overview + quick start
├── AGENTS.md              # AI assistant context
├── CONTRIBUTING.md        # Contributor guide
├── CHANGELOG.md           # Keep a Changelog format
├── docs/
│   ├── QUICKSTART.md      # Detailed getting started
│   ├── CLI_REFERENCE.md   # Complete command reference
│   ├── ARCHITECTURE.md    # System design
│   └── CONFIG.md          # Configuration options
└── examples/
    └── README.md          # Examples index

AGENTS.md Pattern

# Agent Instructions

This project uses **<tool>** for <purpose>. Run `<onboard-cmd>` to get started.

## Quick Reference

<cmd1> # Do thing 1 <cmd2> # Do thing 2


## Landing the Plane (Session Completion)

**MANDATORY WORKFLOW:**

1. **Run quality gates** - Tests, linters, builds
2. **Commit changes** - Meaningful commit message
3. **PUSH TO REMOTE** - This is MANDATORY
4. **Verify** - All changes committed AND pushed

Style Guidelines

  1. Be direct - Get to the point quickly
  2. Be friendly - Welcome contributions
  3. Be concise - Avoid boilerplate
  4. Use tables - For commands, options, features
  5. Show examples - Code blocks over prose
  6. Link liberally - Cross-reference related docs

Skill Boundaries

DO:

  • Audit existing documentation
  • Generate standard OSS files
  • Validate documentation quality

DON'T:

  • Overwrite existing content without confirmation
  • Generate code documentation (use $doc)
  • Create CI/CD files (out of scope — configure CI/CD separately)

Examples

OSS Readiness Audit

User says: "Audit this repo for open-source documentation readiness."

What happens:

  1. Evaluate presence/quality of core OSS docs.
  2. Identify missing or weak sections.
  3. Output prioritized documentation actions.

Scaffold Missing Docs

User says: "Generate missing OSS docs for this project."

What happens:

  1. Detect project type and documentation gaps.
  2. Scaffold standard files with project-aware content.
  3. Produce a checklist for final review and landing.

Troubleshooting

ProblemCauseSolution
Generated docs feel genericProject signals too sparseAdd concrete repo context (commands, architecture, workflows)
Existing docs conflictLegacy text diverges from current behaviorReconcile with current code/process and mark obsolete sections
Contributor path unclearMissing setup/testing guidanceAdd explicit quickstart and validation commands
Open-source handoff incompleteSession-end workflow not reflectedAdd landing-the-plane and release hygiene steps

Reference Documents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.99%
按下载量换算1,151

Claude

29.64%
按下载量换算922

Cursor

19.22%
按下载量换算598

Gemini CLI

9.92%
按下载量换算309

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills