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/aiagentwithdhruv/ai-dev-stack/55-data-model-versioninggit clone --depth 1 https://github.com/aiagentwithdhruv/ai-dev-stackWhat 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.00000 | $0.00347 |
| Opus 5 | $0.00000 | $0.00173 |
| Sonnet 5 | $0.00000 | $0.00069 |
| Haiku 4.5 | $0.00000 | $0.00035 |
Grade A, and why
55-data-model-versioning 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
Dataset versioning:
- Every dataset must have a version identifier (filename suffix, metadata field, or manifest).
- When dataset format changes, provide a migration script from previous version.
- Keep a CHANGELOG or manifest documenting what changed between dataset versions.
- Never silently modify a dataset that is already used in production or published training runs.
Model checkpoint management:
- Save checkpoints with metadata: base model, dataset version, hyperparameters, timestamp, commit hash.
- Use consistent naming: {model}{technique}{dataset_version}_{step/epoch}.
- Store checkpoint metadata alongside weights (JSON sidecar or W&B artifact).
- Never overwrite a checkpoint — always create new versioned saves.
Training reproducibility:
- Pin all dependencies (requirements.txt with exact versions or lock file).
- Log full training config (LoRA rank, alpha, dropout, lr, batch size, epochs, seed).
- Set random seeds for reproducible runs.
- Record hardware info (GPU type, VRAM, CUDA version) in run metadata.
- Store the exact dataset hash or version used for each training run.
Evaluation tracking:
- Track eval metrics per checkpoint (loss, perplexity, task-specific scores).
- Compare against baseline before declaring improvement.
- Keep eval datasets versioned and separate from training data.
Do not:
- Train on modified data without updating the version.
- Delete or overwrite checkpoints from successful runs.
- Ship a model without documenting which dataset and config produced it.
- Mix training and evaluation data.
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 · 35 lines · 0 tokens per session scan A 9f8e433c3d12
55-data-model-versioning is a cursor rule published in the GitHub repository aiagentwithdhruv/ai-dev-stack (10 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 347 tokens. 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
cursorrules
You are building an AI/ML project with Python. The project uses PyTorch for model training, handles data pipelines with proper validation, tracks experiments systematically, and follows production ML engineering practices. Code is type-hinted, tested, and reproducible.
cursorrules
Code exhibits taste — Torvalds' term for finding the formulation where special cases disappear. Seek representations where edge cases become impossible, the type system proves correctness, and the API guides users into the pit of success.
java
Modern Java: records, sealed classes, streams, virtual threads.
javascript
Modern JavaScript: ES2023+, async patterns, common traps.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.
cross-tool-config
Cross-tool AI config: what transfers between Cursor, Claude Code, Copilot, Windsurf, Gemini, and Codex.