Skip to main content

qikly

tests pypi python license marketplace VS Code

The problem: Your AI writes both the code and its tests. How do you know the tests are really valid?

The solution: two agents. One turns the acceptance criteria into tests. The other writes the code and never sees the acceptance criteria.

Who it is for: a developer or team pointing an AI coding agent at a self-contained Python module that transforms data, for example an ETL step, a merge, a calculation or a validation routine, who does not want to trust a green suite when the same agent wrote both the code and the tests. It suits one module at a time: when a test fails, only the files that failure names are loaded, so runs stay small and quick. Large multi-file repositories are a different problem. See What it is for.

Imagine a student who writes the exam paper, writes the answer key, and then sits the exam. They pass. Obviously they pass, and nobody would accept that as evidence the student knows the material.

That is what happens when one model is given a specification containing the acceptance criteria and asked to produce both the implementation and the suite that checks it. It writes tests its own code will pass. Everything goes green, and the green means nothing.

qikly takes the answer key away from the student.

It generates a test suite from the acceptance criteria in a specification, then writes an implementation and repairs it against that suite until every test passes or a retry budget runs out. The agent doing the writing and repairing never sees the criteria. Every failure, every piece of reasoning and every diff is recorded.

The part that makes the result mean something: the coding agent never sees acceptance_criteria. It gets the specification with that section stripped out, the same vague brief a developer works from, while test generation gets it in full. When a test fails, the agent sees the failure message and never the rule it broke. Without that asymmetry both sides read the same spec identically and every test passes first try, which proves nothing.

flowchart TD
    SPEC["<b>Full specification</b><br/>task.yaml<br/>requirements + interface<br/>acceptance_criteria"]
    REQ["requirements<br/>+ interface"]
    AC["acceptance_criteria"]
    CODE["<b>Coding agent</b><br/>writes the implementation<br/>FIX then PATCH on failure"]
    TEST["<b>Test-writing agent</b><br/>writes the suite"]
    IMPL["Implementation"]
    SUITE["<b>pytest suite</b><br/>Tests for:<br/>1 integration, 2 system,<br/>then 3 unit"]
    RUN{"Run the suite"}
    FAIL["<b>Failure errors</b> only<br/>no criteria, no test source"]
    OUT["Converged<br/><b>outputs:</b> code + suite<br/>+ audit trail"]
    STALL["Did not converge<br/><b>failure errors and audit trail</b><br/>exits non-zero, ships nothing"]

    SPEC --> REQ
    SPEC --> AC
    AC -. "never reaches" .-x CODE
    REQ --> CODE
    REQ --> TEST
    AC --> TEST
    CODE --> IMPL
    TEST --> SUITE
    IMPL --> RUN
    SUITE --> RUN
    RUN -- pass --> OUT
    RUN -- fail --> FAIL
    FAIL -- "repair loop:<br/>FIX, then PATCH" --> CODE
    FAIL -- "retry budget spent" --> STALL
    IMPL -. "unit stage only:<br/>written last, from the code" .-> TEST

    classDef codeView fill:#f3e8ff,stroke:#7e22ce,color:#4c1d95
    classDef standardView fill:#d9ebea,stroke:#0e6a70,color:#0b3d40
    classDef converged fill:#dcfce7,stroke:#15803d,color:#14532d
    classDef stalled fill:#fdf0d5,stroke:#b45309,color:#78350f
    class CODE,IMPL,FAIL codeView
    class AC,TEST,SUITE standardView
    class OUT converged
    class STALL stalled
    linkStyle 10 stroke:#15803d,stroke-width:2px
    linkStyle 11,12 stroke:#7e22ce,stroke-width:2px
    linkStyle 13 stroke:#b45309,stroke-width:2px

Purple is what the coding agent can see. Teal is what the standard is written from. They never touch. A run that never converges is still worth having: it exits non-zero, names the blocking tests, and keeps the same complete record. The purple arrows are the repair loop, and that is where almost all of a run happens: a failing suite sends the agent the failure text and nothing else, it produces a FIX and a PATCH, and the suite runs again, until the stage passes or the retry budget runs out. It never sees the rule it broke, so it cannot write code shaped to a criterion it was shown. tests/test_withholding.py fails the build if any call site lets one through.

A run works through three stages, integration then system then unit:

  1. Integration and system tests are generated first, from the spec alone, before any code exists. They cannot see an implementation because there is not one yet.
  2. The coding agent writes the implementation, from the spec minus the criteria.
  3. pytest runs. On failure the model produces a FIX (failure summary, root cause, plan, and the files it intends to touch) and then a PATCH (a unified diff of only those files), applied all or nothing. Repeat until the stage passes or the budget is spent.
  4. Unit tests are generated last, once real code exists for them to name. This is the only stage allowed to see the implementation.
  5. Clearing a stage re-runs the earlier ones, so a later fix cannot silently break something that already passed.

Every arrow back into FIX carries the pytest error text and nothing else. Unit tests come last because they are the only ones that need to name real functions, which makes them the only stage allowed to read the implementation. Re-running the earlier stages after each success is what stops a later repair quietly breaking something that already passed.

Two ways to get a test suite, and what each can prove

Code-derived suite
most commercial test generators, and qikly's own unit tests
Spec-derived suite
qikly's integration and system tests
Written from The code as it is today The acceptance criteria you wrote
You supply Nothing but the repository A written statement of what correct means
Catches Behaviour changing tomorrow Behaviour being wrong today
Cannot catch The code being wrong now: today's bug becomes tomorrow's assertion Anything nobody wrote down
A green run means The code still does what it did when the tests were generated The code satisfies the criteria as written
A red run means Someone changed behaviour, deliberately or not The code and your stated intent disagree
Fails you when The original behaviour was already wrong The criteria are vague, missing, or wrong
Right choice when Nobody wrote the intent down and you need a safety net The intent exists in a ticket, a spec page or a Gherkin file

Both are useful and they answer different questions. qikly is not purely one or the other: integration and system tests are written from the criteria before any code exists, the unit stage is written last from the code that just passed them, and --refine-criteria reads a converged implementation to propose criteria the first draft missed. Each of those reads the code on purpose, and none of them can question it.

What makes this different

The tests come from the standard, not from the code. This is the one that matters most. Every other AI test generator in this space writes its tests from an implementation that already exists, so it can only describe what the code already does. That makes an excellent regression harness, and it cannot tell you the code is wrong. qikly writes the integration and system suites from the acceptance criteria before any implementation exists, so the standard cannot have been shaped by the thing it judges.

The withholding is a mechanism you can watch. Not a prompt asking a model to ignore a section, and not a convention someone has to remember. One command prints what each side is given and the difference between them, offline and free:

qikly --explain <MY_TASK>     # e.g. qikly --explain MERGE_SALES

Eleven criteria go to test generation. Twelve lines are removed before the coding agent sees the same file. tests/test_withholding.py fails the build if any call site ever lets one through, including one added next year by someone who has never read this. It is a property of the code, and it takes thirty seconds to check.

What you get is an executable suite you keep. The output is pytest files and JUnit XML. Read them, run them, put them in CI, and when one fails in six months it fails for a reason you can inspect and argue with. A suite is a durable asset in a way a model's verdict is not: a verdict cannot be re-run against tomorrow's commit.

It helps you write the standard, not just check against it. --init and --scaffold turn existing code into a task, --criteria-from lifts criteria out of a ticket you already wrote, --generate-criteria drafts a first bar from requirements alone, and --check-criteria looks for two statements anywhere in the specification that no implementation could satisfy at once, including two acceptance criteria that disagree with each other.

Every run is reproducible, and the whole trail is kept. A run records the provider, the model, the settings and the version that produced it, next to every failing test, every FIX with its stated root cause, and every PATCH as a diff. You can read back exactly why a line of code exists: which assertion forced it, what the model concluded, and what it changed. The record survives a run that never converges, which is when you most want it.

"Why not just use two different models?"

It is the first thing most people ask, and it does help a little. It does not reach the underlying issue, because both models still read the same criteria and so both still write to them: the code is still built to satisfy the standard it is about to be judged by, and changing who types it does not change what they were shown. It is also a habit rather than a mechanism, and nothing checks the two stayed different.

The two compose nicely, incidentally, since qikly picks a provider and model per agent role. You can withhold and use two models.

"Why not just add a reviewer agent?"

The newer version of the same question, and the one worth answering carefully, because independent verification steps are now shipping in mainstream coding agents: a second agent, often from a different model family, reviews what the first one produced.

It helps, and it does not reach this. A reviewer given the same specification has read the same acceptance criteria, and resolves the same ambiguity the same way. It will catch a mistake that is visible from that context: an inconsistency, a requirement plainly skipped, an obvious bug. It cannot catch the case this tool is built for: a line that could be read two ways, read once, with both the code and the standard written from that single reading. Nobody is wrong, so nothing looks wrong.

The problem was never that nothing was checking. It is that everything checking had already seen the answer key. Withholding is what makes the check structural rather than one more opinion drawn from the same context, and it is enforced by a test rather than by an arrangement someone has to remember to keep.

There is a second difference, and it outlasts the run: a reviewer emits a verdict, and this emits a pytest suite you still have in six months.

Design rationale, and the harder problem of where acceptance_criteria comes from in the first place: docs/design_1_case_study.md, the first of three parts.

What it is for

Built for self-contained Python modules that transform data, not for a large existing repository: ETL, merges, calculations, validation. That is the layer where a wrong answer looks like a right answer, and where a test written from the rule is the only thing that catches it.

Where it does not fit today: an existing large repository. PATCH prompts load only the files a FIX names, and while a large file is now excerpted rather than loaded whole, there is no cross-file index. See Where it fits today.

How to use the tools in this project

Four ways in, and the table under Quick start says which command each one needs:

  1. Verify code you did not write. Supply an implementation through seed: and the suite is written from your acceptance criteria by an agent that never reads that code. A suite generated from the same context as the code is a model agreeing with itself.

    The limit is worth saying plainly: qikly cannot know what the author of supplied code saw. Withholding is a property of a run qikly performed, not of a file you hand it. If the same person or model wrote that code with the criteria open, this gives you an independent suite, not an independent author. What it does give, always, is a suite that was not derived from the code, which is the half a code-derived generator cannot give you at all.

  2. Start from a spec. No code yet: get a first implementation and the suite that justifies it, in outputs/, never in your source tree.

  3. Bring your own tests. Seed any stage and the loop becomes a repair procedure rather than a generator.

  4. Run a catalog unattended. Non-zero exit on any non-convergence, so a scheduler or CI job can run many specs and keep the reports.

Try it without spending anything

Three commands that make no model call, need no API key, and cost nothing.

qikly --explain MERGE_SALES   # what each side is shown, and the difference
qikly --validate              # check your task files: YAML, criteria, fixtures
qikly --explain MERGE_SALES --json

--explain is the one worth running first. It prints the acceptance criteria that test generation receives, then the same task file as the coding agent receives it, then the diff: on MERGE_SALES, eleven criteria and twelve lines removed. It builds those strings through the same function a real run uses, so it shows the mechanism rather than a description of it.

--validate reads your task files and nothing else: that they parse, that acceptance_criteria is a list rather than one long string, that fixture paths resolve, and that criteria name values instead of adjectives. It is also available as a pre-commit hook, qikly-validate, deliberately the free check rather than the paid one.

Quick start

Requires Python 3.10+ and GNU patch on PATH. On Windows it ships with Git under usr\bin\patch.exe, which the tool finds on its own. On macOS you have to install it: the system patch is Apple's BSD one, which rejects the options qikly sends, so no generated diff will apply.

brew install gpatch     # macOS only

qikly looks for gpatch before patch, so nothing else is needed afterwards and your system patch is left alone.

pip install qikly
export GEMINI_API_KEY=...     # or API_KEY, or your provider's own variable
qikly --demo

On Windows, in PowerShell, where export is not a command:

pip install qikly
$env:GEMINI_API_KEY = "..."
qikly --demo

Other providers, and how to set a key so it survives a new terminal, are in docs/PROVIDER_KEY_SETUP.md.

You probably do not have to write the task file by hand

The criteria usually exist already, in a feature page or a ticket, and the interface exists in the code. qikly reads both.

# a markdown page, a ticket export, or a .feature file
qikly --criteria-from feature.md --task-id MY_TASK

# straight from Jira: needs JIRA_BASE_URL, JIRA_EMAIL, JIRA_API_TOKEN
qikly --criteria-from-jira PROJ-412 --task-id MY_TASK

# both halves at once: criteria from the page, interface from the module
qikly --scaffold src/metrics/band.py --from-doc feature.md

Bullet lists, a headed Acceptance Criteria section and Gherkin Scenario: blocks are all understood. Your page stays the source of truth and nobody retypes anything.

One section is never filled for you: requirements. The coding agent reads it, and a feature page usually restates its own acceptance criteria in the prose above them, so lifting requirements across would hand the criteria to the one agent that must never see them. qikly --validate warns if what you write there restates a criterion.

Which command depends on which parts you already have

A task file is one YAML file with three parts, and the split above is a split between them:

  1. requirements what the code must do, in the words a person would use. The coding agent reads this.
  2. interface the contract, and a description rather than code: the function signatures and the dotted path where the module will live. Both agents read it, and neither is handed an implementation to read from it. When the integration and system tests are written there is not one yet.
  3. acceptance_criteria what counts as correct, each one checkable and naming its boundary value. Only test generation reads this.

"Spec" below means 1 and 2 together, which is what the coding agent is given. A tick means you already have that part.

One thing the three parts do not say, and it matters: test generation never reads the implementation either. Integration and system tests are written before any code exists, from the specification alone. The unit stage is the single exception, written last from the code that just cleared the earlier stages, because unit tests have to name real functions.

Where you are starting #1 #2 #3 Run What happens
Before anything else: see what is withheld qikly --explain <MY_TASK>
e.g. qikly --explain CALC_TAX
Prints a task file twice, once as each agent receives it, and the difference between them. No API key, no model call, about a second. You get: the acceptance criteria on one side and the same file with them cut out on the other, which is the claim everything else rests on.
Just looking qikly --demo A bundled task end to end in a throwaway folder. Thirty seconds, under a cent. You get: a working implementation, three test suites, and the full record of every FIX and PATCH, in a directory you can delete.
Code someone else wrote, and you want that code verified Y qikly --scaffold <MY_MODULE>.py Scaffold reads the real signatures out of the file you point it at and fills in #2 for you. #1 and #3 stay yours to write: criteria read out of an implementation can only describe what that implementation already does, which is a bar it passes by construction. You get: two task files. One tests the code you already have; the other writes a fresh implementation of the same interface. Keep whichever matches the job and delete the other.
You know what it must do, not yet how to check it Y qikly --init Creates the directory layout and one starter task to edit. Its criteria show the habit that matters most: name the value, not the quality. "100 is accepted and 101 is rejected" forces a test at the boundary; "amounts must be reasonable" does not. You get: a task file to fill in, with your fixtures where a run will look for them.
Same, but you want a first draft of the bar Y Y qikly --tasks <MY_TASKS>
--generate-criteria
Drafts #3 from #1 alone, then runs. You get: a first draft of the bar written into your task file for you to correct, plus the implementation and suites.
You have written all three Y Y Y qikly --tasks <MY_TASKS> Everything you wrote is used, and nothing is drafted on your behalf. You get: an implementation, integration, system and unit suites, a convergence report, and a run summary recording the model and settings that produced them.
You have all three but doubt they agree Y Y Y qikly --check-criteria
--tasks <MY_TASKS>
One model call asking whether any implementation could satisfy the description, #1 and #3 at once, and whether any two of #3 agree with each other. Advisory, and exits non-zero on a contradiction so a pipeline can gate on it. You get: a list of the pairs that cannot both hold, before spending a stage budget on them. Two criteria setting different numbers on the same quantity are always reported, since that is a typo rather than a tighter bar.
A previous run stopped before finishing Y Y Y qikly --tasks <MY_TASKS>
--resume
Generating the tests and the first implementation already cost model calls, and they are still on disk. This keeps them and picks up where it stopped, instead of paying for them twice. You get: the same outputs as a full run, without paying for the parts already built.

<MY_TASKS> is one task_id or several separated by commas. A task_id is a filename under inputs_private/config/tasks/ without the .yaml: --tasks CALC_TAX, --tasks CALC_TAX,MERGE_SALES, or omit it to run every task found. <MY_TASK>, singular, takes exactly one.

QIKLY_MAX_CALLS=200 qikly stops at a call limit rather than a bill.

--scaffold reads the module path and the real signatures of every public function straight out of the file, because they are already there. It leaves requirements and acceptance_criteria for you, and that is deliberate: criteria derived from an implementation can only describe what that implementation already does, and a bar that agrees with the code by construction is the exact failure this tool exists to prevent.

--demo runs one task end to end in a throwaway demo/<timestamp>/ directory and prints what it built and where. It writes nothing outside that directory, so a first run leaves everything else untouched. About 30 seconds.

One qikly --demo run, unedited: criteria withheld, tests generated, a test failing, a patch, green.

That is a real run on gemini-3.5-flash-lite, 38 seconds, not sped up.

From a clone instead:

pip install -r requirements.txt
python run.py --demo

run.py is a shim around src/qikly/cli.py, the same entry point the installed qikly command calls, so a clone and an install run identical code.

Running

python run.py                            # every task found
python run.py --tasks ETL_ADDRESS        # one
python run.py --tasks ETL_ADDRESS,ETL_EMAIL
python run.py --demo --tasks MERGE_STOCK # isolated, any task

Each task runs in its own process, concurrently, with console output prefixed [task_id]. Exit code is non-zero if any task did not fully converge.

Expect some runs to stall, by design. Roughly 8 runs in 10 finish with the code passing every integration and system test. Roughly 6 in 10 pass everything including unit tests. Nearly the whole gap between those two figures is the unit stage.

Those are round numbers because they were measured three times: a 427-run sweep, a 140-run sweep sixteen days later on the same tasks and settings, and a 400-run sweep after correcting the benchmark itself, when eight of the ten tasks turned out to be carrying acceptance criteria that no input row could trigger. All three landed inside each other's intervals. All three used gemini-3.5-flash-lite, a small cheap model chosen to make repeated sweeps affordable, so treat them as a floor. Three sweeps agreeing is worth more than any one of them's decimal places, so the decimal places are not quoted.

A run that exhausts its budget exits non-zero, names the tests that blocked it, and keeps the full record. It never reports success on code its own tests reject.

Ten example tasks ship with the tool across four domains, listed in docs/design_3_mechanism.md.

Measuring rather than producing. One run is an artifact, not a rate: the same task with the same seed converges on some runs and not others. To claim how often anything converges, repeat the sweep and read the interval:

python -m qikly.orchestrator.run_all --repeat 10

That writes an aggregate report with confidence intervals and groups the non-converging runs by what they got stuck on. Details in docs/design_3_mechanism.md.

When a run does not converge

A stall is a normal outcome, not a broken tool: the run exits non-zero, names the blocking tests, keeps the whole record, and ships nothing.

The first thing to try is a stronger model, which moves convergence more than any setting in this file and costs one environment variable. After that, in order of how often each is the answer: read the timeline report, look for the same patch repeating (a criterion fighting the model's priors), check for a collection error (nothing ran at all), and run --check-criteria, --validate and propose_fixtures.

Each of those, with the signature to look for and the fix: docs/TROUBLESHOOTING.md.

Output

Everything is namespaced by task_id so concurrent runs never collide:

Path Contents
outputs/agent_src/code/<task_id>/ The implementation the coding agent wrote. Cleared (backed up under old/<timestamp>/) at the start of each run.
outputs/tests/<task_id>/{integration,system,unit}/ The generated test files for this run.
outputs/data/<task_id>/ The task's actual output artifact (e.g. output.json).
outputs/logs/transactions_<task_id>_<run_timestamp>.jsonl Append-only structured log of every test run, FIX, PATCH, and apply outcome: the source of truth for the run.
outputs/logs/patches/<task_id>/<run_timestamp>/<fix_id>.diff Every patch the agent generated, whether or not it applied.
outputs/reports/junit/<task_id>_<run_timestamp>.xml JUnit XML for the run, one <testsuite> per stage. The one artifact here another system reads: import it into Xray, qTest or TestRail, or publish it from CI. Per-stage files sit beside it, each holding that stage's final state. A stage that never ran is absent rather than reported as an empty pass.
outputs/reports/iterations/<task_id>_<stage>_<run_timestamp>.txt Live-appended one-line-per-attempt pass/fail summary (what streams to the console).
outputs/reports/iterations/<task_id>_<run_timestamp>_report.html Start here. A single-page debugging timeline for the run. Open it in a browser. Generated automatically at the end of every run.py invocation (path printed to console), or on demand: python -m qikly.orchestrator.reports.report [--task ID] [--run TIMESTAMP]. Links to the matching metrics report; stays focused on the narrative, no duplicated numbers.
outputs/reports/metrics/<task_id>_<run_timestamp>_metrics.html A numbers-first companion: a KPI row (iterations, FIX/PATCH attempts, regressions caught, apply-failure rate, run duration), a per-stage iteration chart, and a FIX/PATCH outcome breakdown. Links back to the matching debugging timeline. Same generation triggers as the timeline report, or on demand: python -m qikly.orchestrator.reports.metrics_report [--task ID] [--run TIMESTAMP]. Scoped to one run today; see Where it fits today.
outputs/reports/run_summary/<task_id>_<run_timestamp>.json The same numbers as the metrics report, as JSON instead of HTML, so runs can be compared across time by a script. Written automatically at the end of every run.py invocation. Stays on your disk. The only network calls this project makes are to your configured LLM provider and, unless disabled, a check for a newer release at startup (see Version check).
outputs/reports/aggregate/aggregate_<timestamp>.{html,json} Many runs at once, rather than one: see Running everything at once for what it reports and why. Written by --repeat, or on demand: python -m qikly.orchestrator.reports.aggregate_report [--task ID] [--last N]. Reads the run_summary/ JSONs only, so no LLM calls and free to re-run.

Running it on your own data

Four steps: make the two directories, drop your fixture data in, write the task file, run it. Nothing is written into the package, and nothing is written into your source tree.

qikly --init                    # creates inputs_private/ and a starter task
qikly --tasks MY_TASK

docs/USING_YOUR_OWN_DATA.md has the rest: the task file field by field, getting the split between requirements and acceptance_criteria right (the gap between them is the whole mechanism), lifting criteria out of a ticket you already wrote, seeding your own implementation or test suites, where each file is read from, and proposing the fixture rows a criterion needs before any test can reach it.

Configuration and LLM provider

Gemini by default; OpenAI and Anthropic are supported. One provider per run.

export GEMINI_API_KEY=...
qikly --demo

docs/CONFIGURATION.md has every environment variable, the settings.yaml keys, timeouts, how much determinism each provider actually gives you, and how to notice an SDK changing under you. Keys, PowerShell, CI and what a wrong key looks like: docs/PROVIDER_KEY_SETUP.md.

Version check

On startup the CLI makes one request to pypi.org and prints a single line if a newer release exists. Set QIKLY_NO_VERSION_CHECK=1 to turn it off.

It never changes a run: every failure path is silent, the timeout is 1.5 seconds, it happens once per invocation rather than once per task, and it reads only the public PyPI and GitHub release indexes you already rely on to install software.

Where it fits today

Stated plainly, because the fit matters more than the feature list.

It targets self-contained Python modules. PATCH prompts load only the files a FIX names. A file over roughly 16,000 characters is no longer loaded whole: it is parsed, the definitions the FIX and the failure name are reproduced in full, everything else collapses to a one-line signature, and elided ranges are marked so a diff still applies. Raise the threshold with QIKLY_MAX_FILE_CHARS. What that is not is a repository story: there is no cross-file index, and excerpting reduces size rather than bounding it. A module with four hundred functions still yields four hundred signature lines, so 57k characters becomes 30k, which is smaller and still large. The retrieval is a lookup rather than a similarity search, because the FIX and the failing test already name the symbols.

GNU patch is required, not any patch. Apple and BSD ship an implementation that rejects --fuzz, which is what lets a diff with slightly wrong line numbers apply at all. qikly now tells you when it finds one, instead of reporting it as an ordinary failed hunk while every remaining attempt in the run regenerates diffs that could never land.

Patches apply without asking, by default. They land in the disposable outputs/agent_src/code/ tree with a timestamped backup, never in your working copy, and an unattended loop that stopped to ask would not be unattended. --review-patches puts a person in the path, --dry-run generates every patch and applies none. A declined patch is kept and logged, because a rejection is evidence no test can produce.

Budget exhaustion is a normal outcome, not a rare edge case. A run that cannot satisfy its own suite exits non-zero, names the blocking tests, and ships nothing. That is the property worth having. Three of the four causes are defects in the specification rather than in the model, so most stalls are fixed by editing text: see the stall taxonomy.

Two stall signatures, and they mean opposite things. The same patch repeating byte for byte is the model correctly disagreeing with an artificial rule. No retry budget fixes that: widen the criterion, or move the decision into requirements where the agent can read it as a given rather than as an error to correct. A different patch each attempt, never resolving the same test, is an ordinary bug that the failure text alone does not localise, and a stronger model is the first thing to try. Compare successive diffs under outputs/logs/patches/<task>/<timestamp>/ to tell which one you have. Stalls concentrate in the unit stage, which is also the only stage written with sight of the code.

Test generation can miss a criterion you wrote. A correct, hand-written criterion can end up with no test asserting it, so the coding agent is never forced to satisfy it. Root-caused to the test-generation prompt asking for coverage of "properties the criteria say must hold" without requiring every criterion to be covered, so long lists got sampled down. The prompt fix reduces the gap rather than closing it. Treat as a live gap, and --explain plus the generated suite are how you check it on your own task.

Criteria refinement can tighten a bar, not discover one. The reviewer reacts to what an implementation actually does, so it is good at finding validation gaps in behaviour the code already attempts and cannot surface a behaviour the requirements never asked for. How much it sharpens a bar is an open question.

One provider per run, and no cross-run trend reporting yet: the metrics report covers a single run.

Features

Split three ways, because a single list mixed things that are not alike: what the loop guarantees whatever you type, what you type, and what you are left holding afterwards.

What the loop does on its own

What it does
Withheld acceptance criteria The coding agent never receives them. Enforced by tests/test_withholding.py, not by an instruction
Staged test generation Integration, then system, then unit. Integration and system are written before any implementation exists, so they cannot be shaped to it
Regression re-checks Every stage that has already passed is re-run after each later fix, so a repair cannot quietly break an earlier stage
Retrieval within a file A module over ~16k characters contributes the definitions the failure names, in full, plus a one-line signature for everything else. Deterministic, AST-based, no index and no extra model call
Seeded inputs Supply your own implementation or any test stage instead of generating it
Any provider Gemini, OpenAI or Anthropic, selectable per agent role
Concurrent tasks Each task in its own process, output prefixed [task_id]
Run provenance Every summary records the model, provider, date and generation settings, because a convergence rate belongs to a configuration as much as to a tool
Approval gate --review-patches prints each diff and waits for y/N; --dry-run generates every patch and applies none

Commands

What it does
Show the withholding --explain TASK prints what each side is given and the difference. No model call, no API key
Offline validation --validate checks task files for free: valid YAML, criteria as a list, fixture paths that resolve, criteria naming values not adjectives
Scaffold from code --scaffold FILE reads an existing module and writes two task files: one that tests that code, one that writes a fresh implementation of the same interface
Draft criteria --generate-criteria writes a first bar from requirements alone, for a task that has none
Score a drafted bar against yours --compare-criteria TASK drafts criteria from your requirements alone, then reports what a generated bar would have missed, treating yours as ground truth
Contradiction check --check-criteria asks whether any implementation could satisfy the description, the requirements and the criteria at once, and whether the criteria agree with each other, before a stage budget is spent
Import criteria from a ticket --criteria-from FILE reads bullet lists, an "Acceptance Criteria" section, or Gherkin scenarios out of a ticket you paste into a file
Jira import --criteria-from-jira PROJ-412 reads criteria from a named field or the issue description, through the same parser the file importer uses
Document plus code, in one command --scaffold module.py --from-doc feature.md writes the task file with the criteria taken from the document and the interface read from the module. requirements is left for you on purpose: the coding agent reads it, and a feature page usually restates its own criteria in the prose above them.
Fixture proposals A separate agent names the criteria no input row can trigger and proposes the smallest row that would. It never edits your data
Convergence trends --trends shows each task's rate over time from summaries already on disk, marking any period where the model or settings changed
Machine-readable output --json on --explain and --validate

What you keep

What it does
Executable output Plain pytest files you keep, read, and put in CI long after the run
JUnit XML outputs/reports/junit/<task>_<timestamp>.xml, the format Xray, qTest, TestRail, Jenkins, GitLab and GitHub Actions all ingest
Full audit trail Every test run, FIX, PATCH and apply outcome in an append-only log, plus HTML timeline and metrics reports
Cost forecast Printed before a run starts, from your own history when you have any, labelled as a projection rather than a price
PR comments --pr-comment renders the latest run as markdown; the template workflow updates one comment in place rather than adding many
Pre-commit hook qikly-validate, the free check, so a hook never bills you for typing git commit
GitHub Action gal-a/qikly@v0.4.3, uploading the suite, the code and the JUnit XML

Use it in CI

Listed on the GitHub Marketplace as Qikly Test Generation.

The Action runs one task and keeps what came out: the generated pytest suite, the code that satisfies it, and a JUnit XML file that CI dashboards and test-management tools already read.

- uses: actions/checkout@v5

- id: qikly
  uses: gal-a/qikly@v0
  with:
    task: CALC_TAX
  env:
    GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}

Two working templates are in this repository, meant to be copied out rather than run here: qikly-example.yml runs on demand, and qikly-pr-example.yml comments the result on a pull request.

Three things worth knowing before you wire it up.

It does not fail your build by default. A run that does not converge is a normal outcome, not a broken pipeline, and a tool whose first impression is a red X on someone's main branch does not get a second look. Set fail-on-stall: true when you want it enforcing rather than reporting.

Every trigger spends money. Both templates are workflow_dispatch on purpose. Move to on: pull_request once you know what a run costs you, and scope it by paths: to the task files so an unrelated commit does not pay for a run.

Two ways to pin, and the choice is yours. @v0 is a moving alias that this project repoints at every release, so you receive fixes without receiving a breaking change. @v0.3.4 is an exact pin that never moves, so nothing changes under you and nothing reaches you either. The templates use @v0 because most people want the fixes; use the exact form if your policy requires it.

Use it from your coding agent

qikly runs as an MCP server, so an agent in Claude Code, Codex CLI or Cursor can start a run and read the result without you leaving the conversation.

pip install "qikly[mcp]"
claude mcp add qikly -- qikly-mcp

In VS Code, the Install qikly MCP badge at the top of this page writes the configuration for you. It writes the configuration and nothing else, so the pip install above still comes first.

If the server does not start, one command fixes both ways the badge fails. In your project folder:

python -m qikly --mcp-config

and paste what it prints over the badge's entry. The badge names a bare qikly-mcp, which pip on Windows often installs somewhere that is not on PATH, and the host starts the server in the folder your editor has open, which is often not your project. The printed config names your Python and your project folder in full, so neither can go wrong. --mcp-config claude prints the mcpServers shape that Claude Code and Cursor use. docs/mcp.md has the details.

Four tools: qikly_run, qikly_status, qikly_validate, qikly_scaffold. A run takes minutes to hours and no host will hold a tool call open that long, so qikly_run returns a run id straight away and qikly_status is how the agent finds out what happened. The run is detached, so you can close the editor and ask again tomorrow.

No qikly tool returns your acceptance criteria, on success or on failure. Your agent sees which tests failed and the pytest output. It does not see the rule it broke, which is the same position a human developer is in when CI goes red, and the reason the code it writes next aims at the requirement rather than at the test.

One thing that is your side of the line: the generated tests under outputs/tests/ are written from your criteria, so keep them out of your agent's reach. docs/mcp.md has the config for that and the rest of the setup.

Further reading

Two reference pages, for looking things up rather than reading through: running it on your own data and configuration and provider.

The design write-up is in three parts, and each stands on its own.

What is in it
1. The case Why an agent that writes its own tests is grading its own homework, and one CALC_TAX repair followed end to end: what the coding agent was given, the test it failed, the reasoning it produced from the failure alone, and the one-line patch. Start here.
2. How well it works Three sweeps and 967 runs, the benchmark defect found and corrected between them, the unit-stage gap, what makes a run stall, and the results this project measured and then withdrew.
3. How it is built What separates this from the alternatives, the five agents and what each may read, the FIX and PATCH separation, the ten example tasks, watching a run live, supplying your own code or tests, and the tools for generating and evaluating acceptance criteria.

Where this came from

The separation this tool enforces is ordinary practice in safety-critical engineering, where verification is required to be independent of implementation as part of a V&V methodology for testing. I worked in that setting before building this toolset.

Built by Gal Arav.

License

Apache License 2.0, see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qikly-0.4.3.tar.gz (397.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qikly-0.4.3-py3-none-any.whl (277.5 kB view details)

Uploaded Python 3

File details

Details for the file qikly-0.4.3.tar.gz.

File metadata

  • Download URL: qikly-0.4.3.tar.gz
  • Upload date:
  • Size: 397.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for qikly-0.4.3.tar.gz
Algorithm Hash digest
SHA256 1e0e8cb22481791ea96656c206adcaca33a1471ca4e0173848a915facf843415
MD5 b75c7389efb7052e8880933374e52475
BLAKE2b-256 c567a864a48a597f4615bbfc349213af65ea7c6079503c5c2247f65cb9d29917

See more details on using hashes here.

Provenance

The following attestation bundles were made for qikly-0.4.3.tar.gz:

Publisher: release.yml on gal-a/qikly

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qikly-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: qikly-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 277.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for qikly-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4991186eee45eb15e448ab965bc167153c7876d231ccf282861ce17616110292
MD5 a9fe516317bbca286693a6310d8a9628
BLAKE2b-256 40efa8f4558971008c61c5b3076ff358daed6118b0cdfeaf9b49f29e693a60e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for qikly-0.4.3-py3-none-any.whl:

Publisher: release.yml on gal-a/qikly

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.4.3 This release

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page