一键导入
vr-experiment-plan
Create a detailed experiment plan for a selected research idea. Define experiment variables, metrics, baselines, and datasets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a detailed experiment plan for a selected research idea. Define experiment variables, metrics, baselines, and datasets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyzes existing experiment results and designs/executes ablation experiments to verify the contribution of each component.
Skill for writing English text that reads as naturally human-authored, and for reviewing existing English text to detect and fix AI writing tells. Use this skill whenever the user asks to "write naturally", "remove AI tone", "make it sound human", "avoid AI tells", "de-AI", "humanize", "anti-AI writing", "sound less like ChatGPT", or any variation implying they want text free of detectable AI patterns. Also trigger when the user asks to review or edit text for AI-sounding patterns, or when they paste text and ask "does this sound like AI?" Even if the user simply says "write me a blog post" or "write an essay" without explicitly mentioning AI — if this skill is available, apply its principles by default to produce more natural prose.
Brainstorm research ideas and formulate research hypotheses. When a user presents a research topic or area of interest, explore related ideas.
Deep literature review with multi-stage search, citation graph traversal, and full-text analysis. Uses Semantic Scholar API, arXiv HTML reading, and snowball search to produce comprehensive research landscape analysis.
Analyzes experiment results and generates publication-quality figures for papers using matplotlib.
Critically reviews a written paper from the perspective of a top-venue reviewer, providing strengths/weaknesses analysis and improvement suggestions.
| name | vr-experiment-plan |
| description | Create a detailed experiment plan for a selected research idea. Define experiment variables, metrics, baselines, and datasets. |
| user-invocable | true |
| argument-hint | ["idea-description or brainstorm-file-path"] |
Develop a selected research idea into a detailed experiment plan.
$ARGUMENTS - Research idea description or brainstorm file path
Read .claude/skills/_shared/paper-search-protocol.md and execute a Level 1 search
focused on: "standard baselines, commonly used datasets, and evaluation metrics for
[research area]". Validate that the chosen baselines are current and no stronger recent
baseline is being missed.
Generate the following two files:
experiments/experiment_YYYYMMDD_<name>/plan.md# Experiment Plan: [Experiment Name]
Date: [YYYY-MM-DD]
## Research Question
[Research question]
## Hypothesis
[Hypothesis]
## Variables
### Independent Variables
- [Variable name]: [Description] (Values: [v1, v2, ...])
### Dependent Variables
- [Metric name]: [Description] (Measurement method: [Description])
### Control Variables
- [Variable name]: [Fixed value]
## Experimental Conditions
| Condition | IV1 | IV2 | Description |
|-----------|-----|-----|-------------|
| baseline | ... | ... | ... |
| treatment | ... | ... | ... |
## Metrics
### Primary
- [Metric]: [Formula/Description]
### Secondary
- [Metric]: [Formula/Description]
## Data Requirements
- [Dataset name]: [Source, size, purpose]
## Execution Plan
1. [Step]: [Description]
2. ...
## Expected Results
[Expected results for both cases: hypothesis confirmed and hypothesis rejected]
experiments/experiment_YYYYMMDD_<name>/config.yamlexperiment:
name: [Experiment name]
date: [YYYY-MM-DD]
description: [Description]
variables:
independent:
- name: [Variable name]
values: [v1, v2, ...]
dependent:
- name: [Metric name]
type: [float/int/categorical]
conditions:
- name: baseline
params: { ... }
- name: treatment
params: { ... }
execution:
seed: 42
n_trials: [Number of trials]
timeout_per_trial: [Seconds]
output:
results_dir: results/
format: [json/csv]
/vr-run-experiment <experiment-dir>