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

vault-scribe保险库抄写员

Agent Skill

vault-scribe 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

364

周安装

15

GitHub Stars

公开资料未说明

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/psenger/ai-agent-skills --skill vault-scribe

简介

vault-scribe 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

  • 它可辅助从文档中提取内容、匹配字段或过滤无关信息,提升信息获取效率。
  • 通过 npx skills add 命令从指定仓库安装,具体用法需结合 README 进一步确认。
  • 安装前建议检查权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Vault Scribe — Obsidian + GitHub Markdown Skill

Creates and edits Markdown that is GitHub-Flavored Markdown (GFM) first, with optional Obsidian-specific extensions when needed. Standard Markdown (headings, bold, italic, lists, quotes, code blocks, tables) is assumed knowledge.

Default rule: Use standard GFM syntax unless the user explicitly requests Obsidian-specific features or is working in an Obsidian-only context. Obsidian wikilinks ([[Note]]) break on GitHub — always prefer standard Markdown links for cross-platform compatibility.

When invoked with an argument (e.g. /vault-scribe meeting), use $ARGUMENTS to determine the note type. If no argument is provided, infer the type from the source material or ask the user.


Workflow: Creating a Note

1. Analyse the Source Material

  • Read the full transcript, notes, or brief carefully
  • Identify the core topic, intended audience, and key concepts
  • Note any implicit structure (e.g., problem → solution → examples)
  • Extract any explicit examples, warnings, tips, or quotes worth preserving

2. Generate YAML Front Matter

Reference: See references/FRONT-MATTER.md for the complete schema definitions, all enum values, and type-specific required fields.

First, determine the note type based on what the user is creating:

If the user wants…Set type to
A guide, reference doc, or knowledge articlearticle
A step-by-step instructional guide or procedurehow-to
Architecture docs, RFCs, design docs, system specstechnical
An investigation with multiple sourcesdeep-research
A versioned plan or strategy documentstrategy
Meeting notes, 1:1s, standups, retrospectivesmeeting
Brainstorming, ideation, or exploratory thinking (solo or group)brainstorming
[!TIP] Brainstorming is its own note type. It works for group sessions (add attendees and meeting_date) and solo AI ideation (omit them). Add sources when the brainstorm draws on external references.

Then apply the corresponding frontmatter schema from references/FRONT-MATTER.md. Every note type uses the core fields plus any type-specific required fields.

Tag guidelines:

  • Use lowercase, hyphenated slugs only (e.g. distributed-systems, not Distributed Systems)
  • Include 4–8 tags: topic-specific first, then broader domain tags
  • Always include at least one technology tag and one domain/concept tag

3. Structure the Document Body

Use this hierarchy:

# Title (H1) — matches front matter title
## Section (H2) — major topic areas
### Subsection (H3) — specific concepts within a section

Target sections (adapt names to the topic):

  1. Overview / What is X? — define the subject clearly
  2. How It Works — mechanics, process, or architecture
  3. Practical Examples — concrete code blocks or walkthroughs
  4. Common Mistakes / Warnings — callout blocks
  5. Quick-Start / Checklist — actionable summary
  6. Further Reading & References — links table
[!NOTE] Minimum 4 sections (Overview, How It Works, Examples, References) for all notes. The full 6 sections are the target for comprehensive articles and guides. Simpler note types (meetings) naturally use fewer sections.

4. Apply Callout Blocks

Use GFM Alerts by default (renders on both GitHub and Obsidian). See references/CALLOUTS.md for the full list of callout types including Obsidian-only variants.

Callout TypeUse For
[!NOTE]Neutral supplementary info
[!TIP]Actionable best practice
[!IMPORTANT]Key concept the reader must not miss
[!WARNING]Common mistake or gotcha
[!CAUTION]Risk of data loss, security issue, or breaking change
[!TIP] Every Warning, Tip, and TL;DR should be a callout block — not plain prose. This makes the document scannable.

5. Code Blocks

Always use fenced code blocks with a language identifier:

key: value

mkdir -p ~/.claude/skills/my-skill

For directory trees, use plain text or no language tag.

6. Table of Contents

Never use [TOC], [[_TOC_]], or any other TOC directive — neither GitHub nor Obsidian supports them natively. They render as broken plain text.

  • GitHub auto-generates a TOC in the sidebar — no directive needed.
  • Obsidian generates one via its built-in plugin — no directive needed.
  • Only add a manual TOC (using standard anchor links) when the document has 6+ sections and will be read outside a browser. See references/MARKDOWN-SYNTAX.md for anchor rules and an example.

7. Tables & Links

Use Markdown tables for comparisons, option lists, and reference links. Always include a reference links table at the end:

| Resource | Link |
|---|---|
| Official Docs | [docs.example.com](https://docs.example.com) |
| Source Video  | [youtube.com/watch?v=...](https://youtube.com/watch?v=...) |

8. Inline Formatting Rules

ElementUsage
**bold**Key terms on first use, critical values
*italic*Titles of external resources, emphasis
` code `All file paths, commands, config keys, code symbols
[[wikilink]]Internal Obsidian links (only if Obsidian-only context)

9. Transcript Appendix

When the source material includes a transcript (video, podcast, meeting recording, article), always append the raw transcript at the very end of the document, after all other content, using this exact format:

---

## Transcript

Transcript from: [<name of video or article or meeting>](<link to source>)
Date of material: <YYYY-MM-DD>

\```
<raw transcript>
\```
  • The transcript section is separated from the rest of the document by a horizontal rule (---)
  • The source name must be a clickable Markdown link when a URL is available
  • If no URL exists, use plain text for the name
  • Date should be in YYYY-MM-DD format when known; leave blank if unknown
  • The raw transcript goes inside a fenced code block with no language tag, preserving the original text exactly as provided

Output Requirements

  • File extension: .md
  • Encoding: UTF-8
  • Front matter: Always present, always first
  • Minimum sections: 4 (Overview, How It Works, Examples, References). Target 6 for comprehensive articles.
  • All external URLs must be real and formatted as [label](url)
  • No bare URLs — always wrapped in Markdown link syntax
  • End the document with an [!abstract] callout containing the TL;DR (before the Transcript appendix, if present)

Quality Checklist

Before finalising the output, verify:

  • Front matter is complete and valid YAML
  • type field is set and matches the correct note type schema
  • All type-specific required fields are present (per references/FRONT-MATTER.md)
  • Title in front matter matches H1 heading
  • category is a valid enum value
  • Tags are lowercase and hyphenated
  • All warnings/tips are callout blocks, not plain paragraphs
  • At least one code block example is present (for articles/guides)
  • A reference links table exists at the end
  • Document closes with an [!abstract] callout (before Transcript appendix if present)
  • No bare URLs (all links use [label](url) format)
  • date_created and date_updated are set (use today's date if unknown)
  • If source material includes a transcript, it is appended in the Transcript Appendix format

Reference Files

  • references/FRONT-MATTER.md — Complete frontmatter schemas for all note types, enum values for type, category, and status, and type-specific required/optional fields. Always consult this file when generating front matter.
  • references/CALLOUTS.md — GFM Alerts (default) and Obsidian callout types, foldable/nested syntax, aliases, and custom CSS callouts.
  • references/EMBEDS.md — Standard GFM image syntax (default) and Obsidian-specific embed syntax for notes, images, audio, and PDFs.
  • references/MARKDOWN-SYNTAX.md — Detailed GFM + Obsidian syntax reference for links, tags, comments, highlighting, math, diagrams, footnotes, and the compatibility matrix.
  • examples/ — Example output files showing correctly formatted notes for different note types.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34%
按下载量换算40

Claude

33.5%
按下载量换算40

Cursor

20.12%
按下载量换算24

Gemini CLI

9.04%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills