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

Vellium Adds Desktop Pets and CLI-Inspired Agents for Local LLMs
Vellium, an open-source crossplatform app for local LLMs, now supports desktop pets that float above windows and agents with MCP integration, terminal commands, and file editing.

Claude Code protocol file reduces repetitive questioning
A developer created a single .md file for ~/.claude/rules/ that infers task type and risk from the first message, eliminating Claude Code's typical three-question sequence before starting work.

Claude Code Verification Bottleneck and Browser Automation Plugin Solution
A developer reports that verification remains the slowest part of using Claude Code, requiring manual testing of features. They found a browser automation plugin that lets the agent verify real product flows before marking tasks complete.

Local Book Translation Pipeline Uses Qwen 32B and Mistral 24B with Contextual RAG
A developer built a fully automated PDF-to-ePub book translation pipeline using eight Python scripts, Marker for PDF extraction, Qwen 32B for translation with a global glossary, and Mistral 24B for style editing.