test-execution-feedback-loop

test-execution-feedback-loop is a skill for Codex from Eliyce/paqad-ai. It costs 29 tokens per session (885 once invoked), scanned A, original, MIT.

A guide that turns failed test evidence into specific, small fix proposals. Each proposal points to a file, line, acceptance-criteria ID, and likely cause.

In plain words
What is it for?
Use it after verification reports failures to decide exactly what implementation change should be made before the next test run.
Why use it?
It reduces the repeated cycle of reading test output, guessing a fix, rerunning tests, and starting over.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it after verification reports failures to decide exactly what implementation change should be made before the next test run.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliyce/paqad-ai/test-execution-feedback-loop
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.

Any agent
npx skills add Eliyce/paqad-ai --skill test-execution-feedback-loop
Clone the repo
git clone --depth 1 https://github.com/Eliyce/paqad-ai

Made for: Codex.

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 test-execution-feedback-loop

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliyce/paqad-ai/test-execution-feedback-loop.svg)](https://agentmods.dev/skills/eliyce/paqad-ai/test-execution-feedback-loop)
Your own site
<a href="https://agentmods.dev/skills/eliyce/paqad-ai/test-execution-feedback-loop"><img src="https://agentmods.dev/badge/skills/eliyce/paqad-ai/test-execution-feedback-loop.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 885 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 original No closer match found 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.00029 $0.00885
Opus 5 $0.00015 $0.00443
Sonnet 5 $0.00006 $0.00177
Haiku 4.5 $0.00003 $0.00089

Measured 7d ago against content hash 96f58d2b0973, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

test-execution-feedback-loop 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 7d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/lint-output.sh, scripts/load-failures.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

runtime/base/skills/test-execution-feedback-loop/SKILL.md · 80 lines

How it starts

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

What It Does

Reads the structured verification evidence file produced by the verifier, and for every entry in gates[].failures[] proposes the smallest change that would make that test pass. Each proposal is anchored to a specific file, line, AC id, and root-cause hypothesis — no prose-only suggestions and no fixes that work around the test.

The point is to collapse the typical fix-test-rerun-repeat loop from two turns into one: the model's next implementation turn can act on a structured proposal instead of re-reading raw test output.

Use This When

Use this immediately after the verifier reports overall_status: "fail" and before the next implementation turn begins. Run it whenever there are at least one failure in the evidence file. Skip in the fast lane unless explicitly requested.

Inputs

  • Read the verification evidence at verification_evidence_path first; reject the run if schema_version is not 1.0.x.
  • Read the acceptance criteria artifact when supplied so each failure's ac_id can be cross-checked.
  • Read the changed-file list to calibrate confidence (failures pointing at files outside the change set lower confidence to low).
  • Read references/fix-proposal-template.md before drafting proposals so every proposal has the required fields.

Procedure

  1. Run scripts/load-failures.sh [evidence-path] — emits one JSON object per failure, exits 1 if schema_version is unsupported. Iterate over those rows.
  2. For each failure, read an excerpt around file:line to confirm the cited line still exists.
  3. Cross-check ac_id against the acceptance criteria artifact; mark untraced and lower confidence when the AC is missing.
  4. Draft one proposal per failure (or one combined proposal when failures share a root cause) per assets/output.template.md.
  5. Confidence: high only when one-line, anchored to the change set, and AC is known.
  6. Validate with scripts/lint-output.sh.

Output Contract

  • Return a heading named Fix Proposals.
  • For each failure (or combined group), emit a third-level heading ### Failure {N} and the fields from references/fix-proposal-template.md.
  • End with a summary line: Total failures: {N} | Combined into {M} proposals | High-confidence: {H} | Defer to human: {D}.
  • When the evidence file has zero failures, return Fix Proposals: none — verification passed. exactly.

Read the full file on GitHub · 80 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 80 lines · 29 tokens per session scan A 96f58d2b0973

Subscribe to this mod's changes

test-execution-feedback-loop is a skill published in the GitHub repository Eliyce/paqad-ai (8 stars, last pushed yesterday), licensed MIT. It adds 29 tokens to every session and 885 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

session-investigator

Investigate fast-agent session and history files to diagnose issues. Use when a session ended unexpectedly, when debugging tool loops, when correlating sub-agent traces with main sessions, or when analyzing conversation flow and timing. Covers session.json metadata, history JSON format, message structure, tool…

evalstate/fast-agent · 68 tokens

auto-fix

A bug-fixing workflow that first reproduces a problem with a test, then applies the smallest code change needed. It also checks the related code path and runs tests afterward.

Insajin/autopus-adk · 19 tokens

debugging

A structured method for finding and fixing software bugs. It starts by writing a test that reproduces the failure, then investigates its underlying cause before making a small fix.

Insajin/autopus-adk · 16 tokens

ast-refactoring

A code-refactoring guide that uses an abstract syntax tree, a structured representation of source code, to make changes based on code meaning rather than text matching.

Insajin/autopus-adk · 15 tokens

entropy-scan

A codebase health scan that measures disorder and highlights technical debt, meaning code problems that make future changes slower or riskier. It checks complexity, dependencies, repeated code, file size, and recent change frequency.

Insajin/autopus-adk · 22 tokens

environment-diagnostics

Environment variable validation and configuration verification. Checks that required variables are set, config files parse correctly, ports are available, and system dependencies meet version requirements.

vladkesler/initrunner · 34 tokens