Agint: A Rust CLI tool that detects contradictions in AI agent instruction files

What Agint does
Agint addresses a specific problem developers encounter when managing multiple AI agent instruction files: silent contradictions between different configuration documents. The tool was created after the author experienced inconsistent behavior from "coding minions" due to conflicting instructions across files.
How it works
The tool scans all your instruction files including:
- CLAUDE.md
- AGENTS.md
- .cursorrules
- Other documentation files
It identifies three types of issues:
- Contradictions between files
- References to files that no longer exist
- Files that have drifted out of sync
The system uses a two-layer approach:
- Static analysis handles structural problems
- Optional Claude API calls (or other LLMs) catch semantic contradictions that regex patterns would miss
The author noted that Claude worked particularly well for this project in two areas: prompt-engineering for the specific use case and serving as the analysis layer.
Installation and usage
Install via Cargo:
cargo install agintBasic commands:
agint config
agint checkThe tool is available on GitHub at https://github.com/itsdandanlai/agint.
Context
This type of tool becomes increasingly valuable as developers use more AI coding agents across multiple projects. Instruction files like CLAUDE.md and AGENTS.md typically contain project-specific guidelines, coding standards, and behavioral constraints for AI assistants. When these files contradict each other, it can lead to unpredictable agent behavior and debugging challenges.
📖 Read the full source: r/ClaudeAI
👀 See Also

Calmkeep: An External Continuity Layer to Counter LLM Drift in Extended Sessions
Calmkeep is an external continuity layer designed to counteract LLM drift in extended sessions, showing 85% integrity vs 60% for standard Claude in a 25-turn backend build test and 100% vs 50% in a legal session.

OmniCoder-9B fine-tune shows strong performance for agentic coding on 8GB VRAM systems
A Reddit user tested OmniCoder-9B, a fine-tune of Qwen3.5-9B on Opus traces, with OpenCode and reported 40+ tokens per second speeds using Q4_K_M GGUF quantization at 100k context length on an 8GB VRAM system.

Two Free Claude Code Skills: Tutorial Generator and Prompt Fixer
Two new free Claude Code skills: create-tutorial generates code reading tutorials from your actual project files, and prompter rewrites typo-filled prompts into actionable instructions. Both are MIT licensed and install via GitHub.

Claude Counter: Android app tracks Claude usage limits with real-time notifications
A developer built Claude Counter, a free Android app that polls Claude's API to display live session and weekly usage limits. The app shows progress bars, provides rich notifications with percentage remaining, and alerts when limits reset.