Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
researcher/runs/README.md
1# Researcher Runs23Each run is one trip through the research-to-skill state machine. Run directories are runtime artifacts; only the seed run is committed as a worked example.45## Layout67```8researcher/runs/<timestamp>-<slug>/9run-state.json # state machine, locked surfaces, transition history10THREAD.md # human-readable thread log11sources/12queue.jsonl # source records for this run13evaluations/ # source-evaluation JSON (drafts allowed, completed required for publish)14evidence/15retrieval.md # pointer log of retrieved evidence16raw/ # raw fetched HTML/JSON17proposals/18skill-proposal.md # proposal targeting a specific skill change19mechanism-proposal.jsonl # candidate mechanisms for the registry20reports/21validation-report.json # repo-level validation snapshot at init time22validation-report.md # human summary23novelty-result.json # latest novelty check (created by `research_loop.py novelty`)24pr-readiness.md # PR summary, test plan, risks (created by `pr-ready`)25closure.json # set by `close`26run-readiness.{json,md} # set by `validate-run`27logs/28```2930## State machine3132```33initialized -> retrieved -> evaluated -> proposed -> novelty_checked -> validated -> pr_ready -> closed34```3536Use `researcher/scripts/research_loop.py` subcommands rather than editing `run-state.json` directly:3738```bash39python3 researcher/scripts/research_loop.py init --title "..." --url "..."40python3 researcher/scripts/research_loop.py retrieve --run-dir <run> --file <evidence>41python3 researcher/scripts/research_loop.py evaluate --run-dir <run>42python3 researcher/scripts/research_loop.py propose --run-dir <run>43python3 researcher/scripts/research_loop.py novelty --run-dir <run>44python3 researcher/scripts/research_loop.py validate-run --run-dir <run>45python3 researcher/scripts/research_loop.py pr-ready --run-dir <run> --summary <text> --test-plan <text> --risks <text>46python3 researcher/scripts/research_loop.py close --run-dir <run> --status reference-only --reason <text> --reviewed-by <handle>47```4849## What is committed5051Only `researcher/runs/20260515-035228-executable-autonomous-research-frameworks/` is committed. It is the worked example that bootstrapped the harness-engineering skill and the mechanism registry. Its `current_state` is `closed` and `close_status` is `reference-only`.5253All other run directories are local runtime state and are excluded by `.gitignore`. PRs should not introduce new committed runs; if you need a regression fixture, add it under `researcher/fixtures/` instead.54