view

A read-only calendar viewer for a chosen date or date range. It translates phrases such as “next Tuesday” into dates and lists the events scheduled then.

In plain words
What is it for?
Use it to view meetings and other events for a date, a range of dates, or—when no date is given—today.
Why use it?
It helps you inspect a specific day's schedule without creating, editing, or deleting calendar events.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ondrasek/cc-plugins/view
Any agent
npx skills add ondrasek/cc-plugins --skill view
Clone the repo
git clone --depth 1 https://github.com/ondrasek/cc-plugins

Made for: Claude Code, Codex.

Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 612 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00061 $0.00612
Opus 5 $0.00030 $0.00306
Sonnet 5 $0.00012 $0.00122
Haiku 4.5 $0.00006 $0.00061

Measured yesterday against content hash 93e1d981a136, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

view scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer $TOKEN" \
plugins/calendar-access/skills/view/SKILL.md · 70 lines

What it actually says

View Calendar

Critical Rules

  • Read cross-cutting behaviors first: skills/shared/references/cross-cutting.md
  • Read-only — never create, modify, or delete events
  • Parse natural language dates — "next Tuesday", "March 5", "this Friday" must be resolved to actual dates

Context Files

Read these files before starting:

  • skills/shared/references/cross-cutting.md — provider detection, output format, error handling
  • skills/shared/references/providers.md — CLI commands and response parsing

Workflow

1. Parse Date Range

Determine the date range from the user's request:

  • Single date: "March 5" → start=2026-03-05, end=2026-03-06
  • Date range: "March 5 to March 10" → start=2026-03-05, end=2026-03-11
  • Relative: "next Tuesday" → calculate from today's date
  • No date specified: default to today

Use date command for date arithmetic:

# Today
date +%Y-%m-%d

# Tomorrow
date -v+1d +%Y-%m-%d  # macOS
date -d '+1 day' +%Y-%m-%d  # Linux

# Next Tuesday (macOS)
date -v+tue +%Y-%m-%d

2. Detect Providers

Follow provider detection from cross-cutting.md. Stop if no provider is available.

3. Fetch Events

Google Calendar:

gcalcli agenda "START_DATE" "END_DATE" --tsv --details location --nocolor

Microsoft 365:

TOKEN=$(az account get-access-token --resource https://graph.microsoft.com --query accessToken -o tsv)
curl -s -H "Authorization: Bearer $TOKEN" \
  "https://graph.microsoft.com/v1.0/me/calendarView?startDateTime=START_ISOZ&endDateTime=END_ISOZ&\$orderby=start/dateTime&\$select=subject,start,end,location,isAllDay"

4. Format Output

Use the markdown table format from cross-cutting.md. Group events by day if the range spans multiple days.

If both providers are configured, merge results chronologically.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 70 lines · 61 tokens per session scan A 93e1d981a136

Subscribe to this mod's changes

view is a skill published in the GitHub repository ondrasek/cc-plugins (2 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 61 tokens to every session and 612 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

planning-with-files-ar

تخطيط مستمر قائم على الملفات لعمل وكلاء الذكاء الاصطناعي متعدد الخطوات. يحتفظ بملفات taskplan.md و findings.md و progress.md على القرص، وتحقن خطافات دورة الحياة سياق التخطيط المحدد للمشروع. تقرأ الاستعادة التلقائية ملفات تخطيط المشروع فقط. يمكن للأمر الصريح session-catchup.py --metadata فحص بيانات وصفية لجلسات الوكيل…

OthmanAdi/planning-with-files · 189 tokens

kl-consistency-test

Write, calibrate, and debug the prefill-vs-decode logprob (KL) consistency tests in sglang -- the two independent conditions a zero requires (every operator batch-invariant, and the two paths computing the same function), which helper separates them, how to pick a threshold once they hold, and how to localize a…

sgl-project/sglang · 108 tokens

i18n-localization

Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.

vudovn/ag-kit · 27 tokens

dsh-web-documentation

Use when adding or editing dsh-web README files, docs, AGENTS.md instructions, user-facing configuration text, or bilingual documentation pairs.

zhu1090093659/dsh-web · 34 tokens

baoyu-youtube-transcript

Downloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports multiple languages, translation, chapters, and speaker identification. Caches raw data for fast re-formatting. Use when user asks to "get YouTube transcript", "download subtitles", "get captions", "YouTube字幕", "YouTube封面"…

JimLiu/baoyu-skills · 107 tokens

indication-dossier

Build a source-backed biomedical indication dossier. Use when a research task asks for disease biology, target rationale, patient segmentation, biomarkers, trials, drugs, competitive landscape, or translational evidence.

companion-inc/feynman · 43 tokens