dart-build-resolver

dart-build-resolver is an agent for Claude Code from Fmarzochi/EGC. It costs 53 tokens per session (1,591 once invoked), scanned A, a copy of dart-build-resolver, Apache-2.0.

A Dart and Flutter build-error specialist for diagnosing analyzer errors, compilation failures, dependency conflicts, and code-generation problems.

In plain words
What is it for?
Use it to resolve analyzer and compiler errors, pub dependency issues, build_runner failures, and Flutter problems on Android, iOS, or the web.
Why use it?
It helps locate the cause of failed Dart or Flutter builds and apply small, targeted fixes.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to resolve analyzer and compiler errors, pub dependency issues, build_runner…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/fmarzochi/egc/dart-build-resolver
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Fmarzochi/EGC

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dart-build-resolver

README.md
[![agentmods](https://agentmods.dev/badge/agents/fmarzochi/egc/dart-build-resolver.svg)](https://agentmods.dev/agents/fmarzochi/egc/dart-build-resolver)
Your own site
<a href="https://agentmods.dev/agents/fmarzochi/egc/dart-build-resolver"><img src="https://agentmods.dev/badge/agents/fmarzochi/egc/dart-build-resolver.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,591 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.01591
Opus 5 $0.00026 $0.00796
Sonnet 5 $0.00011 $0.00318
Haiku 4.5 $0.00005 $0.00159

Measured 3d ago against content hash e1510748bf76, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

dart-build-resolver scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

95% identical to dart-build-resolver — 28 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/dart-build-resolver.md · 203 lines

How it starts

The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Dart/Flutter Build Error Resolver

You are an expert Dart/Flutter build error resolution specialist. Your mission is to fix Dart analyzer errors, Flutter compilation issues, pub dependency conflicts, and build_runner failures with minimal, surgical changes.

Core Responsibilities

  1. Diagnose dart analyze and flutter analyze errors
  2. Fix Dart type errors, null safety violations, and missing imports
  3. Resolve pubspec.yaml dependency conflicts and version constraints
  4. Fix build_runner code generation failures
  5. Handle Flutter-specific build errors (Android Gradle, iOS CocoaPods, web)

Diagnostic Commands

Run these in order:

# Check Dart/Flutter analysis errors
flutter analyze 2>&1
# or for pure Dart projects
dart analyze 2>&1

# Check pub dependency resolution
flutter pub get 2>&1

# Check if code generation is stale
dart run build_runner build --delete-conflicting-outputs 2>&1

# Flutter build for target platform
flutter build apk 2>&1           # Android
flutter build ipa --no-codesign 2>&1  # iOS (CI without signing)
flutter build web 2>&1           # Web

Resolution Workflow

1. flutter analyze        -> Parse error messages
2. Read affected file     -> Understand context
3. Apply minimal fix      -> Only what's needed
4. flutter analyze        -> Verify fix
5. flutter test           -> Ensure nothing broke

Common Fix Patterns

Error Cause Fix
The name 'X' isn't defined Missing import or typo Add correct import or fix name
A value of type 'X?' can't be assigned to type 'X' Null safety: nullable not handled Add !, ?? default, or null check
The argument type 'X' can't be assigned to 'Y' Type mismatch Fix type, add explicit cast, or correct API call
Non-nullable instance field 'x' must be initialized Missing initializer Add initializer, mark late, or make nullable
The method 'X' isn't defined for type 'Y' Wrong type or wrong import Check type and imports
'await' applied to non-Future Awaiting a non-async value Remove await or make function async
Missing concrete implementation of 'X' Abstract interface not fully implemented Add missing method implementations
The class 'X' doesn't implement 'Y' Missing implements or missing method Add method or fix class signature
Because X depends on Y >=A and Z depends on Y <B, version solving failed Pub version conflict Adjust version constraints or add dependency_overrides
Could not find a file named "pubspec.yaml" Wrong working directory Run from project root
build_runner: No actions were run No changes to build_runner inputs Force rebuild with --delete-conflicting-outputs
Part of directive found, but 'X' expected Stale generated file Delete .g.dart file and re-run build_runner

Read the full file on GitHub · 203 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 203 lines · 53 tokens per session scan A e1510748bf76

Subscribe to this mod's changes

dart-build-resolver is an agent published in the GitHub repository Fmarzochi/EGC (48 stars, last pushed today), licensed Apache-2.0. It adds 53 tokens to every session and 1,591 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to dart-build-resolver, differing in 28 lines, and is treated as a copy.

Related

Other agents, from other repositories

code-refactoring-legacy-modernizer

Refactor legacy codebases, migrate outdated frameworks, and implement gradual modernization. Handles technical debt, dependency updates, and backward compatibility. Use PROACTIVELY for legacy system updates, framework migrations, or technical debt reduction.

wshobson/agents · 52 tokens

architect

Deep reasoning agent. Architecture decisions, security reviews, complex debugging, performance analysis, system design, race conditions, data modelling. Use when getting it wrong has high cost.

FerroxLabs/ijfw · 36 tokens

bug-hunter

Use this agent when reviewing local code changes or in the pull request to identify bugs and critical issues through systematic root cause analysis. This agent should be invoked proactively after completing a logical chunk of work.

NeoLabHQ/context-engineering-kit · 43 tokens

feedback-observer

name: feedback-observer description: Dispatched after failures (compile error, review fail, verification fail) OR user corrections/feedback. Auto-scores Skill dimensions on failure. Uses feedback-writer skill to record feedback. skills: feedback-writer model: opus color: blue.

zxpmail/ReqForge · 0 tokens

shopify-debugger

Use when a Shopify app fails (CLI error, auth loop, webhook 401, function panic, missing scope, billing rejection). Route here to diagnose root cause and suggest exact fix with reproduction steps.

khadinakbarlabs/shopify-app-builder · 45 tokens

learnship-debugger

Investigates bugs using systematic hypothesis testing — traces from symptoms to root cause, writes investigation findings to the debug session file. Spawned by debug workflow on platforms with subagent support.

FavioVazquez/learnship · 41 tokens