Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

session-notes会议笔记

Agent Skill

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

总安装

931

周安装

40

GitHub Stars

5

下载量

326
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adeonir/agent-skills --skill session-notes

简介

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

  • 它通过关键词匹配和来源仓库过滤来组织信息,帮助 Agent 聚焦相关上下文。
  • 安装命令为 npx skills add https://github.com/adeonir/agent-skills --skill session-notes,需确认权限范围和维护状态。
  • 使用前建议核验是否会触发联网、命令执行或文件读写,并参考原始 README 了解具体用法。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Session Notes

Create and manage Obsidian notes using MCPVault MCP for structured documentation.

Workflow

resolve-vault --> select-type --> compose-note --> write --> link-related

Each note type has its own workflow. Use any type independently based on user needs.

Vault Resolution

Run once per session before any write operation.

  1. Verify MCPVault MCP is available (write_note, read_note tools present)
  2. If multiple vaults exist, ask user which one to use
  3. All write operations use paths relative to the vault root

For project path resolution, load mapping.md/session-notes/references/mapping.md). Fixed-path refs (brag.md, challenge.md, transcription.md) write directly to Brags/, Challenges/, Meetings/ without path resolution.

Filename Sanitization

When generating filenames from user input:

  • Remove invalid characters: / \: *? " < > |
  • Preserve accented characters (valid in filenames)
  • Use Title Case for all filenames
  • Example: What's Next? becomes Whats Next.md

Context Loading Strategy

Load only the reference or guide matching the current trigger. Never load multiple simultaneously unless explicitly noted.

  • templates/*.md are not loaded into context. The agent uses them as reference to compose note content.

Triggers

Trigger PatternReference
Project, new project note, document projectproject.md/session-notes/references/project.md)
Challenge, technical challenge, take-home, coding interviewchallenge.md/session-notes/references/challenge.md)
Brag, achievement, accomplishmentbrag.md/session-notes/references/brag.md)
Transcription, meeting notes, standup, lecture, course notestranscription.md/session-notes/references/transcription.md)
Markdown, syntax, wikilink, callout, embedmarkdown.md/session-notes/guides/markdown.md)
Vault structure, organize vaultvault-structure.md/session-notes/guides/vault-structure.md)

Notes:

  • markdown.md and vault-structure.md are informational guides (no write operations).
  • mapping.md is not a direct trigger. It is loaded by project.md to resolve vault paths.
  • All other references are note-creation workflows (compose, write, link).

Cross-References

mapping.md <-- project.md   (project loads mapping to resolve vault path)
challenge --> brag           (completed challenge becomes achievement)

Writing Style

  • Language: English for all notes
  • Body: rich prose context after the heading, not just bullet points
  • Bullet points: describe what happened and why, with natural language, and with enough context to understand weeks later
  • Observations: #category content syntax -- tags are indexed by Obsidian natively
  • Relations: typed verbs + wikilinks (- follows [[X]], - part_of [[Project]], - contains [[Session]]) -- common types include follows, part_of, expands, relates_to, implements, requires, replaces, pairs_with, extends, depends_on, contains; inline [[wikilinks]] in prose cover ordinary mentions, the Relations section holds typed edges that add graph value; omit the section if no typed edges apply
  • Wikilinks must point to existing files. Before adding a project link, verify the {Name} Overview.md file exists in the vault. Never create orphan wikilinks -- clicking them creates empty files at the vault root

Guidelines

DO:

  • Ask one question at a time when gathering context from the user
  • Resolve vault once per session (see Vault Resolution above)
  • Compose note content following templates/*.md structure
  • Use write_note for new notes, read_note + patch_note for updates
  • Use search_notes to check if a note exists before creating
  • Link related notes using Obsidian wiki-links [[Note Name]]
  • Use Title Case for filenames (e.g., My Project.md)
  • Sanitize filenames from user input (see Filename Sanitization above)

DON'T:

  • Batch multiple questions to the user (contrasts: one question at a time)
  • Overwrite or delete existing vault files (contrasts: append, rename, or cancel)
  • Assume vault location without confirmation (contrasts: resolve vault once per session)
  • Use templates for updates (contrasts: templates are for new notes only)
  • Create duplicate notes (contrasts: search first with search_notes)
  • Use absolute paths in wiki-links (contrasts: always relative)
  • Create wikilinks to files that don't exist in the vault (contrasts: verify target exists before linking)

Output

Notes are created in the user's Obsidian vault:

Vault/
├── {VaultFolder}/
│   └── {Project}/
│       └── {Project Name} Overview.md
├── Challenges/
├── Brags/
└── Meetings/

The {VaultFolder} depends on the project category (e.g., Work/, Ventures/, Projects/). See mapping.md/session-notes/references/mapping.md) for resolution.

Error Handling

  • MCPVault unavailable: inform user the skill requires MCPVault MCP server
  • Vault not found: ask user for correct vault name
  • Note already exists: ask to append, choose new name, or cancel
  • Empty required fields: prompt user for missing information

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.45%
按下载量换算119

Claude

31.78%
按下载量换算104

Cursor

18.11%
按下载量换算59

Gemini CLI

8.88%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills