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/gosha70/code-copilot-team/opus-4-7-featuresgit clone --depth 1 https://github.com/gosha70/code-copilot-teamWhat 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.00029 | $0.01576 |
| Opus 5 | $0.00015 | $0.00788 |
| Sonnet 5 | $0.00006 | $0.00315 |
| Haiku 4.5 | $0.00003 | $0.00158 |
Grade A, and why
opus-4-7-features 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.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Opus 4.7 Features & Optimization
Optional guidance for sessions using Claude Opus 4.7 (v2.1.111+). Load this rule when you want to leverage Opus 4.7-specific capabilities.
Adaptive Thinking (Breaking Change)
Opus 4.7 changes the API contract for extended thinking. The legacy form is rejected:
thinking: {type: "enabled", budget_tokens: N}→ returns 400 Bad Request on Opus 4.7.- Only
thinking: {type: "adaptive"}is accepted.
With adaptive thinking, the model dynamically decides when and how much to think based on query complexity. There is no fixed token budget — Claude self-regulates depth.
How to control depth:
- Use the
effortparameter (xhigh/high/medium/low) instead ofbudget_tokens. - Thinking is also promptable in-message:
- "Think carefully and step-by-step" → encourages deeper reasoning.
- "Prioritize responding quickly" → encourages a shorter thinking pass.
Older models: enabled/budget_tokens is deprecated on Opus 4.6 and Sonnet 4.6 (still functional today, but on the way out). Migrate to adaptive proactively so your code keeps working when the deprecation lands.
Effort Level: xhigh
Opus 4.7 introduces a new effort level xhigh between high and max. Other models fall back to high when xhigh is requested.
| Effort | When to use | Phase fit |
|---|---|---|
low |
Quick lookups, file searches, trivial edits | — |
medium |
Standard implementation, build tasks | Build |
high |
Architecture, planning, detailed review | Research, Plan, Review |
xhigh |
Complex multi-file reasoning, deep architectural analysis, hard debugging | Plan (large features), Review (cross-cutting PRs) |
Availability: xhigh became selectable in Claude Code v2.1.111+ when running Opus 4.7.
Default change: From Claude Code v2.1.117+, xhigh is the default effort level for Opus 4.7. On v2.1.111–v2.1.116 the default is still high and you must opt in with /effort xhigh. Other models continue to default to high regardless of Claude Code version.
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 · 142 lines · 29 tokens per session scan A d0dc537318a1
opus-4-7-features is a cursor rule published in the GitHub repository gosha70/code-copilot-team (6 stars, last pushed 2d ago), licensed MIT. It adds 29 tokens to every session and 1,576 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-31.
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.
cli-error-handling
CLI command error handling patterns.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.
family-instance-domain-actions
Family instance domain action implementation patterns.