Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

pkm-documentationPKM 文档

Agent Skill

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

总安装

642

周安装

27

GitHub Stars

9

下载量

225
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/balin-ar/pkm-documentation --skill pkm-documentation

简介

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写,帮助提炼结构、补齐章节、统一术语。

  • 它能将零散材料整合成可读文档,并支持链接检查和语气控制,避免过度营销或夸大能力。
  • 使用时应保留项目已有事实、命令和路径,不把未确认信息写成确定结论。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • pkm-documentation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

🚀 First Run

If the knowledge/ directory doesn't exist in your workspace, run the setup script:

bash skills/pkm-documentation/scripts/setup.sh

This creates the vault structure and patches AGENTS.md, SOUL.md, and MEMORY.md with PKM instructions. Alternatively, create the directories manually: knowledge/{decisions,devlog,learnings,projects,conversations,daily}.


PKM Documentation

Document everything worth keeping using atomic, connected, iterative notes. Based on Zettelkasten method adapted for an AI agent workspace.

⚠️ THIS IS MANDATORY

Read this file BEFORE writing any note. No exceptions.

  • NO loose free text
  • NO writing without a template
  • NO documenting outside the knowledge/ vault
  • If there's no template for it, don't write it

Core Principles

  1. Atomic notes — One idea per file. If it covers two topics, split into two files.
  2. Connect everything — Use [[wiki-links]] Obsidian-style for cross-references.
  3. Never delete, iterate — Update notes with new context. Mark outdated info as [SUPERSEDED] rather than removing.
  4. Process fast — Document while context is fresh. Delayed notes lose value (encoding principle).
  5. Standardize — Every note follows a template. Every note is a file in its folder.

Vault Structure

knowledge/
├── decisions/      → Decision Records (🔀)
├── devlog/         → Development Logs (🔧)
├── learnings/      → Learning Notes (💡)
├── projects/       → Project Notes (📦) — no date, updated in-place
├── conversations/  → Conversation Summaries (💬)
├── daily/          → Daily indices (links to the day's notes)
└── README.md       → Vault map

File Naming

  • With date: YYYY-MM-DD-descriptive-slug.md (decisions, devlog, learnings, conversations)
  • Without date: project-name.md (projects — updated in-place)
  • Daily index: YYYY-MM-DD.md (only links to the day's notes)

Note Types & Templates

1. Decision Record (decisions/)

Use when a technical or strategic decision is made.

## 🔀 Decision: [title]
- **Date:** YYYY-MM-DD
- **Context:** Why this came up
- **Options considered:** What alternatives existed
- **Decision:** What we chose
- **Reasoning:** Why
- **Consequences:** What this affects
- **Related:** [[type/file]] | [[type/file]]

2. Development Log (devlog/)

Use when building, fixing, or shipping something.

## 🔧 Dev: [what was built/fixed]
- **Date:** YYYY-MM-DD
- **Project:** [[projects/name]]
- **What changed:** Brief description
- **Technical details:** Implementation notes worth remembering
- **Issues hit:** Problems encountered and how they were solved
- **Related:** [[type/file]] | [[type/file]]

3. Learning Note (learnings/)

Use when discovering something new — a tool, technique, pattern.

## 💡 Learning: [topic]
- **Date:** YYYY-MM-DD
- **Source:** Where this came from (tweet, docs, experiment)
- **Key insight:** The core takeaway in 1-2 sentences
- **Details:** Deeper explanation if needed
- **Application:** How this applies to our work
- **Related:** [[type/file]] | [[type/file]]

4. Project Note (projects/)

Use when starting or significantly updating a project.

## 📦 Project: [name]
- **Status:** active | paused | completed | abandoned
- **Goal:** What this project achieves
- **Stack:** Technologies used
- **Architecture:** Key design decisions
- **Current state:** Where things stand
- **Next steps:** What comes next
- **Related:** [[type/file]] | [[type/file]]

5. Conversation Summary (conversations/)

Use at end of significant conversations with the user.

## 💬 Conversation: [topic]
- **Date:** YYYY-MM-DD
- **Topics covered:** Bullet list
- **Decisions made:** What was decided (link to decision records)
- **Action items:** What needs to happen next
- **Open questions:** Unresolved items

6. Daily Index (daily/)

Lightweight daily index. Links only.

# YYYY-MM-DD

## Notes of the day
- [[devlog/YYYY-MM-DD-slug]] — short description
- [[decisions/YYYY-MM-DD-slug]] — short description
- [[learnings/YYYY-MM-DD-slug]] — short description
- [[conversations/YYYY-MM-DD-slug]] — short description

Cross-References (Wiki-Links)

Use [[folder/filename]] to connect notes:

- **Related:** [[projects/webclaw-fork]] | [[devlog/2026-02-10-browserless-setup]]

Common patterns:

  • Devlog → Project it affects
  • Decision → Devlog that implements it
  • Learning → Devlog where it was discovered
  • Conversation → Decisions and action items from the day
  • Daily → Everything from the day

Workflow

During conversations

  1. Identify documentable moments (decisions, learnings, dev work)
  2. After completing a significant task → document BEFORE moving to the next one

Delegation to sub-agents

To avoid filling the main context or slowing down:

  1. Write a detailed task with all necessary context
  2. Spawn sub-agent with sessions_spawn
  3. The sub-agent creates notes in the vault following the templates
  4. Example task:
Document in knowledge vault (knowledge/):
- Type: devlog
- File: knowledge/devlog/2026-02-10-feature-x.md
- Content: [detailed description of what was done, issues, etc.]
- Related: [[projects/name]] | [[decisions/date-slug]]
Also update knowledge/daily/2026-02-10.md adding the link.

At the end of a significant session

  1. Create conversation summary
  2. Update daily index
  3. If there's important info → update MEMORY.md with link to the vault

Periodic review (during heartbeats)

  1. Scan recent notes for patterns or connections
  2. Promote important items to MEMORY.md (with links to the vault)
  3. Update project statuses in knowledge/projects/
  4. Identify knowledge gaps

MEMORY.md — The Distilled Index

MEMORY.md remains the executive summary loaded every session. But now:

  • Each item has a link to the vault: → see [[devlog/2026-02-10-slug]]
  • Keep it lean — 1-2 lines per item
  • Details live in the vault, not in MEMORY.md

Deep Learning Mode ("Learn about this")

When the user asks to learn about a topic:

  1. Full analysis — read everything, scrape, web search
  2. Go deep — don't summarize superficially
  3. Document atomically — individual Learning Notes per concept
  4. Deep dive filesknowledge/learnings/YYYY-MM-DD-<topic>.md
  5. Connect — links to existing projects, decisions, learnings
  6. Distill — key takeaways to MEMORY.md with links to the vault

What to Document

Always document:

  • Technical decisions and their reasoning
  • Bugs found and how they were fixed
  • New tools, libs, or techniques discovered
  • Architecture changes
  • Configuration that took trial and error
  • User preferences and requests

Skip:

  • Routine operations (file reads, simple commands)
  • Obvious information the model already knows
  • Temporary debugging that led nowhere

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.88%
按下载量换算76

Claude

33.21%
按下载量换算75

Cursor

18.06%
按下载量换算41

Gemini CLI

9.95%
按下载量换算22

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills