research-config

research-config is a skill for Claude Code, Codex from panjose/Co-Scientist. It costs 20 tokens per session (749 once invoked), scanned A, original, Apache-2.0.

A research-plan generator that turns a raw research brief into a structured plan. It reads input.md as the main source and can use optional run-state or policy files for context.

In plain words
What is it for?
Use it to create ResearchPlan JSON and Markdown files from input.md or equivalent research input.
Why use it?
It gives later research work a clear goal, preferences, and constraints instead of leaving the brief as unstructured text.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create ResearchPlan JSON and Markdown files from input.md or equivalent research input.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/panjose/co-scientist/research-config
Install

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.

Any agent
npx skills add panjose/Co-Scientist --skill research-config
Clone the repo
git clone --depth 1 https://github.com/panjose/Co-Scientist

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for research-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/panjose/co-scientist/research-config/github.svg)](https://agentmods.dev/skills/panjose/co-scientist/research-config)
Your own site
<a href="https://agentmods.dev/skills/panjose/co-scientist/research-config"><img src="https://agentmods.dev/badge/skills/panjose/co-scientist/research-config/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.

agentmods 80×15 button for research-config

Your own site · 80×15
<a href="https://agentmods.dev/skills/panjose/co-scientist/research-config"><img src="https://agentmods.dev/badge/skills/panjose/co-scientist/research-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 749 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.00749
Opus 5 $0.00010 $0.00375
Sonnet 5 $0.00004 $0.00150
Haiku 4.5 $0.00002 $0.00075

Measured 9d ago against content hash 663df7bcac3f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

research-config 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 9d 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.

skills/research-config/SKILL.md · 75 lines

What it actually says

research-config

Goal:

  • Generate a ResearchPlan from input.md or equivalent raw research input.

Inputs:

  • input.md or equivalent raw research brief text
  • optional state/START_REQUEST.json
  • optional RUN_POLICY.yaml

Outputs:

  • research_plan/RESEARCH_PLAN.json
  • research_plan/RESEARCH_PLAN.md

Context Loading:

  • Read input.md first. Treat it as the canonical user brief for the run.
  • If state/START_REQUEST.json exists, use it only as auxiliary context for how the run was started. Do not let it override the actual brief text in input.md.
  • If RUN_POLICY.yaml exists, use it only as supporting context for expected run style or emphasis. Do not copy policy values into the research goal unless the brief implies them.
  • Extract three things from the research input:
    • the primary research_goal
    • preferences that define what a strong hypothesis should optimize for
    • constraints that all downstream hypotheses must satisfy

Execution Prompt Contract:

  • System Intent:
    • You are the run's research-plan structuring layer.
    • Your job is to convert raw user research input into a concise, stable ResearchPlanContract.
  • Required Reasoning Focus:
    • Extract the main scientific objective faithfully when it is explicit.
    • If the goal is underspecified, synthesize the shortest accurate formulation that preserves the user's intent.
    • Derive preferences as evaluation criteria for hypothesis quality.
    • Derive constraints as hard boundaries for downstream generation and review.
    • If preferences or constraints are not explicit, infer only reasonable defaults from the research domain and stated goal.
  • Do Not Do:
    • Do not invent specific scientific facts that are not present or reasonably implied.
    • Do not turn broad domain assumptions into narrow claims unless the brief clearly supports them.
    • Do not emit verbose analysis or chain-of-thought style discussion.
    • Do not exceed five preferences or five constraints.
  • Output Shape:
    • Produce a canonical ResearchPlanContract.
    • research_goal must be a single natural-language string, ideally no more than three sentences.
    • Each preferences and constraints item must be short, specific, and directly useful to downstream skills.

Execution Steps:

  1. Open skills/shared-references/schema-index.md, then read packages/agent_contracts/research_plan.py before writing research_plan/RESEARCH_PLAN.json.
  2. Read input.md.
  3. If present, read state/START_REQUEST.json and RUN_POLICY.yaml as contextual hints only.
  4. Identify the main research objective.
  5. Extract or infer up to five preferences.
  6. Extract or infer up to five constraints.
  7. Write the canonical research_plan/RESEARCH_PLAN.json.
  8. Write the companion research_plan/RESEARCH_PLAN.md.
  9. Run validation before declaring the skill complete.

Artifact Rules:

  • research_plan/RESEARCH_PLAN.json must validate against the canonical shared ResearchPlanContract.
  • research_plan/RESEARCH_PLAN.md must remain a human-readable rendering of the same plan, not a divergent summary.
  • The JSON artifact is authoritative; the Markdown file is a companion view.

Completion Rule:

  • This skill is complete only when research_plan/RESEARCH_PLAN.json and research_plan/RESEARCH_PLAN.md both exist and the JSON artifact is valid for downstream consumption.
Changes

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.

  1. 9d ago First seen · 75 lines · 20 tokens per session scan A 663df7bcac3f

Subscribe to this mod's changes

research-config is a skill published in the GitHub repository panjose/Co-Scientist (5 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 20 tokens to every session and 749 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.

Related

Other skills, from other repositories

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…

aipoch/open-science · 91 tokens

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.

aipoch/open-science · 53 tokens

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…

aipoch/open-science · 100 tokens

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.

aipoch/open-science · 54 tokens

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.

aipoch/open-science · 60 tokens

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…

aipoch/open-science · 69 tokens