AIToday
Large Language ModelsAI Safety & AlignmentOpen-Source AIHacker NewsPublished: Aug 9, 2026, 16:01 JST5 min read

iFixAI open-source tool grades AI agents on business impact in 120 seconds

iFixAI open-source tool grades AI agents on business impact in 120 seconds

Key takeaway

  • iFixAI is an open-source auditing tool that grades AI agents on business impact and operational safety in under two minutes, using independent judges to evaluate 45 diagnostic tests across five core pillars: Fabrication, Manipulation, Deception, Miscalibration, and Drift.

  • Unlike existing tools that measure only technical capability, iFixAI answers whether an agent is actually doing the job it is supposed to do based on business KPIs and organizational structure, delivering a citable A–F grade and a scored pillar breakdown.

  • The tool runs via CLI, agent plugin (Claude Code, Codex, Cursor, VS Code, and others), or skill command, with configurable judge setups ranging from ~$10–18 per full run depending on whether one or two independent vendors grade the agent.

3 Key Points

  1. What happened

    iFixAI, an open-source third-party auditing platform, launched to test AI agents against 45 inspections organized into five core pillars—Fabrication, Manipulation, Deception, Miscalibration, and Drift—and issue an A–F grade within 120 seconds. The tool runs via CLI, plugin (Claude Code, Codex), or agent skill, with setup options ranging from a guided wizard to explicit command-line flags; judges can be the agent itself (self-eval), a single independent vendor, or a multi-judge ensemble.

  2. Why it matters

    Existing evaluation tools measure only technical capability (token efficiency, latency, prompt injection resistance) but cannot answer whether an agent is actually doing the job it should based on business KPIs and organizational structure. iFixAI fills that gap by auditing agents against real-world operational and business criteria, giving developers and teams a citable grade from an independent judge and a actionable scorecard—critical for deploying agents where business outcomes, not just technical metrics, determine success.

  3. What to watch

    Cost estimates for recommended judge setups: single-judge runs (Claude Sonnet) cost roughly $12–18 per full suite; two-judge setups (Gemini 2.5 Pro + GPT-5.4-mini) cost ~$10–14 combined. The tool supports any provider (OpenAI, Anthropic, Gemini, OpenRouter, Azure, Bedrock, Hugging Face), HTTP endpoints, and LangChain adapters; full suite runs generate ~2,000 judge calls across the 45-test count, so costs scale predictably. Installation is pip-based (e.g., `pip install "ifixai[openai]"`) and configuration saves to ifixai.yaml, excluded from version control by default.

In Depth

Read the full story

iFixAI is a third-party auditing platform shipped as open source that evaluates AI agents by running 45 diagnostic inspections and delivering a letter grade with a five-pillar scorecard. The tool organizes those 45 tests into five core pillars—Fabrication (unsourced claims, missing audit trails, tool misuse), Manipulation (privilege escalation, policy violation, prompt injection, poisoned retrieval), Deception (sandbagging, secret side-stepping), Miscalibration (overconfidence, wrong confidence calibration), and Drift (behavior drift from intent or training)—plus eleven premium categories. A single run completes in under 120 seconds and outputs JSON and Markdown reports plus a rich terminal scorecard.

iFixAI runs three ways with the same underlying diagnostic. The guided CLI wizard (recommended for first-time users) prompts the operator to pick the provider (OpenAI, Anthropic, Gemini, OpenRouter, etc.), model, judge, and test suite via arrow keys, then saves the configuration to ifixai.yaml, so subsequent runs need no flags. The explicit-flag CLI mode is fully scriptable for CI and automation: `ifixai run --provider anthropic --api-key "$ANTHROPIC_API_KEY" --fixture ./my-fixture.yaml`. The agent skill (one-time setup via `uvx ifixai install --agents cursor`) scaffolds a native `/ifixai-skill` command into any of seven IDEs—Claude Code, Codex, Cursor, VS Code, Windsurf, Cline, Continue, Gemini, Zed, and Continue—so the agent discovers its own config, names the cost before any billing, and walks the operator through the scorecard interactively.

The test suite can be set to smoke (3 tests, pipeline check only), strategic (8 tests, quick high-risk read), core (32 tests, the graded five-pillar scorecard), extended (13 tests, frontier risk outside the grade), or all (45 tests, the default). For a bare model (the simplest case), a single-judge grade with Claude Sonnet costs roughly $12–18 per full suite. A two-judge ensemble—Gemini 2.5 Pro and GPT-5.4-mini on OpenRouter—costs ~$10–14 combined and is more affordable than Sonnet alone while adding cross-vendor robustness; ties break conservatively (fail > partial > pass, so no one vendor decides the grade). A citable grade requires two API keys from different providers: the system under test's key (passed explicitly via `--api-key`) and the judge's key (auto-paired from the environment). The SUT never grades itself; if only one key is available, the run executes but is flagged `--eval-mode self` (smoke-test only, non-citable). Full mode with a multi-judge ensemble requires a hand-built fixture in YAML; the CLI defaults to the bundled default fixture, which ships with seeded defects so users can see what failures look like.

iFixAI treats the agent as a black box reached through a thin adapter. For agents serving an OpenAI-compatible HTTP endpoint, `--provider http --endpoint <agent-url> --grounding sut` measures the governance the agent already enforces (system prompt, tools, retrieval, guardrails included). For agents elsewhere, implementing one method—`ChatProvider.send_message`—and optional capability hooks (list_tools, get_audit_trail, authorize_tool, retrieve_sources) allows iFixAI to score more inspections; incomplete adapters result in `insufficient_evidence` marks (reported but not counted for or against the grade). The tool supports OpenAI, Anthropic, Gemini, OpenRouter, Azure, Bedrock, Hugging Face, HTTP, and LangChain adapters; installation is `pip install "ifixai[openai]"` or the matching provider extra. Configuration is stored in ifixai.yaml (git-ignored by default) with the API key as an environment-variable name, never the secret itself.

Context & Analysis

iFixAI addresses a critical gap in AI agent evaluation: existing tools (eval frameworks, red-teaming platforms, observability tools) focus almost entirely on technical metrics—token efficiency, latency, adversarial robustness to prompt injection—but ignore the business question that matters most to an organization: is the agent actually doing the job it is supposed to do? The tool's five core pillars—Fabrication, Manipulation, Deception, Miscalibration, and Drift—map directly to operational and business risks: agents that make unsourced claims, violate their own policies, or sandbag during testing can damage trust and outcomes. By running the same diagnostic underneath three user interfaces (CLI wizard for onboarding, CLI flags for CI automation, and agent skill for guided runs inside existing IDEs), iFixAI removes friction from the adoption path; developers can start with a guided setup and graduate to scriptable batches. The independence of the judge is deliberately designed into the workflow: a citable grade requires two API keys from different vendors (the SUT's provider and the judge's), preventing an agent from grading itself and ensuring cross-vendor robustness.

FAQ

How quickly does iFixAI audit an agent?
iFixAI completes a full audit in less than 120 seconds, executing 32 inspections across the five core pillars and delivering an A–F grade with a scored pillar scorecard.
What judge setups are recommended?
Two reliable setups: single judge with Claude Sonnet (estimated cost ~$12–18 per full suite), or two judges with Gemini 2.5 Pro and GPT-5.4-mini (estimated cost ~$10–14 combined). Both run roughly 2,000 judge calls per full suite.
Which agents and IDEs are supported?
The plugin runs on Claude Code, Codex, VS Code, Cursor, Windsurf, Cline, Continue, Gemini, and Zed. The skill scaffolds into any of those agents via a single `uvx` command.

Get the latest Large Language Models news every morning

AI-summarized, only the topics you pick — one digest a day via Email, Slack, or Discord.

Free · takes 30 seconds · unsubscribe anytime

Ask AI

Ask AI anything about this article. Q&As are published on this page for other readers too.

Related Articles

Next articleOracle partners with Google to embed Gemini AI into enterprise apps

The AI news that matters, in one minute each morning.

Sign up free