version-management

A set of version-control rules for automatically checking, committing, and pushing completed code changes with Git, a tool for tracking project history. It specifies quality checks and conventional commit message formats.

In plain words
What is it for?
Use it after completing a feature, bug fix, or substantial change to run linting, tests, SonarCloud checks, create a typed commit, and push the current branch.
Why use it?
It creates a consistent handoff after features, fixes, or significant additions and records what changed in the project history.

Cursor rule for Codex

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/kaelsensei/magicaibuilder/version-management
Clone the repo
git clone --depth 1 https://github.com/KaelSensei/MagicAIBuilder

Made for: Codex.

Per session 709 This file is loaded in full into every session.
When invoked 709 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.00709 $0.00709
Opus 5 $0.00354 $0.00354
Sonnet 5 $0.00142 $0.00142
Haiku 4.5 $0.00071 $0.00071

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

Security

Grade A, and why

version-management 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/rules/version-management.mdc · 83 lines

How it starts

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

Version Management Rules

Automatically commit and push changes after completing any feature, bug fix, or significant addition.

Commit Workflow

CRITICAL: Do this automatically without asking for user confirmation.

After completing a task (feature, bug fix, or new addition), immediately and automatically execute:

  1. Quality gate (required):

    • Ensure lint + tests pass
    • Run pnpm sonar
    • Verify SonarCloud open issues are 0
  2. Stage all changes:

    git add -A
    
  3. Commit with descriptive message using conventional commits:

    git commit -m "type: brief description"
    
  4. Push to current branch:

    git push origin $(git branch --show-current)
    

Do NOT ask "Should I commit?" or "Do you want me to push?" - just do it automatically.

Commit Message Types

  • feat: - New feature or functionality
  • fix: - Bug fix
  • docs: - Documentation changes
  • refactor: - Code restructuring without changing functionality
  • test: - Adding or updating tests
  • chore: - Maintenance tasks, dependencies, config changes
  • perf: - Performance improvements
  • style: - Code style changes (formatting, no logic change)

Commit Message Format

type: brief description

- Detailed bullet point 1
- Detailed bullet point 2

Examples (MagicTheOfflining):

  • feat: add sideboard and considering tabs to deck detail
  • fix: show board (mainboard/sideboard/considering) in card search results
  • docs: update PLAY_STORE_DEPLOYMENT with keystore steps
  • test: add scraping integration tests for Moxfield decks

Rules

  • ALWAYS create a branch first for fixes and features: fix/description or feature/description — never work directly on main/master
  • ALWAYS commit automatically after completing a feature, fixing a bug, or adding something new - DO NOT ASK FOR PERMISSION
  • ALWAYS push immediately after committing (unless push fails due to permissions) - DO NOT ASK FOR PERMISSION
  • Never commit to main/master directly - always use feature branches
  • Use descriptive messages that explain what and why
  • Group related changes in a single commit when they're part of the same task
  • No confirmation prompts - the AI assistant must execute git commands automatically as part of completing any task

Read the full file on GitHub · 83 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 · 83 lines · 709 tokens per session scan A 6ef19d34696f

Subscribe to this mod's changes

version-management is a cursor rule published in the GitHub repository KaelSensei/MagicAIBuilder (2 stars, last pushed 3d ago), licensed MIT. It adds 709 tokens to every session, about $0.0035 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.