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

docs-keeper文档管理员

Agent Skill

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

总安装

303

周安装

13

GitHub Stars

2

下载量

106
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/uinaf/skills --skill docs-keeper

简介

用于维护项目文档清晰区分人类与 Agent 职责的管理工具。

  • 包含项目计划、假设跟踪和会话笔记等结构化存储。
  • 适用于需要长期维护复杂项目的团队协作场景。docs-keeper 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 推荐使用 AGENTS.md 作为 Agent 专属指令文件。
  • 支持 YYYYMMDD-HHMM-slug.md 格式的会话记录归档。

SKILL.md

docs-keeper

Maintain project documentation with clear human/agent separation. Includes planning workflow.

Project Structure

project/
  README.md              ← project entrypoint (human-facing)
  AGENTS.md              ← agent instructions (project-specific)
  CLAUDE.md              ← symlink → AGENTS.md
  docs/
    ARCHITECTURE.md      ← human: high-level design, domain concepts
    *.md                 ← human: guides, ADRs, onboarding
    agents/
      PLAN.md            ← agent: living project plan
      ASSUMPTIONS.md     ← agent: tracked assumptions
      notes/             ← agent: session notes
        YYYYMMDD-HHMM-slug.md

Project root

  • README.md — canonical project entrypoint (setup, usage, status).
  • AGENTS.md — project-specific agent instructions. Tech stack, commands, conventions, gotchas. Keep under 150 lines.
  • CLAUDE.md — always a symlink to AGENTS.md. Ensure this exists: ln -sf AGENTS.md CLAUDE.md

Human zone (docs/*.md)

Written by humans, maintained by humans. Agents read these but don't edit unless explicitly asked.

  • README.md at project root is the primary project overview.
  • docs/ARCHITECTURE.md — high-level design. Describe capabilities and domain concepts, not file paths.
  • Other docs as needed: ADRs, API guides, onboarding.

Agent zone (docs/agents/)

Written and maintained by agents. Committed to git. Survives context windows and agent rotations.

  • PLAN.md — the living project plan (see Planning below)
  • ASSUMPTIONS.md — document assumptions before acting. Update as confirmed or invalidated.
  • notes/ — timestamped session notes (see Session Notes below)

Planning

Before any multi-step work, create or update docs/agents/PLAN.md.

Brainstorming (before the plan)

Don't jump into planning. Understand first:

  1. Explore context — read existing docs, code, recent commits
  2. Ask clarifying questions — one at a time, understand purpose/constraints/success criteria
  3. Propose 2-3 approaches — with trade-offs and your recommendation
  4. Present design in sections — scaled to complexity, get approval after each section
  5. Save design — write validated design to docs/agents/PLAN.md

Do NOT write code until the design is approved. Every project goes through this, even "simple" ones. Simple projects are where unexamined assumptions waste the most work.

Plan format

Plans are bite-sized tasks. Each task is one action (2-5 minutes):

# [Feature] Implementation Plan

**Goal:** One sentence.
**Approach:** 2-3 sentences.
**Tech:** Key technologies/libraries.

---

### Task 1: [Component]

**Files:**
- Create: `exact/path/to/file.go`
- Modify: `exact/path/to/existing.go`
- Test: `exact/path/to/file_test.go`

**Steps:**
1. Write failing test
2. Run test, verify it fails
3. Write minimal implementation
4. Run test, verify it passes
5. Commit

**Verify:** `go test ./... -run TestSpecificThing`

Rules:

  • Exact file paths, always
  • Complete code in plan (not "add validation")
  • Exact commands with expected output
  • Each step is one action, not a paragraph

Execution

Execute plans in batches (3 tasks at a time):

  1. Follow each step exactly
  2. Run verifications as specified
  3. After each batch: report what was done, show verification output, wait for feedback
  4. Apply feedback, continue next batch

Stop and ask when:

  • Hit a blocker (missing dep, test fails, instruction unclear)
  • Plan has gaps
  • Verification fails repeatedly
  • Don't guess through blockers

Session Notes

Write notes to docs/agents/notes/YYYYMMDD-HHMM-slug.md when you learn something worth preserving:

  • Lessons learned from debugging
  • Architecture decisions and rationale
  • Failed approaches and why they didn't work
  • Investigation findings (API quirks, library gotchas)
  • Mistakes and how to avoid them

Keep notes concise. Future agents read these for context.


Session Discipline

Start: Read docs/agents/PLAN.md and AGENTS.md.

End: Update plan if anything changed. Write a note if you learned something.


Keeper Behavior

When invoked as docs-keeper (or when documentation is stale):

  1. Ensure structure — AGENTS.md exists, CLAUDE.md is symlinked, docs/agents/ exists
  2. Audit — check all docs exist, are accurate, aren't contradicting code
  3. Fix — update what you can (agents zone only, unless asked for human zone)
  4. Flag — report what needs human attention
  5. Trim — AGENTS.md should stay under 150 lines. Move overflow to docs/

Rules

  • One code example beats three paragraphs
  • Describe capabilities, not file paths (paths go stale)
  • Don't document what agents already know (language syntax, common patterns)
  • Create docs/agents/ and subdirectories if they don't exist
  • Never edit human zone docs without explicit permission

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.61%
按下载量换算39

Claude

33.19%
按下载量换算35

Cursor

18.78%
按下载量换算20

Gemini CLI

9.29%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills