🎯

review-script

🎯Skill

from braselog/researchassistant

VibeIndex|
What it does

Reviews project progress, tracks milestones, and identifies potential issues or bottlenecks during research project development phases.

review-script

Installation

Install skill:
npx skills add https://github.com/braselog/researchassistant --skill review-script
1
AddedJan 27, 2026

Skill Details

SKILL.md

Overview

# Research Assistant Template

> A cloneable project template that transforms VS Code + GitHub Copilot into a domain-specific Research Assistant (RA) for computational researchers.

What Is This?

This is not a standalone tool or extension. It's a project template containing context files, slash commands, and configuration that guide VS Code's GitHub Copilot to behave as a specialized research assistant.

Clone this template for each new research project. The RA will:

  • Guide you through research phases (planning β†’ development β†’ analysis β†’ writing)
  • Help write manuscript sections from your actual code and data
  • Ensure reproducibility through proper documentation and DVC pipelines
  • Track tasks and action items from meetings
  • Conduct regular reviews to keep you on track

Quick Start

```bash

# Clone the template

git clone https://github.com/[username]/research-assistant-template my-new-project

cd my-new-project

# Remove template's git history

rm -rf .git

git init

# Open in VS Code

code .

```

Then open GitHub Copilot Chat and type:

```

/next

```

The RA will guide you through setup.

Core Philosophy

"Feed the Beast" - The RA is only as good as the context you give it.

This template provides:

  • Context files that tell the RA about your project and preferences
  • Slash commands that define specific workflows
  • Templates for manuscript sections, figure captions, and reviews
  • Phase gates that prevent skipping critical reproducibility steps

Key Features

🎯 Phase-Based Guidance

Projects progress through: SETUP β†’ PLANNING β†’ DEVELOPMENT β†’ ANALYSIS β†’ WRITING β†’ REVIEW

The RA tracks where you are and won't let you skip critical steps.

πŸ“ Manuscript Integration

Write your methods section as you code. Generate results from figures. Draft background from literature reviews.

πŸ” Literature Research

Deep research with verified citations. No hallucinated references.

πŸ“‹ Task Management

Extract action items from meeting transcripts. Route to tasks.md or GitHub Issues based on complexity.

πŸ“Š Regular Reviews

Weekly project check-ins. Monthly alignment checks. Quarterly mission reviews.

Commands

| Command | Purpose |

|---------|---------|

| /next | Start here. Get suggested next steps based on project state. |

| /deep_research [topic] | Literature search with verified citations |

| /write_background | Draft background section from literature |

| /write_methods | Generate methods from documented scripts |

| /write_results | Draft results from figures and captions |

| /review_script [path] | Check code documentation quality |

| /weekly_review | Weekly progress review |

| /monthly_review | Monthly alignment check |

| /quarterly_review | Quarterly mission review |

| /plan_week | Create focused weekly plan |

| /transcribe [file] | Transcribe meeting audio |

| /summarize_meeting [file] | Extract action items from transcript |

Directory Structure

```

β”œβ”€β”€ .ra/ # RA tool framework

β”‚ β”œβ”€β”€ copilot-instructions.md # RA brain and personality

β”‚ β”œβ”€β”€ commands/ # Slash command definitions

β”‚ └── tools/ # RA utilities (transcribe.py, etc.)

β”œβ”€β”€ .research/

β”‚ β”œβ”€β”€ project_telos.md # Your project's aims and state

β”‚ β”œβ”€β”€ phase_checklist.md # Progress tracking

β”‚ β”œβ”€β”€ literature/ # Research outputs with citations

β”‚ β”œβ”€β”€ meetings/ # Meeting recordings and transcripts

β”‚ β”‚ β”œβ”€β”€ audio/ # Audio files (.m4a, .mp3, .wav)

β”‚ β”‚ └── transcripts/ # Transcript markdown files

β”‚ └── logs/ # Activity and review logs

β”œβ”€β”€ data/

β”‚ β”œβ”€β”€ raw/ # Immutable source data

β”‚ β”œβ”€β”€ processed/ # Derived data

β”‚ └── .sensitive/ # Excluded from AI (IRB data, etc.)

β”œβ”€β”€ scripts/ # Your analy