用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ItamarZand88/claude-code-canvas-windows --skill calendar命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
**The primary skill for terminal TUI components.** Covers spawning, controlling, and interacting with terminal canvases. Use when displaying calendars, documents, or flight bookings.
Document canvas for displaying and editing markdown content. Use when showing documents or when users need to edit text.
Flight canvas for comparing flights and selecting seats. Use when users need to browse flight options and book seats.
基于 SOC 职业分类
正在显示 SKILL.md
| name | calendar |
| description | Calendar canvas for displaying events. Use when showing calendar views. |
Display calendar views with events.
Try asking Claude:
display (default)View-only calendar display.
bun run src/cli.ts show calendar --scenario display --config '{
"title": "My Week",
"events": [
{"id": "1", "title": "Meeting", "startTime": "2026-01-27T09:00:00", "endTime": "2026-01-27T10:00:00"}
]
}'
interface CalendarConfig {
title?: string;
events: CalendarEvent[];
}
interface CalendarEvent {
id: string;
title: string;
startTime: string; // ISO datetime
endTime: string; // ISO datetime
color?: string; // blue, green, red, yellow, magenta, cyan
}
←/→ - Navigate weeksn - Next weekp - Previous weekt: Jump to todayq or Esc: Quit