Developer shares solution for Claude AI ignoring rules beyond 50-count threshold

A developer using Claude Code, Cursor, and Codex with a shared rule set encountered a specific limitation: once their rule count passed approximately 50, Claude began silently ignoring rules during frontend-heavy tasks. The issue appeared to stem from too much irrelevant context overwhelming the system.
Three attempted solutions
The developer tried several approaches to address the problem:
- Manually toggling rules before each task — effective but too tedious for regular use
- Splitting rules into "always-on" and "optional" folders — still resulted in too many rules being loaded
- Building a custom hook that reads each prompt and selects only 2-3 relevant rules — this approach actually worked
The working solution: a smart rule loader
The hook operates by scanning user prompts and matching them against rule descriptions using keyword-based matching (no API required). It then swaps files between active and inactive folders before Claude processes them, ensuring only relevant rules enter the context window.
Examples of how the system works:
- "write a react component" → loads react.md and typescript.md
- "fix my commit message" → loads commit.md and git.md
- Essential rules like essential.md and security.md always remain active
The developer has open-sourced the complete setup on GitHub at https://github.com/JSK9999/ai-nexus for others to use or examine.
📖 Read the full source: r/ClaudeAI
👀 See Also

mindpm: A Free MCP Server for Persistent Project Memory with Claude
mindpm is a free, open-source MCP server that provides Claude with a local SQLite database to track tasks, decisions, notes, and session summaries across conversations. Setup takes 30 seconds with the command: claude mcp add mindpm -e MINDPM_DB_PATH=~/.mindpm/memory.db -- npx -y mindpm.

Jeeves: TUI for Browsing and Resuming AI Agent Sessions
Jeeves is a terminal user interface that lets you search, preview, and resume AI agent sessions from Claude Code, Codex, and OpenCode in a single view. It's written in Go and available via multiple package managers including Homebrew, Nix, and Go install.

Open-Source Job Search Framework Built in Claude Code
A developer created an open-source job search framework in Claude Code that handles structured self-profiling, automated job portal scraping, fit evaluation, and a drafter-reviewer agent pipeline for tailored applications. The system stops before submission and requires manual review.

yoyo: Local MCP Server for Grounded Codebase Reads and Guarded Writes with Claude Code
yoyo is an open-source local MCP server that provides coding agents like Claude Code with grounded repository reads and guarded writes across 16 languages, including Rust, Go, Python, and TypeScript. It prevents broken edits from silently landing by returning machine-readable guard_failure output and enabling retry_plan for targeted repairs.