用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/steipete/agent-scripts --skill reminders命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Control the user's existing signed-in Chrome: callable Codex Chrome plugin first, then OpenClaw extension-backed mcporter, with direct DevTools attachment only as a last fallback.
REQUIRED before ANY `op` command or whenever a task needs an API key, token, password, credential, or secret (OPENAI_API_KEY, ANTHROPIC_API_KEY, deploy tokens, live-test keys). Prompt-free 1Password service-account reads; wrong invocations spam macOS dialogs.
yt-dlp downloads: video, audio, subtitles, transcripts, clips, playlists.
正在显示 SKILL.md
基于 SOC 职业分类
| name | reminders |
| description | Apple Reminders via rem CLI: add, list, search, update, complete, delete. |
Use this for Apple Reminders tasks. Prefer rem over Things/AppleScript when
the user wants an AI-friendly personal todo backend on macOS.
remhttps://github.com/BRO3886/remGOBIN=/opt/homebrew/bin go install github.com/BRO3886/rem/cmd/rem@latest
rem uses EventKit for normal reads/writes. It may need Reminders permission for
the calling app in System Settings > Privacy & Security.
Check access:
rem lists -o json
rem today -o json
Use JSON for anything scripted or verified:
rem list --incomplete -o json
rem search "flight" -o json
rem show <id> -o json
Default: add directly, then verify by search/show.
rem add "Book LHR-SFO nonstop business flight" --due "tomorrow 9am" --priority high --notes "Nonstop only." -o json
rem search "LHR-SFO" -o json
Useful flags:
--list "Name": target list--due "tomorrow 9am": due date/time; natural language is supported--priority high|medium|low|none--notes "text"--url https://...--silent: due date without notification--remind-me 15m: alarm before due time--repeat daily|weekly|monthly|yearlyFind the UUID first, then mutate by id or unique short id:
rem search "flight" -o json
rem update <id> --name "New title" --due "friday 2pm" --notes "..." -o json
rem complete <id> -o json
rem delete <id> --force
Always read back after writes; do not trust exit status alone.
rem lists --count -o json
rem list-mgmt create "Travel"
rem list-mgmt rename "Old" "New"
rem list-mgmt delete "Name" --force
date; do not guess.reminders access denied until the calling app has
Reminders permission.Erinnerungen.rem search is plain query search, not shell regex.--due creates an alarm at the due time unless --silent is passed.