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/indranildchandra/cursor-session-tracer/session_tracegit clone --depth 1 https://github.com/indranildchandra/cursor-session-tracerWhat 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.00016 | $0.00496 |
| Opus 5 | $0.00008 | $0.00248 |
| Sonnet 5 | $0.00003 | $0.00099 |
| Haiku 4.5 | $0.00002 | $0.00050 |
Grade A, and why
session_trace 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 2d 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.
What it actually says
Workflow
At the start of any task involving more than 2 files or any architectural change:
-
Call
start_tracewith the full task description and the list of files you expect to touch. Store the returnedsession_id— you will need it for every subsequent call. Also note the returnedtrace_file_pathso you can reference it later. If this work implements a decision recorded in an ADR (seedocs/adr/), pass its id asadr_id(e.g."ADR-0001") so the trace links back to the plan. -
Before each significant decision — reading a file to understand structure, choosing an implementation approach, modifying a file that other files depend on — call
append_trace. Thereasonfield must be specific. Not "modified stripe.py" but "routed StripeClient.charge through the resilient transport with order_id as the idempotency key, so a retried charge dedupes instead of double-charging." -
Pass the
step_idreturned from eachappend_tracecall asparent_step_idin the next call. This is what builds the reasoning chain. For the very firstappend_trace, pass""asparent_step_id. -
When the task is complete or you are stopping, call
end_tracewith:outcomeset tocompleted,partial, oraborted- Do NOT pass model, tokens_in, or tokens_out — these are captured automatically from Cursor's local database.
Do not call append_trace for trivial actions like reading a config file to check syntax. Call it when you are making a decision that affects other files or that a reviewer would want to understand three weeks from now.
Event type reference:
decision— choosing an approach or architecture. Most important type.reasonmust be specific.file_read— reading a file to understand structure before actingfile_modify— modifying an existing filefile_create— creating a new filefile_delete— deleting a filetool_call— invoking an external tool (terminal, search, etc.)checkpoint— explicit marker mid-session for long-running tasks
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.
- 2d ago First seen · 31 lines · 16 tokens per session scan A b59e9cf065c8
session_trace is a cursor rule published in the GitHub repository indranildchandra/cursor-session-tracer (11 stars, last pushed 1mo ago), licensed MIT. It adds 16 tokens to every session and 496 once invoked, about $0.0001 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
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.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.