Minimize Cursor Cost banner
inboxpraveen inboxpraveen

Minimize Cursor Cost

AI community

Description

Drop-in AI rules for Cursor and Claude Code that cut project token usage by 50%+.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Minimize-Cursor-Cost

Drop-in AI rules for Cursor, Claude Code, Codex, Copilot, Windsurf, and any other agent that reads `AGENTS.md` — designed to reduce token usage without reducing accepted-change quality.

No fluff in your AI's responses. No tutorials when you asked for a fix. No full-file rewrites when a 5-line patch will do. No re-reading the same file six times in a single chat.

[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) ![Languages: 14+](https://img.shields.io/badge/languages-14%2B-brightgreen) ![Frameworks: 10+](https://img.shields.io/badge/frameworks-10%2B-brightgreen) ![Setup time: 60s](https://img.shields.io/badge/setup-60s-orange)

Logo

TL;DR

# macOS / Linux / WSL
curl -fsSL https://raw.githubusercontent.com/inboxpraveen/Minimize-Cursor-Cost/main/install.sh | bash
# Windows
irm https://raw.githubusercontent.com/inboxpraveen/Minimize-Cursor-Cost/main/install.ps1 | iex

The default installs only Cursor's two core rules plus prompt templates. Choose tool and stack adapters explicitly when you need more — `--tool agents` for the cross-tool `AGENTS.md`, `--tool claude` for Claude Code.


What's included

lean-cursor/
├── AGENTS.md                           # Cross-tool standard — Cursor, Codex, Copilot, Windsurf, Zed…
├── CLAUDE.md                           # Auto-loaded by Claude Code on session start
├── .cursorrules                        # Cursor — legacy fallback rules
├── .claude/
│   └── rules/                          # Same scoped rules, Claude Code `paths:` format
│       └── *.md                        # Generated from .cursor/rules/*.mdc
├── .cursor/
│   └── rules/
│       ├── core.mdc                    # 🔥 Always-active response discipline
│       ├── agent-efficiency.mdc        # 🔥 Always-active tool-call discipline
│       │
│       ├── python.mdc                  # *.py
│       ├── types