Agent Skillsaiming-lab/AutoResearchClaw › stat-research-orchestrator

stat-research-orchestrator

GitHub

协调统计研究全流程,从问题形式化、方法提出、理论分析到实验评估与结果综合。通过多Agent协作确保研究严谨性,最终产出审计报告。

external/agents/stat_research_agent/skills/stat-research-orchestrator/SKILL.md aiming-lab/AutoResearchClaw

Trigger Scenarios

需要系统化的统计研究流程 执行包含理论与实验对比的学术研究任务

Install

npx skills add aiming-lab/AutoResearchClaw --skill stat-research-orchestrator -g -y
More Options

Non-standard path

npx skills add https://github.com/aiming-lab/AutoResearchClaw/tree/main/external/agents/stat_research_agent/skills/stat-research-orchestrator -g -y

Use without installing

npx skills use aiming-lab/AutoResearchClaw@stat-research-orchestrator

指定 Agent (Claude Code)

npx skills add aiming-lab/AutoResearchClaw --skill stat-research-orchestrator -a claude-code -g -y

安装 repo 全部 skill

npx skills add aiming-lab/AutoResearchClaw --all -g -y

预览 repo 内 skill

npx skills add aiming-lab/AutoResearchClaw --list

SKILL.md

Frontmatter
{
    "name": "stat-research-orchestrator",
    "metadata": {
        "category": "domain",
        "priority": "1",
        "trigger-keywords": "statistics,statistical research,problem formulation,method proposal,theory,experiments,comparison,results",
        "applicable-stages": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,20"
    },
    "description": "Orchestrate a statistical research pipeline centered on formal problem formulation, method proposal, theoretical analysis, experimental evaluation, comparison, and final result synthesis.\n"
}

Statistical Research Orchestrator

Overview

Coordinates the full statistical research pipeline. This is not a code-first benchmark workflow. The pipeline begins with formal problem formulation and requires theory before final comparisons and conclusions.

Full Pipeline

Topic prompt / topic file / dataset description
  -> [stat-problem-formulator]   formal problem, notation, assumptions, targets
  -> [stat-method-proposer]      proposed method, baselines, diagnostics, ablations
  -> [stat-theory-analyzer]      theoretical properties, proof sketches, predictions
  -> [stat-experiment-designer]  experiments, code, metrics, manifest
  -> [stat-comparison-analyst]   method comparison, theory-vs-experiment check
  -> [stat-result-synthesizer]   final report, conclusions, limitations
  -> [stat-quality-auditor]      formulation/theory/evidence audit

Workflow

Step 0: Invoke stat-problem-formulator

Provide the topic source and any requirements. Wait for:

progress/<TOPIC_ID>/step0_problem_formulation.md

Read:

  • Formal data model
  • Target parameter or decision target
  • Assumptions
  • Hypotheses or claims
  • Evaluation criteria
  • Theory targets

Do not proceed if the target or assumptions are undefined.

Step 1: Invoke stat-method-proposer

Provide the problem formulation. Wait for:

progress/<TOPIC_ID>/step1_method_proposal.md

Read:

  • Proposed method
  • Baselines
  • Oracle references, if any
  • Ablations
  • Diagnostics
  • Implementation requirements

Step 2: Invoke stat-theory-analyzer

Provide the formulation and method proposal. Wait for:

progress/<TOPIC_ID>/step2_theory_analysis.md

Read:

  • Theoretical claims
  • Required assumptions
  • Proof sketches or derivations
  • Predicted empirical patterns
  • Limitations

Theory can be partial, but the report must honestly label what is proven, heuristic, or only experimentally supported.

Step 3: Invoke stat-experiment-designer

Provide formulation, method, and theory. Wait for:

progress/<TOPIC_ID>/step3_experimental_evaluation.md

Read:

  • Config path
  • Code paths
  • Metrics
  • Manifest
  • Raw results
  • Runtime deviations

Step 4: Invoke stat-comparison-analyst

Provide theory predictions and experiment outputs. Wait for:

progress/<TOPIC_ID>/step4_comparison.md

Read:

  • Comparison summary
  • Figures and tables
  • Claim verdicts
  • Theory-experiment agreements and disagreements

Step 5: Invoke stat-result-synthesizer

Provide all previous artifacts. Wait for:

progress/<TOPIC_ID>/step5_result_synthesis.md

Read:

  • Paper path
  • README path
  • Final claims
  • Limitations

Step 6: Invoke stat-quality-auditor

Audit the whole research chain:

  • Was the problem formulated formally?
  • Does the method address that formulation?
  • Is there theory or an explicit reason theory is limited?
  • Do experiments test theoretical predictions?
  • Are comparisons fair?
  • Are final conclusions supported?

Wait for:

progress/<TOPIC_ID>/step6_quality_audit.md

Progress File Specification

progress/<TOPIC_ID>/step0_problem_formulation.md

# Step 0: Problem Formulation
## Status: PASS / FAIL
## Topic ID: <TOPIC_ID>
## Research Question
...
## Formal Data Model
...
## Target / Estimand
...
## Assumptions
- ...
## Claims / Hypotheses
- ...
## Evaluation Criteria
- ...
## Theory Targets
- ...
## Blocking Ambiguities
- ...

progress/<TOPIC_ID>/step1_method_proposal.md

# Step 1: Method Proposal
## Status: PASS / FAIL
## Proposed Method
...
## Baselines
- ...
## Diagnostics
- ...
## Ablations
- ...
## Method-to-Claim Map
- ...

progress/<TOPIC_ID>/step2_theory_analysis.md

# Step 2: Theoretical Analysis
## Status: PASS / PARTIAL / FAIL
## Definitions
...
## Main Claims
- ...
## Proof Sketches
- ...
## Assumptions Required
- ...
## Predicted Empirical Patterns
- ...
## Limitations
- ...

progress/<TOPIC_ID>/step3_experimental_evaluation.md

# Step 3: Experimental Evaluation
## Status: PASS / FAIL
## Config
experiments/<TOPIC_ID>/config.yaml
## Code
- ...
## Experiments
- ...
## Metrics
experiments/<TOPIC_ID>/results/metrics.json
## Manifest
experiments/<TOPIC_ID>/results/run_manifest.json
## Warnings
- ...

progress/<TOPIC_ID>/step4_comparison.md

# Step 4: Comparison
## Status: PASS / FAIL
## Baseline Comparisons
- ...
## Ablation Findings
- ...
## Theory vs Experiment
- ...
## Claim Verdicts
experiments/<TOPIC_ID>/results/claim_verdicts.json

progress/<TOPIC_ID>/step5_result_synthesis.md

# Step 5: Result Synthesis
## Status: PASS / FAIL
## Paper
experiments/<TOPIC_ID>/report/paper.md
## README
experiments/<TOPIC_ID>/README.md
## Final Claims
- ...
## Limitations
- ...

progress/<TOPIC_ID>/step6_quality_audit.md

# Step 6: Quality Audit
## Status: PASS / WARN / FAIL
## Formulation Check
- ...
## Theory Check
- ...
## Experiment Check
- ...
## Comparison Check
- ...
## Blocking Issues
- ...

Key Conventions

  • Formulation is the gatekeeper. Do not write code before the target, assumptions, and evaluation criteria are explicit.
  • Theory is required as a pipeline stage. If no theorem is possible, write a clear heuristic or negative analysis and explain why.
  • Experiments should test theoretical predictions, not merely produce numbers.
  • Comparisons must include meaningful baselines or ablations.
  • Final results must connect formulation, method, theory, experiments, and comparison.

Version History

  • e2e23c9 Current 2026-07-25 07:47

Same Skill Collection

.claude/skills/a-evolve/SKILL.md
.claude/skills/biology-biopython/SKILL.md
.claude/skills/chemistry-rdkit/SKILL.md
.claude/skills/hypothesis-formulation/SKILL.md
.claude/skills/literature-search/SKILL.md
.claude/skills/researchclaw/SKILL.md
.claude/skills/scientific-visualization/SKILL.md
.claude/skills/scientific-writing/SKILL.md
.claude/skills/statistical-reporting/SKILL.md
external/agents/Biology-Agent/skills/fba-simulator/SKILL.md
external/agents/Biology-Agent/skills/flux-analyzer/SKILL.md
external/agents/Biology-Agent/skills/gsmm-builder/SKILL.md
external/agents/Biology-Agent/skills/gsmm-validator/SKILL.md
external/agents/Biology-Agent/skills/metabolic-study-planner/SKILL.md
external/agents/Biology-Agent/skills/mfa-pipeline-orchestrator/SKILL.md
external/agents/stat_research_agent/skills/stat-result-validator/SKILL.md
external/agents/stat_research_agent/skills/statistical-experimental-evaluation/SKILL.md
external/agents/stat_research_agent/skills/statistical-method-design/SKILL.md
external/agents/stat_research_agent/skills/statistical-problem-formulation/SKILL.md
external/agents/stat_research_agent/skills/statistical-theory-analysis/SKILL.md
researchclaw/skills/builtin/domain/biology-biopython/SKILL.md
researchclaw/skills/builtin/domain/chemistry-rdkit/SKILL.md
researchclaw/skills/builtin/domain/cv-classification/SKILL.md
researchclaw/skills/builtin/domain/cv-detection/SKILL.md
researchclaw/skills/builtin/domain/nlp-alignment/SKILL.md
researchclaw/skills/builtin/domain/nlp-pretraining/SKILL.md
researchclaw/skills/builtin/domain/quantum-qiskit/SKILL.md
researchclaw/skills/builtin/domain/rl-policy-optimization/SKILL.md
researchclaw/skills/builtin/experiment/experimental-design/SKILL.md
researchclaw/skills/builtin/experiment/hypothesis-formulation/SKILL.md
researchclaw/skills/builtin/experiment/literature-search/SKILL.md
researchclaw/skills/builtin/experiment/meta-analysis/SKILL.md
researchclaw/skills/builtin/experiment/scientific-visualization/SKILL.md
researchclaw/skills/builtin/experiment/scientific-writing/SKILL.md
researchclaw/skills/builtin/experiment/statistical-reporting/SKILL.md
researchclaw/skills/builtin/experiment/systematic-review/SKILL.md
researchclaw/skills/builtin/tooling/data-loading/SKILL.md
researchclaw/skills/builtin/tooling/distributed-training/SKILL.md
researchclaw/skills/builtin/tooling/mixed-precision/SKILL.md
researchclaw/skills/builtin/tooling/pytorch-training/SKILL.md

Metadata

Files
0
Version
be4ba47
Hash
5c76590a
Indexed
2026-07-25 07:47

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 07:15
浙ICP备14020137号-1 $mapa de visitantes$