by mmTheBest
An end-to-end research workflow skill for turning ideas into evidence-backed, citation-supported manuscript drafts
# Add to your Claude Code skills
git clone https://github.com/mmTheBest/Research-ArchitectGuides for using ai agents skills like Research-Architect.
Last scanned: 6/22/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-22T09:53:07.686Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}Research-Architect is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by mmTheBest. An end-to-end research workflow skill for turning ideas into evidence-backed, citation-supported manuscript drafts. It has 62 GitHub stars.
Yes. Research-Architect passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/mmTheBest/Research-Architect" and add it to your Claude Code skills directory (see the Installation section above).
Research-Architect is primarily written in Python. It is open-source under mmTheBest on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Research-Architect against similar tools.
No comments yet. Be the first to share your thoughts!
English | 简体中文
Research Architect is a research workflow skill suite for moving from a raw topic, partial materials, or scattered results to a coherent research-paper draft.
It provides an end-to-end research workflow for building a study from scratch: selecting a research question, conducting a focused literature review, identifying the research gap, designing the study, organizing evidence, controlling claims, planning evidence displays, managing citation support, and drafting an auditable manuscript. The skill turns early-stage research ideas into a structured, reproducible path from brainstorming to a credible first draft.

Research Architect can run end-to-end or one branch at a time. The core idea is simple: preserve a transparent trail from raw idea to research spine, study design, evidence, claims, citation support, draft, and audit.
After installation, start with:
research-architect
Example task:
I have a broad idea: genetic regulation in lung cancer.
I also have two target reference papers I want to learn from.
Use Research Architect to extract their research logic, propose feasible
research-question options, and build an adapted research spine.
Research Architect helps you learn research design from target reference papers. It decomposes strong papers into reusable research logic: how they frame a problem, narrow scope, define the gap, choose a design family, set up comparison or warrant logic, organize evidence displays, and keep each claim within its evidence boundary.
The goal is to transfer the research logic behind good papers into your own project without copying their text, figures, data, results, citation choices, or claims.
Raw idea
-> Target-reference logic extraction
-> Exemplar-to-project adaptation plan
-> Research-question options and research gap
-> Research spine
-> Study design
-> Study component and analysis plan
-> Evidence bank
-> Claim register
-> Citation support bank
-> Evidence display map
-> Section blueprint and writing rationale matrix
-> First draft
-> Audit and revision queue
Research Architect treats references as research-design examples. It analyzes:
Research Architect pushes a broad topic into concrete research judgment by asking:
Research Architect converts the design logic learned from references into a project-specific study design. It helps plan study components, analysis plans, comparison or warrant logic, negative cases, credibility checks, threats to validity, evidence displays, and claim-strength boundaries.
Research Architect breaks "contribution" into more concrete types, such as a clearer research question, a new data combination, a new analysis workflow, a new application context for an existing method, a stricter benchmark, more credible validation, a clearer evidence hierarchy, or a reusable framework that integrates scattered ideas.
A complete run leaves a transparent trail under paper_output/, including research spine, source inventory, literature map, exemplar logic profile, exemplar adaptation plan, study design, analysis plan, study component registry, evidence bank, claim register, evidence display map, citation support bank, writing rationale matrix, manuscript draft, and audit report. experiment_registry.md and figure_asset_map.md remain supported as compatibility artifacts, while study_component_registry.md and evidence_display_map.md are the canonical field-general names.
Run one of these commands from the repository root. The actual Codex install path is ${CODEX_HOME:-$HOME/.codex}/skills.
Codex:
CODEX_SKILLS_DIR="${CODEX_HOME:-$HOME/.codex}/skills" && mkdir -p "$CODEX_SKILLS_DIR" && cp -R dist/codex/skills/. "$CODEX_SKILLS_DIR/"
Claude Code:
CLAUDE_SKILLS_DIR="${CLAUDE_HOME:-$HOME/.claude}/skills" && mkdir -p "$CLAUDE_SKILLS_DIR" && cp -R dist/codex/skills/. "$CLAUDE_SKILLS_DIR/"
You can also install from the release artifact:
mkdir -p "${CODEX_HOME:-$HOME/.codex}" && tar -xzf release/research-architect-codex-skills.tar.gz -C "${CODEX_HOME:-$HOME/.codex}"
After installation, call the main skill as:
research-architect
Branch skills can also be called directly when only one stage is needed.
src/ is the single source of truth:
src/skills/ stores skill definitions;src/references/ stores shared reference material;src/templates/ stores output templates;src/scripts/ stores validation, indexing, and release-building scripts.Reference-adaptation fixtures live in evals/reference_adaptation/. Validate the fixture contracts with:
python src/scripts/check_reference_adaptation_fixtures.py
Score generated artifact bundles with:
python src/scripts/run_reference_adaptation_eval.py \
--generated-root eval_runs/reference_adaptation/generated \
--output-dir eval_runs/reference_adaptation/latest
The deterministic harness scores extraction coverage, adaptation validity, design-family fit, actionability, claim control, and copying-risk control. A fixture passes at 85/100 or higher with no critical failures.
External papers are used to learn structure, problem framing, method logic, experiment sequencing, evidence standards, and writing organization. User-provided data, results, analyses, and evidence remain authoritative. Research Architect calibrates claim language to the strength of the available evidence.
This project is released under the MIT License. See LICENSE.
Future versions will expand executable skill evals, validation coverage, and skill descriptions so Codex and Claude route to the right branch skill more reliably. See CHANGELOG.md.
Release v0.3.1 is now available. This update adds a deterministic reference-adaptation eval harness for scoring generated artifact bundles against the four fixture contracts, with unit coverage, documented pass thresholds, and rebuilt Codex release artifacts.
Release v0.3.0 made target reference papers first-class workflow inputs and added exemplar logic profiles, adaptation plans, design-family routing, and field-general study/evidence artifacts.