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.
npx agentmods add rules/hoangp8/tokless/context-toolsgit clone --depth 1 https://github.com/HoangP8/toklessWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00582 | $0.00582 |
| Opus 5 | $0.00291 | $0.00291 |
| Sonnet 5 | $0.00116 | $0.00116 |
| Haiku 4.5 | $0.00058 | $0.00058 |
Grade A, and why
context-tools 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 yesterday.
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.
What it actually says
Context Tools (context-mode)
Sandbox-first tools. Derive answers. Keep raw bytes out, print only needed results.
Use ctx?
├─ YES → source >~200 lines/KB, multi-source, or worth re-querying → prioritize ctx tools
└─ NO → small file, single section, or verbatim-read for editing → Read directly
| Tool | Role | Replaces |
|---|---|---|
ctx_execute |
Run code in sandbox. Only stdout enters context. | Bash for analysis tasks |
ctx_execute_file |
Process file in sandbox. Raw bytes never leave. | Read on large files (>200 lines) |
ctx_batch_execute |
Run N commands + auto-index output. Search in same call. Concurrency 1-8. | Multiple Bash + grep |
ctx_index |
Chunk markdown/text into FTS5. Queryable via ctx_search. |
Manual grep over pasted content |
ctx_search |
Multi-strategy search across indexed content + session memory. Typo correction. | Re-asking user, re-deriving |
ctx_fetch_and_index |
Fetch URL → markdown → index. Cache 24h (override ttl). Batch with requests+concurrency. |
WebFetch + re-read |
Examples:
ctx_execute(language:"shell", code:"grep -rn 'TODO' src/ | head -20")
ctx_execute_file(path:"app.log", language:"javascript", code:`
const lines = FILE_CONTENT.split('\\n');
const errs = lines.filter(l => /ERROR|FATAL/.test(l));
console.log(errs.length + ' errors');
console.log(errs.slice(-5).join('\\n'));
`)
ctx_batch_execute(commands:[
{label:"diff", command:"git diff HEAD~1"},
{label:"status", command:"git status"},
{label:"tests", command:"npm test 2>&1 | tail -20"},
], queries:["failures","errors"])
ctx_fetch_and_index(requests:[
{url:"https://docs.example.com/api", source:"api-docs"},
{url:"https://docs.example.com/guide", source:"guide"},
], concurrency:4)
ctx_search(queries:["auth endpoint","rate limits"], source:"api-docs")
Shell stays for git, mkdir, rm, mv, installs, tests. Write/Edit for file changes; ctx subprocess writes aren't host edits.
Windows: pwsh -NoProfile -Command, absolute paths, X:\ maps to /x/, quote spaces.
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.
- yesterday First seen · 58 lines · 582 tokens per session scan A 713e1e8e5417
context-tools is a cursor rule published in the GitHub repository HoangP8/tokless (258 stars, last pushed yesterday), licensed MIT. It adds 582 tokens to every session, about $0.0029 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.
Other cursor rules, from other repositories
architecture-constraints
GolemBot architecture hard constraints — must check before modifying any src/ code.
cursor-memory
Shokunin memory system: persistent context across sessions.
skill-conventions
Project conventions for creating and editing Obsidian vault skills.
notes
The .cursor/notes folder contains notes about this project. The notes form a knowledge base about the project to be used by the AI Agents working on the project. They should help you when working with the same code again in the future.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.