daily-planner

daily-planner is a skill for Claude Code from jlaska/obsidian-claude-plugins. It costs 30 tokens per session (1,712 once invoked), scanned A, original, MIT.

A daily planning workflow that turns Google Calendar events into an Obsidian daily note and meeting notes.

In plain words
What is it for?
Use it at the start of the day to create planning notes, link meetings, match attendees to People notes, and prepare for discussions.
Why use it?
It brings calendar details, meeting links, documents, attendees, and preparation information into one place.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the obsidian-productivity plugin — 10 skills shipped together

Good fit Use it at the start of the day to create planning notes, link meetings, match attendees to People notes, and prepare for discussions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jlaska/obsidian-claude-plugins/daily-planner
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.

Any agent
npx skills add jlaska/obsidian-claude-plugins --skill daily-planner
Clone the repo
git clone --depth 1 https://github.com/jlaska/obsidian-claude-plugins

Made for: Claude Code.

Or install obsidian-productivity, the plugin that ships this one along with the rest of its 10 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for daily-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/jlaska/obsidian-claude-plugins/daily-planner/github.svg)](https://agentmods.dev/skills/jlaska/obsidian-claude-plugins/daily-planner)
Your own site
<a href="https://agentmods.dev/skills/jlaska/obsidian-claude-plugins/daily-planner"><img src="https://agentmods.dev/badge/skills/jlaska/obsidian-claude-plugins/daily-planner/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for daily-planner

Your own site · 80×15
<a href="https://agentmods.dev/skills/jlaska/obsidian-claude-plugins/daily-planner"><img src="https://agentmods.dev/badge/skills/jlaska/obsidian-claude-plugins/daily-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,712 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00030 $0.01712
Opus 5 $0.00015 $0.00856
Sonnet 5 $0.00006 $0.00342
Haiku 4.5 $0.00003 $0.00171

Measured 9d ago against content hash 92e5af1ebbca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

daily-planner scanned grade A with 0 findings 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 9d ago.

The scan reads SKILL.md. This mod also ships 8 executable files (discover_events.py, discover_self.py, discover_vault.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/daily-planner/SKILL.md · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Daily Planner

Automates daily planning by fetching Google Calendar events and creating/updating Obsidian notes.

When to Use

Invoke /daily-planner at the start of your day to:

  • Create today's daily note (if it doesn't exist)
  • Create meeting note files for actual meetings (auto-filtered)
  • Enrich meeting files with Google Meet links, descriptions, and document attachments
  • Match calendar attendees to People notes
  • Link all meetings from the daily note
  • Generate a Meeting Preparation section with previous meeting summaries and suggested topics

Workflow

1. Discover Vault and User Identity

Run the discovery scripts to get vault configuration and user identity. All subsequent steps use these values.

SKILL_BASE="<skill_base_dir>"
CACHE_DIR="$HOME/.cache/obsidian-claude-plugins"
mkdir -p "$CACHE_DIR"

VAULT_CONFIG=$("$SKILL_BASE/discover_vault.py" 2>/dev/null || python3 "$SKILL_BASE/discover_vault.py")
VAULT_ROOT=$(echo "$VAULT_CONFIG" | python3 -c "import json,sys; print(json.load(sys.stdin)['vault_root'])")

SELF_JSON=$("$SKILL_BASE/discover_self.py" 2>/dev/null || python3 "$SKILL_BASE/discover_self.py")
echo "$SELF_JSON" > "$CACHE_DIR/self.json"

Replace <skill_base_dir> with the base directory shown at the top of this skill's context.

2. Fetch Calendar Events

Discover all gog-authenticated Google accounts, fetch today's events from each, merge and filter them.

python3 "$SKILL_BASE/discover_events.py" \
  --self-json "$CACHE_DIR/self.json" \
  --cache-dir "$CACHE_DIR" \
  > "$CACHE_DIR/events.json"

By default only the primary calendar of each account is queried (not shared or coworker calendars). To include additional calendars, use --calendars "cal-id-1,cal-id-2". To fetch all visible calendars (old behavior), use --all-calendars.

Check for warnings in stderr. If a gog account has an expired token, the script prints a re-auth command and continues with remaining accounts.

3. Sync to Vault

Create or update meeting files and the daily note's # Meetings table from the fetched events.

Read the full file on GitHub · 156 lines

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. 9d ago First seen · 156 lines · 30 tokens per session scan A 92e5af1ebbca

Subscribe to this mod's changes

daily-planner is a skill published in the GitHub repository jlaska/obsidian-claude-plugins (2 stars, last pushed 8d ago), licensed MIT. It adds 30 tokens to every session and 1,712 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.