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

Claude Code Session Dashboard: Open Source Tool for Monitoring Multiple Sessions
An open-source dashboard that monitors multiple Claude Code sessions simultaneously, showing token usage, costs, session status, context window usage, and active subagents. Installation requires three commands: git clone, cd, and npm install && npm start.

cq: A Local-First Knowledge Sharing System for AI Coding Agents
Mozilla.ai's cq is an open-source tool that lets AI coding agents share 'knowledge units' about common gotchas via a local SQLite store, with optional team sharing through a Docker API. It installs as a Claude Code plugin or OpenCode MCP server.

AI Agent Session Center: 3D Dashboard for Monitoring Claude Code Sessions
AI Agent Session Center is a real-time dashboard that visualizes Claude Code sessions as 3D robots in a cyberdrome, with animations showing agent status and features including live terminal views, approval alerts, and session resume. It installs via npx with lightweight bash hooks.

Artificial-life: A 300-line Python reproduction of Computational Life research
A Python implementation reproducing the Computational Life paper, where 240x135 grid of Brainfuck-like programs interact and evolve self-replicating code through random pairing and instruction tape concatenation.