Probe GEPA Candidate Manifests
June 18, 2026 ยท View on GitHub
Status: implemented_early
Psionic now owns the first manifest contract for GEPA text-bundle candidates that improve Probe and Blueprint behavior without changing model weights. This is a distributed benchmark-driven optimization surface, not distributed neural-network training.
The current implementation lives in
crates/psionic-train/src/probe_gepa_candidate_manifest.rs. It defines
psionic.probe_gepa_candidate_manifest.v1 and a retained Stage 0/1 seed
fixture at
fixtures/probe/gepa/probe_gepa_candidate_manifest_stage_0_1_seed_v1.json.
Contract
The manifest content-addresses these text components:
probe_system_promptterminal_bench_global_playbooksignature_selection_policytool_menu_policypatch_and_test_policyfailure_family_playbookscloseout_policy
Each component has a stable SHA-256 hash. The candidate hash is computed from component hashes plus campaign, split, trace, import, and safety refs. The manifest hash is computed over the complete manifest including the candidate text.
Promotion Boundary
Optimizer acceptance is separate from runtime promotion.
optimizer_acceptance_staterecords whether GEPA accepted the text bundle.runtime_promotion_staterecords whether Probe/Omega has admitted the candidate into shadow, release-candidate, active, or reverted runtime state.promotion_stateis the combined lifecycle label used by downstream importers.
An optimizer-accepted candidate is still not_promoted until external release
gates pass. An active candidate must carry policy_gate_state = passed.
Import Boundary
The manifest carries refs that Probe and benchmark-cloud can import:
- Probe import refs for prompt, Blueprint, tool-menu, and loop-policy candidate objects.
- benchmark-cloud import refs for split manifests, run manifests, and artifact contract refs.
These are refs only. The candidate cannot grant new runtime authority, bypass release gates, carry raw secrets, or upgrade public benchmark claims.
StudyBench Feedback
Status: implemented_early
Psionic accepts OpenAgents StudyBench claim feedback as refs-only optimizer
evidence through psionic.studybench_gepa_feedback_refs.v1 in
crates/psionic-train/src/studybench_gepa_feedback.rs.
The feedback record may carry failed claim refs, missed evidence span refs, forbidden claim refs, skipped test refs, wrong file refs, and budget failure refs for the OpenAgents StudyBench target suites:
target_suite.openagents_studybench.public_retained.v0target_suite.openagents_studybench.private_validation.v0
The record is optimizer feedback only. It cannot include raw private holdout gold answers, raw rubrics, raw judge rationale, runtime-promotion authority, public-claim authority, model-training authority, payout authority, or settlement authority.
Regeneration
Regenerate the retained seed fixture with:
cargo run -q -p psionic-train --example probe_gepa_candidate_manifest_fixture -- \
fixtures/probe/gepa/probe_gepa_candidate_manifest_stage_0_1_seed_v1.json
Verify the contract with:
cargo test -p psionic-train probe_gepa_candidate_manifest --lib
cargo test -p psionic-train studybench_gepa_feedback --lib