Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计异常

ekctlekctl 搜索

Agent Skill

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

总安装

799

周安装

32

GitHub Stars

公开资料未说明

下载量

259
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mcoquet/mac-calendar-ekctl --skill ekctl

简介

ekctl 是 macOS 上通过 EventKit 管理日历事件和提醒事项的命令行工具。

  • 适用于创建、列出、修改或删除日历事件及提醒任务的自动化场景。
  • 支持按日历、时间范围和完成状态过滤,并可设置重复规则。
  • 使用前需在 macOS 13.0+ 系统授权日历和提醒权限,并安装 Homebrew 包。
  • ekctl 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ekctl

CLI tool for managing macOS Calendar events and Reminders using EventKit.

Installation

brew tap schappim/ekctl
brew install ekctl

Requires macOS 13.0 (Ventura) or later. Grant Calendar and Reminders permissions when prompted.

Quick Reference

# List all calendars and reminder lists
ekctl list calendars

# List events (requires --from and --to in ISO8601)
ekctl list events --calendar <ID|alias> --from 2026-02-01T00:00:00Z --to 2026-02-07T23:59:59Z

# List reminders
ekctl list reminders --list <ID|alias>
ekctl list reminders --list <ID|alias> --completed false

# Add event
ekctl add event --calendar <ID|alias> --title "Meeting" --start 2026-02-03T09:00:00Z --end 2026-02-03T10:00:00Z
ekctl add event --calendar <ID|alias> --title "Vacation" --start 2026-02-10T00:00:00Z --end 2026-02-12T00:00:00Z --all-day

# Add reminder
ekctl add reminder --list <ID|alias> --title "Call mom"
ekctl add reminder --list <ID|alias> --title "Pay bills" --due 2026-02-05T17:00:00Z --priority 1

# Complete a reminder
ekctl complete reminder <reminder-id>

# Delete
ekctl delete event <event-id>
ekctl delete reminder <reminder-id>

# Aliases (use names instead of UUIDs)
ekctl alias set work "CALENDAR-UUID-HERE"
ekctl alias list
ekctl alias remove work

Workflow

  1. First run: List calendars to get IDs: ekctl list calendars
  2. Set aliases for frequently used calendars: ekctl alias set work <id>
  3. Use aliases in commands: ekctl list events --calendar work --from... --to...

Quick Reminder Workflow

Adding a reminder requires a list ID. Here's the fastest path:

# 1. Find reminder lists (look for "type": "reminder")
ekctl list calendars

# 2. Add reminder with the list ID
ekctl add reminder --list "<LIST-ID>" --title "Do the thing" --due "2026-02-17T09:00:00Z"

Choosing between multiple lists: Users often have multiple "Reminders" lists from different sources (iCloud, Exchange, etc.). Prefer iCloud for personal reminders as it syncs across Apple devices.

Pro tip: Set an alias for your default reminder list to skip the lookup:

ekctl alias set reminders "YOUR-ICLOUD-REMINDERS-UUID"
# Then use: ekctl add reminder --list reminders --title "..."

Required Parameters

These parameters are mandatory (not optional):

CommandRequired
add reminder--list, --title
add event--calendar, --title, --start, --end
list events--calendar, --from, --to
list reminders--list

ISO8601 Date Format

All dates MUST include the Z suffix: YYYY-MM-DDTHH:MM:SSZ

⚠️ Common mistake: Dates without Z will fail silently or error.

# ❌ WRONG - these will fail
--due "2026-02-17"
--due "2026-02-17T09:00:00"

# ✅ CORRECT - always include Z
--due "2026-02-17T09:00:00Z"

Examples:

  • 2026-02-03T09:00:00Z - 9 AM UTC on Feb 3, 2026
  • 2026-02-03T00:00:00Z - Midnight UTC on Feb 3, 2026

Priority Values (Reminders)

  • 0 - None
  • 1 - High
  • 5 - Medium
  • 9 - Low

Output

All commands return JSON with "status": "success" or "status": "error".

Time Management Best Practices

Follow these rules when helping users manage their calendar:

Finding Available Slots

  • Check ALL calendars when looking for free time—list calendars first, then query events from each one for the relevant time range
  • Look at the full week when suggesting times, not just the requested day
  • Avoid fragmented gaps—don't suggest a 30-min slot between two meetings; prefer contiguous free blocks
  • Respect working hours—default to 9 AM - 6 PM unless the user specifies otherwise
  • Protect lunch—avoid scheduling over 12 PM - 1 PM unless explicitly requested

Scheduling Events

  • Add buffer time—leave 10-15 minutes between meetings for context switching
  • Default to shorter durations—suggest 30 minutes for meetings unless the user specifies longer
  • Group meetings together—when suggesting times, prefer slots adjacent to existing meetings to preserve larger focus blocks
  • Morning for focus, afternoon for meetings—when the user has flexibility, suggest meetings in the afternoon to protect morning deep work time

Reminders

  • Set appropriate lead times based on task type:

- Video/phone calls: 5 minutes before - In-person meetings: 15-30 minutes before (account for travel) - Deadlines/tasks: 1 day before

  • Include travel time for in-person meetings—ask about location and add buffer accordingly

Weekly Review

When asked about schedule or availability:

  • Summarize the week's commitments
  • Highlight unusually busy days
  • Note large free blocks available for deep work

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.94%
按下载量换算88

Claude

32.89%
按下载量换算85

Cursor

18.56%
按下载量换算48

Gemini CLI

9.58%
按下载量换算25

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills