codemirror

codemirror is a cursor rule for coding agents from sanjeed5/awesome-cursor-rules-mdc. It costs 2,599 tokens per session, scanned A, original, CC0-1.0.

A set of rules for building editors with CodeMirror 6, a modular library for editing code and text in web applications. It explains how to assemble the editor from extensions and import only the pieces needed.

In plain words
What is it for?
Use it when creating or maintaining a browser-based code editor with CodeMirror 6, including its state, view, language support, and extensions.
Why use it?
It prevents new code from relying on the older CodeMirror 5 interface and keeps editor configuration easier to change. Smaller, focused imports can also reduce unnecessary application code.

Cursor rule

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 rules/sanjeed5/awesome-cursor-rules-mdc/codemirror
Clone the repo
git clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdc

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 codemirror

README.md
[![agentmods](https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/codemirror.svg)](https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/codemirror)
Your own site
<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/codemirror"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/codemirror.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,599 This file is loaded in full into every session.
When invoked 2,599 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.02599 $0.02599
Opus 5 $0.01300 $0.01300
Sonnet 5 $0.00520 $0.00520
Haiku 4.5 $0.00260 $0.00260

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

Security

Grade A, and why

codemirror 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 4d 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.

rules-mdc/codemirror.mdc · 344 lines

How it starts

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

CodeMirror 6 Best Practices

This document outlines the definitive best practices for developing with CodeMirror. We exclusively target CodeMirror 6 (CM6). Any reference to CodeMirror 5 (CM5) is for historical context only; CM5 must not be used in new development and should be actively migrated away from.

Code Organization and Structure

1. Always Use CodeMirror 6

CM6 is a complete rewrite with a modern, modular architecture. It offers superior performance, extensibility, and maintainability. CM5 is deprecated and unsupported.

BAD: Using CodeMirror 5

// Old CM5 global API
var myCodeMirror = CodeMirror(document.body, {
  value: "function myScript(){}",
  mode: "javascript"
});

GOOD: Using CodeMirror 6

import { EditorState } from "@codemirror/state";
import { EditorView, basicSetup } from "codemirror";
import { javascript } from "@codemirror/lang-javascript";

const view = new EditorView({
  state: EditorState.create({
    doc: "console.log('Hello CM6!');",
    extensions: [basicSetup, javascript()],
  }),
  parent: document.body,
});

2. Import Only What You Need (Modular Imports)

CM6 is designed for tree-shaking. Only import the specific packages and modules required to minimize bundle size and improve load times.

BAD: Importing monolithic packages (if they existed for CM6)

// Hypothetical bad example: importing a giant 'codemirror-all' package
import { EditorView, EditorState, basicSetup, javascript, ... } from "codemirror-all";

GOOD: Granular, specific imports

import { EditorState } from "@codemirror/state"; // Core state management
import { EditorView, keymap } from "@codemirror/view"; // Core view rendering
import { defaultKeymap } from "@codemirror/commands"; // Standard editing commands
import { javascript } from "@codemirror/lang-javascript"; // Language support

3. Configure Exclusively via Extensions

All editor features, from basic setup to complex language services, must be added as extensions to the EditorState. Avoid direct DOM manipulation or non-extension-based configuration.

Read the full file on GitHub · 344 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. 4d ago First seen · 344 lines · 0 tokens per session scan A 55ab29430311

Subscribe to this mod's changes

codemirror is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,571 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 2,599 tokens to every session, about $0.0130 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.