cursor-plugin-cc AGENTS.md

Repository instructions for a Claude Code plugin that sends coding tasks to the Cursor command-line agent.

In plain words
What is it for?
Use them when modifying the plugin's commands, runner, prompting skill, or JavaScript files.
Why use it?
They document the plugin's structure and strict rules, such as having no runtime dependencies or build step, so agents can make compatible changes.

Instructions file for CodexOpenCode

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 instructions/freema/cursor-plugin-cc/agents-md
Clone the repo
git clone --depth 1 https://github.com/freema/cursor-plugin-cc

Made for: Codex, OpenCode.

Per session 1,636 This file is loaded in full into every session.
When invoked 1,636 The same file — it is already loaded in full.
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.01636 $0.01636
Opus 5 $0.00818 $0.00818
Sonnet 5 $0.00327 $0.00327
Haiku 4.5 $0.00164 $0.00164

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

Security

Grade A, and why

cursor-plugin-cc AGENTS.md 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.

AGENTS.md · 61 lines

How it starts

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

AGENTS.md — rules for any AI agent editing this repo

This file is the contract any agent (Claude Code, Cursor, Codex, …) must follow before touching code in cursor-plugin-cc. If you are human, read it too.

What this repo is

A Claude Code plugin that delegates coding tasks from Claude to the Cursor CLI (cursor-agent). Eleven slash commands under the cursor: namespace, a cursor-runner subagent, and a composer-prompting skill. Source of truth lives under plugins/cursor/.

Hard rules

  1. Zero runtime dependencies. The plugin ships as plain ESM .mjs and must execute directly after /plugin install with zero npm install in the user's plugin cache. If you are about to add execa, zod, nanoid, a HTTP client, a command parser, or any other third-party runtime package — stop. Write a small inline helper instead. See plugins/cursor/scripts/lib/run.mjs as the reference pattern (it replaced execa in ~80 lines).
  2. No build step. No TypeScript source, no bundler, no dist/. scripts/*.mjs IS the ship artefact. If you find yourself wanting one, something has gone wrong with the approach. (npm run typecheck runs tsc --checkJs --noEmit over the JSDoc annotations in scripts/lib/ — that is a dev-time check like eslint, not a build step; typescript stays a devDependency.)
  3. Slash command scripts live under plugins/cursor/scripts/<cmd>.mjs. Their wrappers at plugins/cursor/commands/<cmd>.md must use node "${CLAUDE_PLUGIN_ROOT}/scripts/<cmd>.mjs" -- "$ARGUMENTS" with quoted $ARGUMENTS — unquoted breaks under zsh on any prompt containing ?, *, or @. Exception: review.md and adversarial-review.md are model-orchestrated (they estimate the diff and ask wait-vs-background before running), so they give Claude the node … command in a fenced block rather than an auto-executing ! line, and adversarial-review reuses review.mjs --adversarial instead of shipping its own script.
  4. Bash(node:*) is the only permission pattern used in allowed-tools. Do not invent path-based patterns — Claude Code does not expand ${CLAUDE_PLUGIN_ROOT} inside allowed-tools. Exception: the two estimate-first review commands additionally list Bash(git:*), AskUserQuestion, and Read, Glob, Grep for the size-estimate/ask step — those are tool-name patterns, not path-based ones, so they are fine.
  5. Jobs are persisted under <state-root>/jobs/<repo-hash>/. Never break that layout; users point scripts at those files when reporting bugs. The state root resolves in lib/paths.mjs#pluginHome: CURSOR_PLUGIN_CC_HOME env → an existing ~/.cursor-plugin-cc (legacy installs keep their history) → CLAUDE_PLUGIN_DATA/state (fresh installs) → ~/.cursor-plugin-cc.
  6. Language: everything in this repo is English. Code, comments, commit messages, docs, PR bodies, issue titles. The plugin does not impose a language policy on target repos — cursor-runner reads target-repo conventions — but this repo itself is English-only.
  7. Do not impose conventions on target repos. The cursor-runner subagent reads AGENTS.md / .cursor/rules / existing code in whatever repo the user is working in and tells Cursor to match THAT style. When editing the subagent, do not hardcode English / Prettier / whatever.

Read the full file on GitHub · 61 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. 2d ago First seen · 61 lines · 1,636 tokens per session scan A e69cab6f54b3

Subscribe to this mod's changes

cursor-plugin-cc AGENTS.md is an instructions file published in the GitHub repository freema/cursor-plugin-cc (34 stars, last pushed 22d ago), licensed MIT. It adds 1,636 tokens to every session, about $0.0082 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.

Related

Other instructions, from other repositories