원클릭으로
convergence-check
Evaluate whether a hypothesis newly entered the current top-k set and update the convergence counter deterministically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Evaluate whether a hypothesis newly entered the current top-k set and update the convergence counter deterministically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run the full Co-Scientist pipeline for one research run.
Assemble a dashboard-ready snapshot from the canonical state.
Choose exactly one concrete evolution strategy for the active evolution round.
Run the assumption decomposition and deep verification review for a hypothesis.
Run the iterative evolution loop from the current persisted run state until convergence.
Generate exactly one child hypothesis that improves logical coherence, causal consistency, and assumption hygiene.
| name | convergence-check |
| description | Evaluate whether a hypothesis newly entered the current top-k set and update the convergence counter deterministically. |
Goal:
Inputs:
hypothesis_idprevious_top_k_idscurrent_top_k_idsstate/EVOLUTION_STATE.jsonOutputs:
ConvergenceCheckResultstate/EVOLUTION_STATE.jsonContext Loading:
skills/shared-references/schema-index.md.packages/agent_contracts/pipeline_control.py and confirm the exact EvolutionStateContract shape before writing state/EVOLUTION_STATE.json.Execution Contract:
from tools import evaluate_convergence as the stable invocation surface.packages/agent_mechanics/convergence_check.py.evaluate_convergence(hypothesis_id, previous_top_k_ids, current_top_k_ids, current_convergence_count) -> ConvergenceCheckResult.Execution Steps:
skills/shared-references/schema-index.md, then read packages/agent_contracts/pipeline_control.py before writing state/EVOLUTION_STATE.json.hypothesis_id, the previous and current top-k sets, and the current convergence count.tools.evaluate_convergence(hypothesis_id, previous_top_k_ids, current_top_k_ids, current_convergence_count).ConvergenceCheckResult to the caller.entered_top_k and convergenceCount values into state/EVOLUTION_STATE.json.state/EVOLUTION_STATE.json artifact before declaring completion.Artifact Rules:
Completion Rule:
state/EVOLUTION_STATE.json update matches that result exactly.