context-manager

context-manager is a cursor rule for Cursor from kok-o/koko-contextos-agents. It costs 6 tokens per session (656 once invoked), scanned A, original, MIT.

A set of rules for deciding which project information an AI coding agent should load for a task. It uses a project dependency map and task type to assemble a focused context package.

In plain words
What is it for?
Use it to identify relevant documentation, dependencies, likely files, and optional or skipped documents for frontend, backend, architecture, bug-fix, refactoring, deployment, or review work.
Why use it?
It reduces irrelevant background information and helps the agent avoid exceeding its available working context.

Cursor rule for Cursor

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 rules/kok-o/koko-contextos-agents/context-manager
Clone the repo
git clone --depth 1 https://github.com/kok-o/koko-contextos-agents

Made for: Cursor.

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 context-manager

README.md
[![agentmods](https://agentmods.dev/badge/rules/kok-o/koko-contextos-agents/context-manager.svg)](https://agentmods.dev/rules/kok-o/koko-contextos-agents/context-manager)
Your own site
<a href="https://agentmods.dev/rules/kok-o/koko-contextos-agents/context-manager"><img src="https://agentmods.dev/badge/rules/kok-o/koko-contextos-agents/context-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 656 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.00006 $0.00656
Opus 5 $0.00003 $0.00328
Sonnet 5 $0.00001 $0.00131
Haiku 4.5 $0.00001 $0.00066

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

Security

Grade A, and why

context-manager 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.

.cursor/rules/context-manager.mdc · 128 lines

How it starts

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

Skill: context-manager

context-manager

Overview

A brief summary of what the skill does and its core philosophy.

When to Use

Context for when this skill is applicable.

Rules & Patterns

You are the Context Manager. Your job is to prevent context overload.

How It Works

When given a task:

Step 1: Classify the task

task:
  type: [frontend | backend | fullstack | architecture | bugfix | refactor | deploy | review]
  scope: [module | feature | file | project-wide]
  module: {{module_name from Project Graph}}

Step 2: Consult the Project Graph

If docs/PROJECT_GRAPH.md exists:

  1. Find the module this task belongs to
  2. Get the module's dependencies
  3. Get the module's required skills
  4. Get the files this task will likely touch

Step 3: Apply Context Rules

Load references/context-rules.md and apply the task type → document mapping.

Step 4: Return Context Package

Output a context package:

context:
  documents:
    required:
      - docs/API.md          # sections: [appointments]
      - docs/ARCHITECTURE.md # sections: [backend, api-layer]
    optional:
      - docs/decisions/0003-postgres.md
    skipped:
      - docs/UI.md           # reason: backend task
      - docs/DATABASE.md     # reason: no schema change
  
  skills:
    loaded: [typescript, node, postgres, testing]
    skipped: [react, tailwind]  # reason: backend task
  
  project_graph:
    module: appointments
    dependencies: [auth, patients]
    affected_files:
      - src/modules/appointments/api/**
      - src/modules/appointments/services/**

Step 5: Validate Budget

Check total token count. If over budget (see context-rules.md):

  1. Trim Level 1 docs to summaries
  2. Load only affected sections of Level 2 docs
  3. Keep Level 3 (skills) at full detail

Context Caching

After first compilation for a module, cache the result:

.cache/
  frontend.context.yaml
  backend.context.yaml
  appointments.context.yaml

Invalidate cache when:

Read the full file on GitHub · 128 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 · 128 lines · 6 tokens per session scan A 3c510b24915f

Subscribe to this mod's changes

context-manager is a cursor rule published in the GitHub repository kok-o/koko-contextos-agents (2 stars, last pushed 4d ago), licensed MIT. It adds 6 tokens to every session and 656 once invoked, about $0.0000 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.