workflow-lite-test-review

Verifies task completion and reruns tests across JS, Python, Rust, and Go projects.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/tcytan/tecton --skill workflow-lite-test-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-lite-test-review
Source: https://github.com/tcytan/tecton/tree/main/.claude/skills/workflow-lite-test-review
Command: npx skills add https://github.com/tcytan/tecton --skill workflow-lite-test-review

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill resolves uncertainty after code generation by reviewing implementation against per-task convergence criteria, detecting missing test coverage, and running the appropriate test command to confirm behavior before finalizing.

Core Features & Use Cases

  • Convergence verification against the plan: Matches planned task file paths against recent changes and checks each convergence criterion with evidence, producing PASS/PARTIAL/FAIL per task.
  • Test discovery, execution, and reporting: Detects the likely test framework (npm/jest/vitest, pytest, cargo test, go test) and runs tests to generate a structured checklist artifact.
  • Iterative auto-fix for failing tests: Delegates to a test-fix agent up to three rounds, re-running tests after each fix, then produces a human-readable review report and triggers a session sync.

Real-world use case

After completing a workflow-lite-execute run that implemented features from a plan, use this Skill to validate that all specified convergence criteria are satisfied and that unit/integration tests actually exist and pass.

Quick Start

Run workflow-lite-test-review in standalone mode by providing the session path for the latest plan artifacts, so it can verify convergence, run tests, and write a test-review report with an optional auto-fix loop.

Frequently Asked Questions about workflow-lite-test-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify convergence criteria after generating code from a plan?

You verify convergence criteria by matching planned task file paths against recent changes and evaluating each criterion with evidence, generating PASS, PARTIAL, or FAIL verdicts for each task.

How do I run tests and auto-fix failures across different programming languages?

You run tests and auto-fix failures by detecting the project test framework like jest, vitest, pytest, cargo test, or go test, executing the test command, and iteratively applying fixes for up to three rounds.

Does automated test review work with Rust and Python projects?

Yes, automated test review supports Rust and Python projects by detecting and executing cargo test or pytest, validating behavior, and generating a structured test-checklist with PASS, PARTIAL, or FAIL verdicts.

What is the best way to generate a structured test checklist after a workflow execution?

The best way to generate a structured test checklist is to execute a post-implementation review that detects the test framework, runs the test suite, and outputs a test-checklist.json file containing the final verdicts.

Do I need plan.json artifacts to run an automated test review?

Yes, you need plan.json and per-task artifacts to run an automated test review in standalone mode, or you can supply an in-memory chain context from a prior workflow execution session.