a2a cloud
production blueprint · engineering

Flaky test diagnosis agent blueprint.

Cluster repeated failures, isolate timing or state signals, and propose the smallest experiment that can confirm the cause.

Search intent: AI agent to diagnose flaky tests

Published by a2a cloudProduct-source methodology →
01 · the contract

Start from a bounded job, not a blank chat box.

trigger

A test crosses the configured intermittent-failure threshold.

owner

engineering owner

agent stops at

The test owner approves quarantine, fixture changes, or retry-policy changes.

KPI · decrease

open flaky-test age (days). Track days from first threshold breach to verified disposition.

inputs

Evidence the run may read

  • Failure logs from multiple runs
  • Test source and fixtures
  • Runtime and timing metadata
outputs

Artifacts the run must produce

  • Failure cluster summary
  • Likely nondeterminism sources
  • Controlled reproduction plan
02 · topology

Small specialists. Named handoffs. One accountable decision.

Each stage produces an artifact another stage can inspect. The final node is a person, not an autonomous write to an external system.

  1. 01

    intake

    Validate and normalize the flaky test diagnosis inputs.

  2. 02

    failure clusterer

    Produce the failure cluster summary.

  3. 03

    test-state analyst

    Produce the likely nondeterminism sources.

  4. 04

    experiment reviewer

    Challenge the flaky test diagnosis result and prepare an approval packet.

  5. 05

    engineering owner

    The test owner approves quarantine, fixture changes, or retry-policy changes.

intakevalidated input packetfailure-clusterer
failure-clustererFailure cluster summarytest-state-analyst
test-state-analystLikely nondeterminism sourcesexperiment-reviewer
experiment-reviewerapproval packet with evidence referenceshuman-approver
03 · authority

Grant the run only what this case needs.

Source material is read-only. Drafts land in a case-specific output path. Tools may read or propose; the human gate owns the external write.

read

case inputs

workspace/engineering/flaky-test-diagnosis/inputs/**

Read only the evidence attached to this workflow instance.

write-output

case outputs

workspace/engineering/flaky-test-diagnosis/outputs/**

Write drafts and evidence artifacts without modifying source records.

invoke-scoped-tool

approved tools

engineering:flaky-test-diagnosis:read-or-propose

Invoke only tools explicitly granted for this run; external writes remain gated.

required human decision

The test owner approves quarantine, fixture changes, or retry-policy changes.

Decision owner: engineering owner.

04 · implementation

A private, bounded starting manifest.

The blueprint starts private, caps its DAG, disables replanning, and exposes no public endpoint. Add only the tools and data adapters this workflow has approved.

a2a.yamlsafe starting point
name: engineering-flaky-test-diagnosis
version: 0.1.0
entrypoint: agent:BlueprintAgent
expose:
  public: false
composition:
  planning: deterministic_dag
  max_nodes: 6
  max_parallel: 1
  max_replans: 0
05 · acceptance test

Pass only with evidence.

  1. 01

    Evidence traceability

    Every material conclusion cites an input artifact or a scoped tool result from this run.

  2. 02

    The diagnosis uses evidence from multiple runs and does not treat a retry pass as proof of repair.

    The diagnosis uses evidence from multiple runs and does not treat a retry pass as proof of repair.

  3. 03

    Approval boundary

    The run stops at a proposal and records the human decision before any external side effect.

failure containment

Stop small. Preserve the evidence.

There are too few comparable runs to separate a flaky signal from a real regression.

Containment: Return a partial result with unresolved items; do not broaden scope or perform an external write.

Operator: Attach the missing evidence, narrow the brief, or explicitly approve a new scoped run.

A required input or tool grant is unavailable.

Containment: Stop the affected branch and preserve completed artifacts in the case output workspace.

Operator: Grant only the missing resource or continue with that branch marked out of scope.

06 · proof

Sign the run facts. Keep money in the billing ledger.

Current platform receipts sign caller identity or classification, skill, bounded input evidence, verified grant IDs when present, outcome or result preview, and timing. Optional file, tool, artifact, handoff, evaluation, and review fields require separate instrumentation and are not populated by default. Price, fees, payouts, and later human approvals remain separate platform records.

The example uses only fields populated by the current platform sealing paths. It is illustrative, not a record of a real customer run.

ExecutionReceipt · selected fieldsEd25519 token
{
  "receipt_id": "rcpt_01J...",
  "schema_version": 1,
  "agent_name": "engineering-flaky-test-diagnosis",
  "caller": "user:workflow-owner",
  "task_id": "case_flaky_test_diagnosis",
  "skill_name": "flaky_test_diagnosis",
  "input_hash": "4d7c...9a2f",
  "grant_ids": [
    "grt_case_inputs",
    "grt_tool_propose"
  ],
  "status": "ok",
  "result_preview": "Output prepared: Failure cluster summary. Human decision remains separate.",
  "elapsed_ms": 4218
}
put the pattern to work

Start private. Scope the authority. Require the decision.

Deploy the workflow as a bounded internal agent, verify its outputs and the receipt fields actually emitted, then expand only the scopes your acceptance test proves it needs.