Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add panjose/Co-Scientist --skill hypothesis-generation-pipelinegit clone --depth 1 https://github.com/panjose/Co-ScientistWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/panjose/co-scientist/hypothesis-generation-pipeline)<a href="https://agentmods.dev/skills/panjose/co-scientist/hypothesis-generation-pipeline"><img src="https://agentmods.dev/badge/skills/panjose/co-scientist/hypothesis-generation-pipeline/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/panjose/co-scientist/hypothesis-generation-pipeline"><img src="https://agentmods.dev/badge/skills/panjose/co-scientist/hypothesis-generation-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00018 | $0.01738 |
| Opus 5 | $0.00009 | $0.00869 |
| Sonnet 5 | $0.00004 | $0.00348 |
| Haiku 4.5 | $0.00002 | $0.00174 |
Grade A, and why
hypothesis-generation-pipeline scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.
hypothesis-generation-pipeline
Goal:
- Dispatch one enabled generation strategy for a given
ResearchPlan.
Inputs:
ResearchPlan- active
state/STRATEGY_PLAN.json - one enabled generation
strategy - optional resume context from
state/PIPELINE_STATE.json
Outputs:
hypotheses/<id>/HYPOTHESIS.jsonhypotheses/<id>/HYPOTHESIS.mdhypotheses/<id>/ORIGIN.jsonliterature/queries/<query_id>/*whenhypothesis-generate-literatureis selectedhypotheses/<id>/REVIEW/*.json- updated
meta/INSIGHTS_FROM_REVIEWS.jsonwhen the hypothesis is viable - updated proximity receipt/status artifacts, plus
state/PROXIMITY_GRAPH.jsonwhen the embedding bridge succeeds - updated
tournaments/*.json - updated
islands/ISLANDS.json - updated
state/PIPELINE_STATE.json
Sub-skills:
hypothesis-generate-literatureliterature-searchhypothesis-generate-debatehypothesis-generate-assumptionshypothesis-review-pipelineinsights-from-reviewshypothesis-proximity-updatehypothesis-ranking-pipeline
Context Loading:
- Open
skills/shared-references/schema-index.md. - Read
packages/agent_contracts/research_plan.pybefore consumingresearch_plan/RESEARCH_PLAN.jsonas the canonical generation brief. - Read
packages/agent_contracts/strategy_plan.pybefore consumingstate/STRATEGY_PLAN.jsonas the active generation-stage routing input. - Read
packages/agent_contracts/hypothesis.pybefore dispatching any atomic generation skill that will writehypotheses/<id>/HYPOTHESIS.json. - Read
packages/agent_contracts/literature.pyandskills/shared-references/literature-search-contract.mdbefore dispatchinghypothesis-generate-literature. - Read
packages/agent_contracts/state.pybefore assigning or updatingislands/ISLANDS.json. - Read
packages/agent_contracts/pipeline_runtime.pybefore updatingstate/PIPELINE_STATE.json. - Read
state/STRATEGY_PLAN.jsonand confirm the current round permits the selected generation strategy. - Read
RUN_POLICY.yamlwhen review rigor or downstream optional review behavior depends on the effective run policy.
Execution Contract:
- This pipeline skill does not own hidden prompt templates.
state/STRATEGY_PLAN.jsonis a routing input to this skill, not a generation-stage artifact that this skill may rewrite ad hoc.research_plan/RESEARCH_PLAN.jsonis a required canonical input. If it is missing or invalid, stop immediately and return control to the top-level workflow or configuration stage instead of attempting generation.- Append-only routing audit artifacts such as
state/STRATEGY_DECISIONS.jsonlremain owned by the top-level orchestration layer and the canonical router surface inpython -m tools.policy.plan_strategy <run_dir>. - It coordinates downstream generation, review, insights, proximity, and ranking skills; those downstream skills remain responsible for the field-level canonical shapes of the artifacts they write.
- The selected generation strategy must be consistent with
state/STRATEGY_PLAN.json. - When the selected generation strategy is
literature_exploration_generation, the dispatchedhypothesis-generate-literatureskill must calltools.search_literature(run_dir, request)and consume a non-blockedEvidenceBundleContractbefore writing a literature-grounded hypothesis. - The generation pipeline must not accept prompt-invented literature evidence in place of
literature/queries/<query_id>/EVIDENCE_BUNDLE.json. - On a fresh run, execute one generated hypothesis per selected generation strategy so the initial frontier mirrors the full seed set instead of collapsing to a single synthetic output.
- On a regeneration pass triggered from evolution, execute one generated hypothesis per selected generation strategy and then refresh the evolution plan before continuing.
- After each generated hypothesis is written, immediately run:
hypothesis-review-pipelineinsights-from-reviewswhen the hypothesis is viablehypothesis-proximity-updatefor each viable hypothesishypothesis-ranking-pipeline
- The generation pipeline must not skip proximity because no embedding vector is already present. The bridge owns provider invocation and records a receipt/status when the provider is disabled, unavailable, invalid, or failed.
- Do not generate, infer, or fabricate embeddings in prompt output. Proceed to ranking through the documented receipt-gated fallback path only after
hypothesis-proximity-updatehas recorded a skipped or failed receipt/status. - For initial frontier seeding, assign one non-empty
island_idto each viable generated hypothesis, then calltools.ensure_run_islands_for_hypotheses(run_dir)before the round is considered complete. - Newly created seed islands are initialization records only: they must keep
decayed_reward = 0.0,decayed_visits = 0.0, andvisit_count = 0. - Initial frontier island assignment is distinct from the later single-island reward / decay mechanics in
hypothesis-evolution-loop; do not applytools.update_single_island_reward(...),tools.update_run_single_island_reward(...), or any manual reward/visit increment during seeding. - Persist only canonical island fields. Do not add dashboard-derived or router-derived fields such as
hypothesis_ids,ucb_score, orstrategy_labeltoislands/ISLANDS.json.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 98 lines · 18 tokens per session scan A 2529d4587bb7
hypothesis-generation-pipeline is a skill published in the GitHub repository panjose/Co-Scientist (5 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 18 tokens to every session and 1,738 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
remote-compute-ssh
Evaluate and use SSH Remote Compute before choosing where to run GPU, high-memory, parallel, batch, model-inference, bioinformatics, or other long-running scientific work; supports short remote commands and asynchronous jobs with automatic harvest and analysis.
figure-style
Publication-grade correctness and legibility rules for final-deliverable scientific figures, not exploratory plots. Use for a figure that will ship in a report, paper, export, or kept artifact. Covers data fidelity, label economy, color threading, chart choice, layout, and render-then-verify QA without imposing a…
literature-review
Find, verify, and synthesize scientific literature — from "what's the seminal paper for X" through full multi-source reviews. Covers grounding claims in real retrieved sources, avoiding fabricated citations, handling retractions, and calibrating confidence to evidence strength.
scvi-tools
Probabilistic single-cell RNA-seq with scvi-tools — scVI for a batch-corrected latent space, scANVI for semi-supervised label transfer, and Bayesian differential expression. Reach for this skill to integrate scRNA-seq batches, embed cells for clustering, transfer annotations from a reference onto a query, or score…
self-awareness
Inspect Open Science's JavaScript control REPL, discover managed Project files, Sessions, and Agent Frames, and safely feature-gate host. calls with host.capabilities(). Use when an Agent needs to discover available host APIs, locate an Artifact or Upload Version, diagnose a Session, or read a Frame transcript in the…
openfold3
Structure prediction using OpenFold3, an open-weights PyTorch reproduction of AlphaFold3 from the AlQuraishi Lab. Use this skill when predicting protein/nucleic-acid/ligand complex structures with an Apache-2.0-licensed AF3 reimplementation.