Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计提醒

apple-notes-applescriptApple notes applescript 搜索

Agent Skill

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

总安装

34,397

周安装

1,419

GitHub Stars

公开资料未说明

下载量

11,238
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install apple-notes-applescript

简介

适用于 macOS 的 Apple Notes.app 集成。通过 AppleScript 列出文件夹、读取、创建、搜索、编辑和删除笔记。

SKILL.md

name
apple-notes-custom
description
Apple Notes.app integration for macOS. List folders, read, create, search, edit, and delete notes via AppleScript.
metadata
{"clawdbot":{"emoji":"📝","os":["darwin"]}}

Apple Notes

Interact with Notes.app via AppleScript. Run scripts from: cd {baseDir}

Commands

CommandUsage
List foldersscripts/notes-folders.sh [--tree] [--counts]
List notesscripts/notes-list.sh [folder] [limit]
Read notescripts/notes-read.sh <name-or-id> [folder]
Create notescripts/notes-create.sh <folder> <title> [body]
Search notesscripts/notes-search.sh <query> [folder] [limit] [--title-only]
Edit notescripts/notes-edit.sh <name-or-id> <new-body> [folder]
Delete notescripts/notes-delete.sh <name> <folder> ⚠️ folder required

Folder Paths

All commands support subfolder paths with / separator:

scripts/notes-list.sh "Scanned/Medical & Health" 10
scripts/notes-read.sh "blood test" "Scanned/Medical & Health"
scripts/notes-create.sh "Property/416 Garfield" "Inspection notes" "Roof looks good"

Folder Tree Structure

This collection has 4000+ notes. Key structure:

  • Scanned — parent folder with many subfolders (Medical & Health, Receipts, etc.)
  • Fetish — parent with subfolders (AW, Bimbo, Events, etc.)
  • Hobbies — parent with subfolders (3d printing, Homelab, etc.)
  • Property — subfolders per address

Use --tree --counts to see the full hierarchy.

Folder Listing

scripts/notes-folders.sh                  # Flat list
scripts/notes-folders.sh --counts         # With note counts
scripts/notes-folders.sh --tree --counts  # Full hierarchy with counts

Listing Notes

scripts/notes-list.sh "Notes" 10                      # Specific folder
scripts/notes-list.sh "Scanned/Receipts" 5             # Subfolder
scripts/notes-list.sh "" 10                             # All folders (shows folder name per note)

Without a folder, output includes the folder column: ID | Date | Folder | Title With a folder: ID | Date | Title

Reading Notes

scripts/notes-read.sh "blood test" "Scanned/Medical & Health"   # By name (partial match)
scripts/notes-read.sh "x-coredata://…/ICNote/p12345"            # By ID (direct lookup, fast)

Output: Title, Folder, Modified date, ID, then body text.

Searching

Title search first (fast), body search fallback (slower):

scripts/notes-search.sh "tax" "" 10                    # All folders
scripts/notes-search.sh "receipt" "Scanned/Receipts" 5  # Specific folder
scripts/notes-search.sh "keyword" "" 10 --title-only    # Skip body search

Output: ID | Date | Folder | Title

Creating Notes

scripts/notes-create.sh "Notes" "My Title" "Body text here"   # With body
scripts/notes-create.sh "Notes" "Empty Note"                    # Title only

Returns the created note's ID.

Editing Notes

scripts/notes-edit.sh "My Note" "New body content" "Notes"              # By name
scripts/notes-edit.sh "x-coredata://…/ICNote/p12345" "New body"         # By ID

Deleting Notes

scripts/notes-delete.sh "Old Note" "Notes"                    # Folder required
scripts/notes-delete.sh "receipt" "Scanned/Receipts"

⚠️ Folder argument is required for safety — prevents accidental matches across 4000+ notes.

Performance Tips

SituationTip
Listing/searching all notesAlways specify a folder — iterating 4000+ notes is slow
Reading a known noteUse the ID from a previous list/search — instant lookup
Searching large foldersUse --title-only if body search isn't needed
Finding the right folderUse --tree --counts first to see hierarchy

Errors

ErrorCause
Error: Can't get folderFolder name doesn't exist or wrong path
No note matching…No partial match found in scope
Empty body textScanned/image-only notes have no extractable text

Technical Notes

  • Partial name matching for read/edit/delete (first match wins)
  • Multiline body supported via temp files
  • Folder names are case-sensitive
  • All user inputs escaped for AppleScript safety (quotes, backslashes)
  • number of used instead of count of (AppleScript reserved word)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.46%
按下载量换算9,042

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills