read-mac-stickies
Read and search Mac Stickies app content — list, filter by color, search by text, or read specific notes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read and search Mac Stickies app content — list, filter by color, search by text, or read specific notes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Helps users connect and use a service in Rebel when it isn't already in the built-in connector catalog. Acts as an expert advisor — runs the full build-vs-buy check (catalog, MCP Registry, community) before scaffolding a custom MCP server and guiding research, implementation, security review, and contribution.
Guides users through adding new tools or capabilities to an existing connector (MCP server). Handles eligibility, workspace setup, connector research, implementation via Software Engineer workflow, local testing, and PR submission with an extension-specific template.
Capture citable sources (meetings, documents, files, media, web content) as structured files in memory/sources/ with provenance metadata for traceability.
Help users celebrate impactful wins and surface important learnings by analyzing their recent communications and activities.
Guidelines for maintaining single sources of truth and using signposting to connect documentation without duplication
Evaluate a finalised meeting transcript and distribute relevant content to other spaces, deciding per space whether to copy the full transcript, write a sanitised summary, or skip.
| name | read-mac-stickies |
| description | Read and search Mac Stickies app content — list, filter by color, search by text, or read specific notes |
| use_cases | ["What's in my Mac Stickies?","Show me my sticky notes","Read the purple sticky","Find the sticky that mentions quarterly review","Check my stickies for anything about the project deadline"] |
| tags | ["productivity","mac","notes"] |
| last_updated | "2026-03-27T00:00:00.000Z" |
| tools_required | ["Bash"] |
| agent_type | main_agent |
Goal: Read, list, filter, and search content from the macOS Stickies app.
Use this skill when users want to:
~/Library/Containers/com.apple.Stickies/--color, --search, --largest, or combine filters--allList all stickies (shows UUID, size, color for each):
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py
Read all stickies' content:
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --all
Search for stickies containing specific text (case-insensitive):
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --search "quarterly review"
Filter by color:
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --color purple
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --color blue --all
Read the largest sticky (by height — often the most detailed note):
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --largest
Combine filters (e.g. largest purple sticky, or search within blue stickies):
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --color purple --largest
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --color blue --search "deadline"
Read a specific sticky by UUID:
python3 rebel-system/skills/admin/read-mac-stickies/scripts/read-mac-stickies.py --uuid ABC123...
Present the sticky content clearly. Depending on context, highlight:
| Option | Description |
|---|---|
| (no args) | List all stickies with metadata (UUID, size, color) |
--all | Read and display text content of all stickies |
--search TEXT | Find stickies containing the given text (case-insensitive) |
--largest | Show text from the largest sticky (by height) |
--color COLOR | Filter by color: purple, blue, green, yellow, pink/red, white/gray |
--uuid UUID | Show text from a specific sticky by UUID |
Filters can be combined: --color works with --all, --search, and --largest.
@check-todos-and-prioritise - Combine with other todo sources for comprehensive review@identify-dropped-balls - Analyse stickies for neglected prioritiesHow Mac Stickies Storage Works:
~/Library/Containers/com.apple.Stickies/Data/Library/Stickies/.SavedStickiesState plist contains colors, sizes, positionsBundled Script (scripts/read-mac-stickies.py):
plutil to read plist metadatatextutil to convert RTF to plain text