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

doc-vault-project文档库项目

Agent Skill

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

总安装

815

周安装

35

GitHub Stars

公开资料未说明

下载量

286
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/molechowski/claude-skills --skill doc-vault-project

简介

用于管理 Obsidian 知识库中的多笔记研究项目,按阶段组织目录结构。

  • 支持概念、研究、设计与实现四类子目录,内置 MOC 索引管理。
  • 依赖 doc-obsidian 技能实现笔记增删与搜索,确保知识连贯性。
  • 需提前配置 notesmd-cli 和 qmd 查询工具,确认 vault 路径权限。
  • doc-vault-project 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Vault Project

Manage multi-note research projects in an Obsidian vault with phased subdirectory structure.

Prerequisites

SkillRequiredPurpose
doc-obsidianYesVault CRUD via notesmd-cli + search via qmd

Directory Structure

projects/{project-slug}/
├── _index.md              # MOC: status, component links, linked research
├── concept/               # Problem definition, threat models, requirements
├── research/              # Deep dives per component, tech evaluation
├── design/                # Architecture, API design, data models
└── implementation/        # Build plans, code refs, test plans

Projects live in projects/ (top-level). Separate from research/ (knowledge).

Four phases are always created. Empty dirs signal "not started yet."

Step 0: Setup

Run before every operation:

VAULT=$(notesmd-cli print-default --path-only)
qmd status

If either fails, stop and tell the user to set up doc-obsidian first.

Commands

init — Scaffold New Project

Trigger: "create project {name}", "new project {name}", "project init {name}"

Workflow

  1. Parse project name → kebab-case slug (max 40 chars)
  2. Check if projects/{slug}/ exists — if yes, abort and show existing project
  3. Create directory structure:
VAULT=$(notesmd-cli print-default --path-only)
mkdir -p "$VAULT/projects/{slug}/concept"
mkdir -p "$VAULT/projects/{slug}/research"
mkdir -p "$VAULT/projects/{slug}/design"
mkdir -p "$VAULT/projects/{slug}/implementation"
  1. Load references/index-template.md and references/frontmatter-schemas.md
  2. Build _index.md with project frontmatter and empty status table
  3. Write _index.md:
# Use Write tool → "$VAULT/projects/{slug}/_index.md"
  1. Re-index: qmd update && qmd embed
  2. Confirm:
Created: [[{slug}]]
Path: projects/{slug}/
Phases: concept/ research/ design/ implementation/
Components: 0

add — Add Component Note

Trigger: "add {note} to project {name}", "project add {note} to {phase}"

Workflow

  1. Identify project slug and target phase (concept/research/design/implementation)
  2. If phase not specified, infer from content:

- Problem/threat/requirement → concept - Deep dive/evaluation/comparison → research - Architecture/API/data model → design - Plan/code/test/deploy → implementation

  1. If ambiguous, ask the user
  2. Generate note slug (kebab-case, max 60 chars)
  3. Check for duplicates in the phase directory
  4. Load frontmatter schema from references/frontmatter-schemas.md
  5. Build component note with type: project-component frontmatter
  6. Save:
VAULT=$(notesmd-cli print-default --path-only)
# Write tool → "$VAULT/projects/{project-slug}/{phase}/{note-slug}.md"
  1. Update _index.md:

- Add wikilink under the correct phase section - Update status table counts - Update components: and updated: in frontmatter

  1. Re-index: qmd update && qmd embed
  2. Confirm:
Added: [[{note-slug}]]
Path: projects/{project-slug}/{phase}/{note-slug}
Phase: {phase}
Status: pending
Project components: {N}

status — Show Project Status

Trigger: "project status", "project status {name}", "how is project {name}"

Workflow

  1. If no project specified, list all projects:
VAULT=$(notesmd-cli print-default --path-only)
ls "$VAULT/projects/"
  1. For a specific project, read _index.md frontmatter and list components:
VAULT=$(notesmd-cli print-default --path-only)
# Read _index.md for project metadata
# List files in each phase directory
# Read frontmatter status from each component
  1. Display:
Project: {name}
Status: {project-status}
Updated: {date}

| Phase | Component | Status |
|-------|-----------|--------|
| concept | [[threat-model]] | complete |
| concept | [[gap-analysis]] | in-progress |
| research | [[endpoint-security]] | pending |
| design | — | — |
| implementation | — | — |

Progress: 1/3 complete

link — Link Existing Research

Trigger: "link research to project {name}", "project link {note} to {name}"

Workflow

  1. Identify project and target research notes
  2. If no specific notes given, search for related research:
qmd vsearch "{project topic}" --json -n 10
  1. Filter results: only notes in research/, exclude score < 0.3
  2. Present candidates with scores, let user pick
  3. Read project _index.md
  4. Add wikilinks under ### Linked Research section:
### Linked Research

- [[existing-note]] — {brief relevance}
  1. Do NOT move files — research stays in research/
  2. Update updated: in frontmatter
  3. Re-index: qmd update && qmd embed
  4. Confirm:
Linked to [[{project}]]:
- [[note-1]] — {relevance}
- [[note-2]] — {relevance}

promote — Promote Research Topic to Project

Trigger: "promote {topic} to project", "make {topic} a project"

Workflow

  1. Find existing research notes on the topic:
qmd vsearch "{topic}" --json -n 15
  1. Present candidates, let user confirm which notes relate
  2. Run init to scaffold the project
  3. Run link to wikilink the existing research notes
  4. Optionally create initial component notes in concept/ if the research already covers problem definition
  5. Confirm:
Promoted: {topic} → [[{project}]]
Linked research: {N} notes
Components: {N} created

Promote does NOT move existing notes. It creates a project that references them.

Constraints

DO:

  • Always run Step 0 first
  • Always use fixed four phases (concept/research/design/implementation)
  • Always update _index.md after adding/linking components
  • Always re-index after changes
  • Resolve vault path dynamically via notesmd-cli print-default --path-only
  • Keep research notes in research/ — link, don't move
  • Read notes before editing

DON'T:

  • Create custom phases or skip phase directories
  • Move existing research notes into project directories
  • Create projects without _index.md
  • Skip re-indexing
  • Hardcode vault paths
  • Auto-trigger — only respond to explicit project commands

References

  • references/frontmatter-schemas.md — Frontmatter for _index.md and component notes, field rules, status transitions
  • references/index-template.md — _index.md scaffold template, status table update rules, linked research format

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.57%
按下载量换算99

Claude

31.98%
按下载量换算91

Cursor

16.89%
按下载量换算48

Gemini CLI

10.14%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills