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

Self-Hosted GitHub Bot Runs Claude Code with 40+ Webhook Triggers and MCP Tools
A self-hosted GitHub bot leverages Claude Agent SDK with full Claude Code features, supporting 40+ webhook triggers, 4 built-in MCP servers, and custom YAML-based workflows for PR review, CI auto-fix, and issue triage.
DuckDB’s Quack Protocol Enables Client-Server with Multiple Concurrent Writers
DuckDB introduces the Quack remote protocol, allowing two DuckDB instances to communicate as client and server, supporting concurrent writers and leveraging HTTP for transport.

OpenClaw Video Translator Skill Available on ClawHub
A new Video Translator skill for OpenClaw agents allows users to upload a video or provide a URL to get a translated preview instantly. The skill is hosted on ClawHub.

ReasonDB: Open-Source Document Database Using LLM-Guided Tree Navigation Instead of Vector Search
ReasonDB is an open-source document database that preserves document structure as a hierarchy and uses LLM-guided tree traversal for retrieval instead of vector search. It uses BM25 for initial search, tree-grep for structure filtering, and beam-search traversal where the LLM visits ~25 nodes out of millions.