← 返回
未分类 Key

Claw Calendar

Manage calendar events by creating, viewing, updating, or deleting events using natural language commands via the Claw Calendar API.
通过自然语言命令使用 Claw Calendar API 管理日历事件,包括创建、查看、更新和删除事件。
5twang 5twang 来源
未分类 clawhub v1.3.1 1 版本 100000 Key: 需要
★ 0
Stars
📥 324
下载
💾 1
安装
1
版本
#latest

概述

Claw Calendar

Overview

This skill enables AI assistants to interact with Claw Calendar, a calendar management API. It provides the ability to create, view, update, and delete calendar events through natural language commands.

How to Use

When user wants to create/manage calendar events:

  1. Check if user has configured:
    • CALENDAR_API_BASE_URL (e.g., https://claw-calendar.com)
    • CALENDAR_API_KEY (API Key from Claw Calendar settings)
  1. If not configured, tell user to configure these environment variables in WorkBuddy settings.
  1. If configured, use the API endpoints below.

API Authentication

IMPORTANT: Use X-API-Key header, NOT Authorization: Bearer

Headers:
  X-API-Key: ${CALENDAR_API_KEY}

API Endpoints

Base URL: ${CALENDAR_API_BASE_URL}

List Calendars

GET /api/calendars
Headers: X-API-Key: ${CALENDAR_API_KEY}

Create Event

POST /api/calendars/{calendarId}/events
Headers: 
  X-API-Key: ${CALENDAR_API_KEY}
  Content-Type: application/json
Body: {
  "title": "Event Title",
  "startDate": "YYYY-MM-DD",
  "endDate": "YYYY-MM-DD",
  "startTime": "HH:mm (optional)",
  "endTime": "HH:mm (optional)",
  "isAllDay": true,
  "description": "optional",
  "location": "optional",
  "alarmEnabled": true,
  "alarmMinutes": 15
}

List Events

GET /api/events
Headers: X-API-Key: ${CALENDAR_API_KEY}

Update Event

PUT /api/calendars/{calendarId}/events/{eventId}
Headers: X-API-Key: ${CALENDAR_API_KEY}

Delete Event

DELETE /api/calendars/{calendarId}/events/{eventId}
Headers: X-API-Key: ${CALENDAR_API_KEY}

Response Format

Success: { "success": true, event/calendars/events: {...} }

Error: { "success": false, error: { code, message } }

Parsing Examples

  • "明天上午10点会议" → tomorrow, 10:00
  • "下周三生日派对" → next Wednesday
  • "今天下午3-4点面试" → today, 15:00-16:00

Defaults: isAllDay=true if no time, alarmMinutes=15, endDate=same as startDate

版本历史

共 1 个版本

  • v1.3.1 当前
    2026-05-08 01:22 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

life-service

Sonoscli

steipete
控制Sonos音箱(发现/状态/播放/音量/分组)
★ 55 📥 84,945
ai-agent

Claw Calendar Skill

5twang
智能日历助手:通过REST API 与 Claw Calendar (claw-calendar.com) 交互,管理日历和事件。凭证从环境变量读取,支持创建日历、添加事件、查询日程。
★ 0 📥 367
life-service

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 452 📥 227,455