用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill google-calendar命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Give your agent a standalone on-chain wallet for gasless trades, funding, and autonomous x402 M2M payments.
Deploy ERC20 tokens on Base, Ethereum, Arbitrum, and other EVM chains using the Clanker SDK. Use when the user wants to deploy a new token, create a memecoin, set up token vesting, configure airdrops, manage token rewards, claim LP fees, or update token metadata. Supports V4 deployment with vaults, airdrops, dev buys, custom market caps, vanity addresses, and multi-chain deployment.
AI-powered crypto trading agent and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances, view token prices, transfer crypto, manage NFTs, use leverage, bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, and Unichain.
基于 SOC 职业分类
正在显示 SKILL.md
| name | google-calendar |
| version | 1.0.0 |
| description | List, create, update, and delete Google Calendar events via the Calendar API v3. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["google","calendar","productivity","scheduling"] |
| env_needed | [{"name":"GOOGLE_ACCESS_TOKEN","description":"OAuth2 access token (use `gcloud auth print-access-token` or OAuth flow)","required":true},{"name":"CALENDAR_ID","description":"Calendar ID (default \"primary\" for your main calendar)","required":false}] |
| metadata | {"zeptoclaw":{"emoji":"📅","requires":{"anyBins":["curl","jq"]}}} |
Manage Google Calendar events — list upcoming, create, update, and delete events using the Calendar API v3.
# If you have gcloud CLI installed:
export GOOGLE_ACCESS_TOKEN=$(gcloud auth print-access-token)
# Or set manually from OAuth flow:
export GOOGLE_ACCESS_TOKEN="ya29.xxx..."
export CALENDAR_ID="primary"
curl -s "https://www.googleapis.com/calendar/v3/calendars/${CALENDAR_ID:-primary}/events?maxResults=10&orderBy=startTime&singleEvents=true&timeMin=$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
| jq '.items[] | {summary, start: .start.dateTime, end: .end.dateTime, id}'
curl -s -X POST "https://www.googleapis.com/calendar/v3/calendars/${CALENDAR_ID:-primary}/events" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"summary": "Team Standup",
"start": {"dateTime": "2026-03-01T09:00:00+08:00"},
"end": {"dateTime": "2026-03-01T09:30:00+08:00"},
"description": "Daily standup meeting",
"location": "Google Meet"
}' | jq '{id, summary, htmlLink}'
EVENT_ID="event-id-from-list"
curl -s -X PATCH "https://www.googleapis.com/calendar/v3/calendars/${CALENDAR_ID:-primary}/events/$EVENT_ID" \
-H "Authorization: Bearer " \
-H \
-d | jq
EVENT_ID="event-id-from-list"
curl -s -X DELETE "https://www.googleapis.com/calendar/v3/calendars/${CALENDAR_ID:-primary}/events/$EVENT_ID" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
-w "\nHTTP Status: %{http_code}\n"
CALENDAR_ID defaults to primary if not setsingleEvents=true to expand recurring events into individual instancesgcloud auth print-access-tokendate field instead of dateTime