원클릭으로
continuous-test-generation
Continuous runner for the continuous-test-generation workflow across supported agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Continuous runner for the continuous-test-generation workflow across supported agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Run one deterministic Vibe dispatcher step and print the selected prompt body.
Continuously assess and execute a repository's Vibe backlog. Use when the user invokes $vibe-run or asks Codex to inspect a repo, bootstrap or replenish .vibe/PLAN.md, and keep implementing and reviewing checkpoints until a real blocker or explicit stop.
Continuous runner for the continuous-documentation workflow across supported agents.
Continuous runner for the continuous-refactor workflow across supported agents.
Deterministic access to the Vibe prompt catalog.
Experimental RAG indexing utilities (scanner + indexer + retriever).
SOC 직업 분류 기준
| name | continuous-test-generation |
| description | Continuous runner for the continuous-test-generation workflow across supported agents. |
Run the continuous-test-generation workflow in continuous mode until the
dispatcher returns recommended_role: stop (only [MINOR] test gaps remain).
The workflow rotates through three prompt steps in a strict cycle:
prompt.test_gap_analysis — identify untested code paths (runs every 3rd checkpoint)prompt.test_generation — generate tests for identified gapsprompt.test_review — review generated tests for correctnessCold starts are handled automatically — the infrastructure initialises the rotation at step 1 when no prior runtime entry exists.
Run one dispatcher step at a time:
# 1. Ask the dispatcher for the next prompt
python3 .codex/skills/vibe-loop/scripts/agentctl.py --repo-root . --format json next --workflow continuous-test-generation
# 2. Read the prompt body from the catalog path returned by the dispatcher
python3 .codex/skills/vibe-prompts/scripts/prompt_catalog.py <prompt_catalog_path> get <recommended_prompt_id>
# 3. Execute the prompt body (do the actual test generation work)
# 4. After execution, record the loop result
python3 .codex/skills/vibe-loop/scripts/agentctl.py --repo-root . --format json loop-result --line "LOOP_RESULT: <json>"
# 5. Repeat from step 1 until recommended_role == "stop"
The --workflow continuous-test-generation flag is required — it activates
the continuous override that ignores normal plan-state routing and selects from
the test generation prompt rotation instead.
In this orchestration source repo, use tools/agentctl.py and tools/prompt_catalog.py
instead; the .codex runtime helper scripts are generated during install.
After executing each prompt, emit a LOOP_RESULT JSON line with the dispatcher-required report fields:
{
"loop": "implement",
"result": "ready_for_review",
"stage": "<current_stage>",
"checkpoint": "<current_checkpoint>",
"status": "<current_status>",
"next_role_hint": "implement|review|stop",
"workflow": "continuous-test-generation",
"report": {
"acceptance_matrix": [
{
"item": "<checked behavior>",
"status": "PASS|FAIL|N/A",
"evidence": "<command or file evidence>",
"critical": true,
"confidence": 0.9,
"evidence_strength": "LOW|MEDIUM|HIGH"
}
],
"top_findings": [
{"impact": "MAJOR|MINOR", "title": "[MAJOR|MODERATE|MINOR] ...", "evidence": "...", "action": "..."}
],
"state_transition": {
"before": {"stage": "<current_stage>", "checkpoint": "<current_checkpoint>", "status": "<previous_status>"},
"after": {"stage": "<current_stage>", "checkpoint": "<current_checkpoint>", "status": "<current_status>"}
},
"loop_result": {
"loop": "implement",
"result": "ready_for_review",
"stage": "<current_stage>",
"checkpoint": "<current_checkpoint>",
"status": "<current_status>",
"next_role_hint": "implement|review|stop"
}
}
}
Use idea impact tags ([MAJOR], [MODERATE], [MINOR]) in top_findings titles.
The structured impact field follows the dispatcher impact schema; use the title tag
for the continuous-workflow major/moderate/minor idea threshold.
The workflow stops when only [MINOR] test gaps remain.
scripts/continuous_test_generation.pyWraps vibe-run with --workflow continuous-test-generation. Useful for
terminal or headless modes:
# Interactive (terminal)
python3 .codex/skills/continuous-test-generation/scripts/continuous_test_generation.py --repo-root . --show-decision
# Headless dry-run
python3 .codex/skills/continuous-test-generation/scripts/continuous_test_generation.py --repo-root . --non-interactive --simulate-loop-result --max-loops 10 --show-decision
vibe-run.workflow_runtime.json entry) by
starting the rotation at step 1 — no manual initialisation is needed.requires_loop_result: true, record the pending
LOOP_RESULT before calling next again.test_gap_analysis has an every: 3 frequency gate — the dispatcher
automatically skips it on non-matching checkpoints and rotates to the next
eligible step.resources/test-generation-guide.md for high-value test target
heuristics.