hypogenic

Plans and audits HypoGeniC hypothesis-generation runs with local validation, cost bounds, and split-leakage checks.

Updated Aug 12, 2026
One-click install
npx skills add https://github.com/Mzane0803/latent-minds-skills-marketplace --skill hypogenic-mzane0803
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: hypogenic
Source: https://github.com/Mzane0803/latent-minds-skills-marketplace/tree/main/plugins/research-writing/skills/hypogenic
Command: npx skills add https://github.com/Mzane0803/latent-minds-skills-marketplace --skill hypogenic-mzane0803

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pyyaml, and includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve? Running the ChicagoHAI HypoGeniC package for LLM-assisted hypothesis generation involves unbudgeted API calls, unpinned datasets, split leakage, and untrusted prompt text. This Skill adds a local, deterministic review layer that validates configs, audits datasets, and bounds cost before any model is called. ## Core Features & Use Cases - Config and policy validation: Validate official HypoGeniC task YAML and a local run policy covering provider, credentials by name, token/cost caps, and logging redaction. - Dataset auditing: Verify pinned HypoBench dataset checksums, schemas, and cross-split duplicate or identity leakage without printing raw text. - Cost planning and model-free evaluation: Compute a conservative token/cost upper bound and score saved predictions with accuracy, coverage, and macro-F1 without importing provider SDKs. - Use Case: Before running HypoGeniC on the deceptive-reviews HypoBench dataset, audit the pinned files, confirm the run policy, and get a bounded cost plan that flags the three known cross-split duplicate groups. ## Quick Start Ask the assistant to validate the example run policy and audit the pinned HypoBench dataset manifest before planning any HypoGeniC generation run.

Frequently Asked Questions about hypogenic

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run HypoGeniC hypothesis generation safely?▼

Validate the task config and local run policy first, audit the pinned dataset for checksum and split-leakage failures, then generate a bounded cost plan. External LLM calls require separate explicit confirmation and are never started automatically.

How to audit HypoBench datasets for split leakage?▼

Run scripts/audit_dataset.py with a manifest listing each split's path and SHA-256. It verifies hashes and schemas, then fails on exact or identity duplicates crossing train, validation, and test splits, reporting only hashes and row indices.

What Python version and dependencies does hypogenic require?▼

The pinned hypogenic 0.3.5 package requires Python 3.10 or later and is installed with uv. The bundled audit tools use only the standard library for JSON; YAML task configs require exactly PyYAML 6.0.2.

Does HypoGeniC enforce an API cost budget?▼

No, the upstream hypogenic CLI does not enforce a dollar budget. This Skill's plan_run.py computes a conservative worst-case cost from request and token caps against user-reviewed prices and marks the plan unready when caps are exceeded.

Are generated hypotheses scientific evidence?▼

No. HypoGeniC output is a bank of candidate textual hypotheses with task-prediction statistics, not experimental confirmation or causal evidence. Independent validation with domain review, controls, and new data is still required.

Can I use OpenAI or Claude models with hypogenic?▼

Yes, the CLI supports gpt, claude, huggingface, and vllm wrappers. Hosted providers send dataset text externally, so review current retention and pricing policies first; local wrappers require a pre-downloaded, reviewed model path.