daily-task-prep

daily-task-prep is a skill for Claude Code, Codex from timurgaleev/memex. It costs 33 tokens per session (430 once invoked), scanned A, original, MIT.

A morning work-preparation routine that combines today’s calendar, meeting background, unresolved items from yesterday, and high-priority tasks.

In plain words
What is it for?
Use it to prepare for each meeting, find unresolved discussion threads, and review the most urgent active tasks.
Why use it?
It gathers context before the day starts, so meeting preparation and outstanding work do not depend on searching through separate records manually.

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/timurgaleev/memex/daily-task-prep
Any agent
npx skills add timurgaleev/memex --skill daily-task-prep
Clone the repo
git clone --depth 1 https://github.com/timurgaleev/memex

Made for: Claude Code, Codex.

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-task-prep

README.md
[![agentmods](https://agentmods.dev/badge/skills/timurgaleev/memex/daily-task-prep.svg)](https://agentmods.dev/skills/timurgaleev/memex/daily-task-prep)
Your own site
<a href="https://agentmods.dev/skills/timurgaleev/memex/daily-task-prep"><img src="https://agentmods.dev/badge/skills/timurgaleev/memex/daily-task-prep.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00033 $0.00430
Opus 5 $0.00016 $0.00215
Sonnet 5 $0.00007 $0.00086
Haiku 4.5 $0.00003 $0.00043

Measured 4d ago against content hash 46f6ecd03b17, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

daily-task-prep 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 4d ago.

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.

deploy/skills/daily-task-prep/SKILL.md · 67 lines

What it actually says

Daily Task Prep

Contract

This skill guarantees:

  • Calendar/meetings for today are loaded with brain context per attendee
  • Open threads from yesterday are surfaced
  • Active tasks reviewed with priority ordering
  • Prep briefing is actionable (not just informational)

Phases

  1. Load calendar. Check today's meetings via the agent's own calendar tooling (if connected; otherwise ask the operator). For each: load attendee brain pages (page_get people/{name}), recent history (entity_timeline), open threads.
  2. Check yesterday's threads. Search the brain for yesterday's timeline entries (search / entity_timeline). Flag anything unresolved.
  3. Review active tasks. page_get tasks/tasks from the brain. Surface P0 and P1 items.
  4. Compile prep briefing. Per-meeting context cards + open threads + task priorities.

Output Format

Morning Prep — {date}
======================
Meetings today: {N}

## {Meeting 1 title} at {time}
Attendees: {names with brain context}
Context: {recent interactions, open threads}
Prep: {what to know before this meeting}

## Open Threads
- {thread from yesterday, with context}

## Tasks (P0-P1)
- {task with priority}

Anti-Patterns

  • Listing meetings without loading attendee context from the brain
  • Ignoring yesterday's unresolved threads
  • Presenting tasks without priority ordering
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. 4d ago First seen · 67 lines · 33 tokens per session scan A 46f6ecd03b17

Subscribe to this mod's changes

daily-task-prep is a skill published in the GitHub repository timurgaleev/memex (8 stars, last pushed 2d ago), licensed MIT. It adds 33 tokens to every session and 430 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.

Related

Other skills, from other repositories

design-mcp-server

Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.

cyanheads/obsidian-mcp-server · 62 tokens

api-context

Canonical reference for the unified Context object passed to every tool and resource handler in @cyanheads/mcp-ts-core. Covers the full interface, its RequestContext base, all sub-APIs (ctx.log, ctx.state, ctx.requestInput, ctx.inputs, ctx.enrich, ctx.content), and when to use each.

cyanheads/obsidian-mcp-server · 79 tokens

api-canvas

DataCanvas primitive reference — a Tier 3 SQL/analytical workspace for tabular MCP servers, backed by DuckDB. Use when registering tables from upstream APIs, running ad-hoc SQL across them, and exporting results. Covers the acquire → register → query → export flow, per-table TTL, the token-sharing pattern for…

cyanheads/obsidian-mcp-server · 85 tokens

api-testing

Testing patterns for MCP tool/resource handlers using createMockContext and Vitest. Covers mock context options, handler testing, McpError assertions, format testing, Vitest config setup, and test isolation conventions.

cyanheads/obsidian-mcp-server · 46 tokens

field-test

Exercise tools, resources, and prompts against a live HTTP server via MCP JSON-RPC over curl. Starts the server, surfaces the catalog, runs real and adversarial inputs, and produces a tight report with concrete findings and numbered follow-up options. Use after adding or modifying definitions, or when the user asks to…

cyanheads/obsidian-mcp-server · 76 tokens

api-config

Reference for core and server configuration in @cyanheads/mcp-ts-core. Covers env var tables with defaults, priority order, server-specific Zod schema pattern, and Workers lazy-parsing requirement.

cyanheads/obsidian-mcp-server · 43 tokens