rove: Skill for Claude Code

.agents/skills/pstack/skills/principle-guard-the-context-window/SKILL.md

principle-guard-the-context-window is a skill for Claude Code, Codex from Sma1lboy/rove. It costs 46 tokens per session (248 once invoked), scanned A, a copy of principle-guard-the-context-window, MIT.

A set of rules for managing an AI coding session's limited working memory, called the context window.

In plain words
What is it for?
Use it when a task involves large documents, many files, screenshots, or several parallel investigations. It keeps the main conversation focused by using summaries and separate workers for bulky material.
Why use it?
It helps prevent long files, large outputs, and repeated information from filling that memory and reducing the quality of later work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; installed under .agents/ (shared by several agents).

This is Sma1lboy/rove's own configuration. It tells Claude Code and Codex how to work on rove itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything rove configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Sma1lboy/rove. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Sma1lboy/rove/main/.agents/skills/pstack/skills/principle-guard-the-context-window/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Sma1lboy/rove

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 principle-guard-the-context-window

README.md
[![agentmods](https://agentmods.dev/badge/skills/sma1lboy/rove/principle-guard-the-context-window/github.svg)](https://agentmods.dev/skills/sma1lboy/rove/principle-guard-the-context-window)
Your own site
<a href="https://agentmods.dev/skills/sma1lboy/rove/principle-guard-the-context-window"><img src="https://agentmods.dev/badge/skills/sma1lboy/rove/principle-guard-the-context-window/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 principle-guard-the-context-window

Your own site · 80×15
<a href="https://agentmods.dev/skills/sma1lboy/rove/principle-guard-the-context-window"><img src="https://agentmods.dev/badge/skills/sma1lboy/rove/principle-guard-the-context-window.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 248 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 86% copy Near-identical to another mod 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.00046 $0.00248
Opus 5 $0.00023 $0.00124
Sonnet 5 $0.00009 $0.00050
Haiku 4.5 $0.00005 $0.00025

Measured 11d ago against content hash 0d4481c8e579, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

principle-guard-the-context-window 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 11d 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.

Origin

This is a copy

86% identical to principle-guard-the-context-window — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/pstack/skills/principle-guard-the-context-window/SKILL.md · 20 lines

What it actually says

Guard the Context Window

The context window is finite and non-renewable within a session. Every token that enters should earn its place.

Why: Context overflow degrades reasoning quality, creates compression artifacts, and halts progress. Unlike compute or time, context spent inside a session cannot be reclaimed.

Pattern:

  • Isolate large payloads. Route verbose outputs, screenshots, and large documents to subagents. The main context gets summaries, not raw data.
  • Don't read what you won't use. Read selectively based on relevance. If a file isn't needed for the current task, skip it.
  • Keep frequently used content inline. Templates and references used on every invocation belong in the skill file, not in separate files that cost a read each time.
  • Size phases and cap scope. Limit files per phase, set turn budgets, account for mechanism costs.
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. 11d ago First seen · 20 lines · 46 tokens per session scan A 0d4481c8e579

Subscribe to this mod's changes

principle-guard-the-context-window is a skill published in the GitHub repository Sma1lboy/rove (122 stars, last pushed today), licensed MIT. It adds 46 tokens to every session and 248 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to principle-guard-the-context-window, differing in 8 lines, and is treated as a copy.

Related

Other skills, from other repositories

memory-types-team-stores

Use when configuring shared team memory stores and knowledge graphs.

imMamdouhaboammar/get-fable · 16 tokens

memory-types

Use when managing persistent project memory, facts, and developer context.

imMamdouhaboammar/get-fable · 15 tokens

fable-handoff

Compact session decisions, durable evidence, open blockers, and exact next actions into structured continuation state for cross-session resumption. Use when pausing a coding session, transferring context to another agent, summarizing long-running work, or creating durable continuation checkpoints — even if the user…

imMamdouhaboammar/get-fable · 117 tokens

fable-memory

Manage persistent file-based memory, indexing cross-session user preferences, feedback, and architectural constraints in structured MEMORY.md stores. Use when recording user feedback, storing project conventions, recalling cross-session architectural constraints, or indexing durable project memory — even if the user…

imMamdouhaboammar/get-fable · 104 tokens

learner

Post-debugging knowledge extraction — captures non-obvious, codebase-specific learnings that pass quality gates. Invoke after resolving tricky bugs or discovering surprising behavior.

XeldarAlz/everything-claude-unity · 34 tokens

context-management

Strategies for managing AI agent context windows including optimization, summarization, retrieval-augmented generation, progressive disclosure, and pruning. Use when the user is hitting context limits, building long-running agents, implementing RAG, optimizing token usage, or designing systems that need to manage…

VersoXBT/claude-initial-setup · 66 tokens