Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

notesnotes 搜索

Agent Skill

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

总安装

113,147

周安装

4,622

GitHub Stars

3

下载量

36,606
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:notes(notes 搜索)
来源仓库:https://github.com/ivangdavila/notes
安装命令:
openclaw skills install notes
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install notes

简介

让您的代理在任何地方写笔记:本地 Markdown、Apple Notes、Bear、Obsidian、Notion、Evernote,可根据笔记类型进行配置。

SKILL.md

name
Notes (Local, Apple, Notion, Obsidian & more)
slug
notes
version
1.1.3
homepage
https://clawic.com/skills/notes
description
Let your agent write notes anywhere: local markdown, Apple Notes, Bear, Obsidian, Notion, Evernote, configurable per note type.
changelog
Security improvements - declared optional dependencies, added explicit Scope section, clarified credential handling
metadata
{"clawdbot":{"emoji":"📝","requires":{"bins":[],"bins.optional":["memo","grizzly","obsidian-cli","clinote"],"env.optional":["NOTION_API_KEY"]},"configPaths.optional":["~/.config/notion/api_key","~/.config/grizzly/token"],"os":["linux","darwin","win32"]}}

Setup

On first use, read setup.md for platform selection and integration guidelines.

When to Use

User needs to capture any type of notes: meetings, brainstorms, decisions, daily journals, or project logs. Agent handles formatting, platform routing (local or external apps), action item extraction, and retrieval across all configured platforms.

Scope

This skill ONLY:

  • Creates and manages markdown files in ~/notes/
  • Runs user-installed CLI tools (memo, grizzly, obsidian-cli, clinote) if present and configured
  • Calls Notion API only when user has configured Notion integration
  • Reads config from ~/notes/config.md to route notes to platforms

This skill NEVER:

  • Installs software automatically
  • Accesses credential files without explicit user permission
  • Reads files outside ~/notes/ (except platform CLIs)
  • Sends data to external services unless user configures that platform
  • Modifies system settings or other applications

Platform Integrations (User-Installed, Optional)

This skill works 100% locally by default. External platforms require user to install tools separately:

PlatformUser InstallsUser ConfiguresData Flow
LocalnothingnothingAll local
Apple Notesmemo CLInothingLocal (app communication)
Beargrizzly CLIToken in ~/.config/grizzly/tokenLocal (app communication)
Obsidianobsidian-cliVault pathLocal (file-based)
NotionnothingAPI keyNetwork (api.notion.com)
Evernoteclinote CLILogin via CLINetwork (Evernote servers)

Agent behavior:

  1. Asks user which platforms they want before checking for tools
  2. Only checks for CLI presence after user confirms interest
  3. Falls back to local if tool unavailable
  4. Never reads credential files without explicit permission per session

Architecture

Memory at ~/notes/. See memory-template.md for setup.

~/notes/
├── config.md          # Platform routing configuration
├── index.md           # Search index with tags
├── meetings/          # Local meeting notes
├── decisions/         # Local decision log
├── projects/          # Local project notes
├── journal/           # Local daily notes
└── actions.md         # Central action tracker (all platforms)

Quick Reference

TopicFile
Setup processsetup.md
Memory templatememory-template.md
All note formatsformats.md
Action item systemtracking.md
Local markdownplatforms/local.md
Apple Notesplatforms/apple-notes.md
Bearplatforms/bear.md
Obsidianplatforms/obsidian.md
Notionplatforms/notion.md
Evernoteplatforms/evernote.md

Core Rules

1. Route to Configured Platform

Check ~/notes/config.md for platform routing:

# Platform Routing
meetings: local          # or: apple-notes, bear, obsidian, notion
decisions: local
projects: notion
journal: bear
quick: apple-notes

If note type not configured, use local. If platform not available (missing CLI/credentials), fall back to local with warning.

2. Always Use Structured Format

Every note type has a specific format regardless of platform. See formats.md for templates.

Note TypeTriggerKey Elements
Meeting"meeting notes", "call with"Attendees, decisions, actions
Decision"we decided", "decision:"Context, options, rationale
Brainstorm"ideas for", "brainstorm"Raw ideas, clusters, next steps
Journal"daily note", "today I"Date, highlights, blockers
Project"project update", "status"Progress, blockers, next
Quick"note:", "remember"Minimal format, tags

3. Extract Action Items Aggressively

If someone says "I'll do X" or "we need to Y", that is an action item.

Every action item MUST have:

  • Owner: Who is responsible (@name)
  • Task: Specific, actionable description
  • Deadline: Explicit date (not "soon" or "ASAP")

Action items sync to ~/notes/actions.md regardless of which platform holds the note.

4. Platform-Specific Execution

After determining platform, read the corresponding file:

PlatformFileCLI
localplatforms/local.mdnone
apple-notesplatforms/apple-notes.mdmemo
bearplatforms/bear.mdgrizzly
obsidianplatforms/obsidian.mdobsidian-cli
notionplatforms/notion.mdcurl (API)
evernoteplatforms/evernote.mdclinote

5. Unified Search Across Platforms

When searching notes:

  1. Search local ~/notes/ first
  2. Search each configured external platform
  3. Combine results with source indicators

Example output:

Search: "product roadmap"

Local:
  [[2026-02-19_product-sync]] - meeting, ~/notes/meetings/

Notion:
  "Q1 Roadmap" - page, Projects database

Bear:
  "Roadmap Ideas" - #product #planning

6. Cross-Platform Action Tracking

~/notes/actions.md is the SINGLE source of truth for all action items, regardless of where the note lives.

Format includes source:

| Task | Owner | Due | Source |
|------|-------|-----|--------|
| Review proposal | @alice | 2026-02-20 | local:[[2026-02-19_sync]] |
| Update roadmap | @bob | 2026-02-22 | notion:Q1 Planning |
| Draft post | @me | 2026-02-21 | bear:#content-ideas |

7. Filename Convention (Local)

For local notes: YYYY-MM-DD_topic-slug.md (date first, then topic)

External platforms use their native naming/organization.

Common Traps

  • Platform misconfiguration: Always verify platform is available before attempting. Fall back gracefully.
  • Vague deadlines: "ASAP", "soon", "next week" are not deadlines. Force explicit dates.
  • Missing owners: "We should do X" needs "@who will do X"
  • Split action tracking: Never track actions only in the external platform. Always sync to central tracker.
  • No retrieval tags: A note without tags is a note you will never find.

External Endpoints

EndpointData SentWhenPurpose
https://api.notion.com/v1/pagesNote title, contentUser configures NotionCreate pages
https://api.notion.com/v1/databases/*/querySearch queriesUser searches Notion notesQuery database

No other external endpoints. Apple Notes, Bear, Obsidian, and Evernote use local CLI tools that communicate with locally-installed apps.

Security & Privacy

Data flow by platform:

  • Local: All data stays in ~/notes/. No network.
  • Apple Notes: Data stays local. memo CLI communicates with Notes.app via macOS APIs.
  • Bear: Data stays local. grizzly CLI communicates with Bear.app.
  • Obsidian: Data stays local. obsidian-cli reads/writes vault files.
  • Notion: Note content sent to api.notion.com. Requires user-provided API key.
  • Evernote: Note content sent to Evernote servers via clinote. Requires user login.

Credential handling:

  • Agent asks permission before checking for credentials
  • Agent never reads ~/.config/notion/api_key or ~/.config/grizzly/token without explicit user consent
  • User sets up credentials themselves via platform documentation

What stays local always:

  • Action items tracker: ~/notes/actions.md
  • Note index: ~/notes/index.md
  • Platform config: ~/notes/config.md

Related Skills

Install with clawhub install <slug> if user confirms:

  • meetings — meeting facilitation and agendas
  • journal — daily journaling practice
  • documentation — technical docs

Feedback

  • If useful: clawhub star notes
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

95.24%
按下载量换算34,864

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills