wrap-up
π―Skillfrom braselog/researchassistant
Helps researchers systematically conclude a research project phase by documenting key findings, tracking completed tasks, and preparing for the next project milestone.
Installation
npx skills add https://github.com/braselog/researchassistant --skill wrap-upSkill Details
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
More from this repository5
Conducts comprehensive quarterly project mission reviews, assessing progress, alignment with research goals, and identifying strategic adjustments or potential pivots.
Conducts comprehensive monthly project alignment reviews, tracking progress, identifying potential roadblocks, and recommending strategic adjustments to keep research goals on track.
Extracts and organizes key discussion points, action items, and decisions from meeting transcripts or notes, automatically routing them to project task tracking systems.
Generates a structured weekly research project plan with tasks, milestones, and priorities based on the current project phase and ongoing work.
Reviews project progress, tracks milestones, and identifies potential issues or bottlenecks during research project development phases.