week-plan

week-plan is a skill for Claude Code, Codex from agno-agi/context. It costs 70 tokens per session (787 once invoked), scanned A, original, Apache-2.0.

A workflow for researching a topic and filing the result in a knowledge base, while checking existing company information and current external sources first.

In plain words
What is it for?
Use it for a sourced brief on a specific question, drawing from the knowledge base, CRM, Slack when connected, and the web, then saving the finished brief with the knowledge-update tool.
Why use it?
It prevents duplicated research and separates information already known internally from facts found on the web. The result is stored for later use instead of being only a one-time answer.

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/agno-agi/context/week-plan
Any agent
npx skills add agno-agi/context --skill week-plan
Clone the repo
git clone --depth 1 https://github.com/agno-agi/context

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 week-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/agno-agi/context/week-plan.svg)](https://agentmods.dev/skills/agno-agi/context/week-plan)
Your own site
<a href="https://agentmods.dev/skills/agno-agi/context/week-plan"><img src="https://agentmods.dev/badge/skills/agno-agi/context/week-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 787 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.00070 $0.00787
Opus 5 $0.00035 $0.00394
Sonnet 5 $0.00014 $0.00157
Haiku 4.5 $0.00007 $0.00079

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

Security

Grade A, and why

week-plan 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.

skills/week-plan/SKILL.md · 59 lines

How it starts

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

Week Plan

Runtime skill — a playbook the deployed @context agent runs for its owner, invoked in natural language. Not a coding-agent workflow; those live in .agents/skills/.

Assemble a clear plan for the next 7 days from the structured crm store, enriched from the connected sources. This is a read-only retrieval workflow: it pulls, merges, and formats — it never writes anything.

Procedure

  1. Anchor on now. Use the current datetime already in your context. The window is nownow + 7 days.
  2. Pull the two time-bearing tables with query_crm (one retrieval — ask it for both):
    • Meetings whose starts_at falls between now and now + 7 days.
    • Reminders with status = 'pending' and due_at ≤ now + 7 days. Include anything already overdue (due_at < now, still pending) — a plan that hides what's late isn't useful.
  3. If the calendar source is connected, pull the real calendar tooquery_calendar for events in the same 7-day window — and merge with the CRM meetings (dedupe by title + start time; the calendar wins on times).
  4. Enrich from connected sources. When the slack source is connected, query_slack for recent threads that touch this week's meetings, attendees, or active projects — surface commitments and deadlines that never made it into the CRM as plan items, flagged (from slack). When a meeting or reminder ties to a project with a brief in the knowledge base, pull its status from query_knowledge so the plan reflects where things actually stand. Enrichment is bounded: it adds context to the week's items, it doesn't grow the window.
  5. Order meetings and reminders by their time column, ascending.

Format

  • Lead with an Overdue section only if past-due pending reminders exist; note how late each one is.
  • Then one heading per day (today through day 7), in date order. Under each day list its meetings (with start time) and any reminders due that day.
  • Skip days with nothing — don't pad the plan with empty dates.
  • Close with a one-line tally, e.g. 3 meetings, 5 reminders, 1 overdue.

Read the full file on GitHub · 59 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. 4d ago First seen · 59 lines · 70 tokens per session scan A dfde1f4e7598

Subscribe to this mod's changes

week-plan is a skill published in the GitHub repository agno-agi/context (11 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 70 tokens to every session and 787 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

verification

Prove that a coding task is actually complete. Use this after meaningful code changes, when tests/builds fail or are skipped, before marking a plan or goal complete, and whenever acceptance depends on runtime, security, recovery, performance, or cross-module evidence.

ageerle/ruoyi-ai · 54 tokens

repository-investigation

Investigate an unfamiliar repository before changing it. Use this whenever a coding task spans multiple modules, asks for architecture or root-cause analysis, names behavior whose implementation location is unknown, or risks editing before enough evidence is gathered.

ageerle/ruoyi-ai · 49 tokens

safe-refactoring

Execute behavior-preserving or intentionally scoped refactors safely. Use this for multi-file renames, component/service extraction, state-management changes, API migrations, concurrency refactors, or any request where unrelated user work and subtle contracts must be preserved.

ageerle/ruoyi-ai · 52 tokens

wegent-knowledge

Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.

wecode-ai/Wegent · 51 tokens

quantmind-dev

Contributor workflow for the QuantMind codebase. Covers contributor setup (environment + hooks), filing issues, commit format, pull request format, and component development across quantmind/ modules (etl, knowledge, configs, preprocess, rag, flows, mind, utils) with tests, examples, and verification. Use when setting…

LLMQuant/quant-mind · 90 tokens

knowledge_base

Manage the user's personal knowledge base — knowledge graph, documents, and wiki vault.

siddsachar/row-bot · 19 tokens