agentsclimarketplace

Academic research

Skill fabioc-aloha/Alex_Skill_Mall/plugins/academic-research/academic-research

284 curated plugins for AI assistants across 16 categories: security, Azure, documentation, code quality, cloud infrastructure, and more. Works with GitHub Copilot. Drop into .github/skills/local/ and go.

Install
npx -y skills add fabioc-aloha/Alex_Skill_Mall --skill academic-research

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Research project scaffolding, thesis/dissertation writing, literature reviews, publication workflows, and the AI assistant-assisted academic workflows

SKILL.md

8.6 KB, as published. Nobody here has run it

Academic Research

Complete research lifecycle: project setup, literature review, writing, publication, and defense.


Project Structure

research-project/
├── .github/
│   └── copilot-instructions.md    # Research context for the AI assistant
├── docs/
│   ├── RESEARCH-PLAN.md           # Questions, timeline, milestones
│   ├── METHODOLOGY.md             # Design decisions
│   └── DECISION-LOG.md            # Key decisions with rationale
├── data/
│   ├── raw/                       # Untouched source data
│   ├── processed/                 # Cleaned/transformed
│   └── DATA-DICTIONARY.md         # Variable definitions
├── analysis/
│   ├── scripts/                   # Analysis code
│   └── outputs/                   # Figures, tables
├── writing/
│   ├── drafts/                    # Work in progress
│   └── submissions/               # Submitted versions
├── references/
│   ├── LITERATURE-MATRIX.md       # Systematic tracking
│   └── notes/                     # Reading notes
└── README.md

Quick Setup

mkdir -p .github docs data/{raw,processed} analysis/{scripts,outputs} writing/{drafts,submissions} references/notes
touch docs/RESEARCH-PLAN.md docs/METHODOLOGY.md references/LITERATURE-MATRIX.md .github/copilot-instructions.md

Research Project Types

TypeDurationOutputReview
Master's Thesis1-2 years80-150 pagesCommittee defense
PhD Dissertation3-7 years150-300+ pagesCommittee + external
Journal Article3-12 months5,000-10,000 wordsPeer review
Conference Paper2-6 months4,000-8,000 wordsPeer review

Research Question Development

PICO Framework

  • Population — Who is being studied?
  • Intervention — What is being tested?
  • Comparison — Against what?
  • Outcome — What is measured?

FINER Criteria

CriterionQuestion
FeasibleCan it be done with available resources?
InterestingDoes anyone care?
NovelDoes it add new knowledge?
EthicalCan it be done ethically?
RelevantDoes it matter to the field?

Literature Review

Synthesis Approaches

ApproachWhen to Use
ThematicOrganize by concepts across sources
ChronologicalShow field evolution
MethodologicalCompare research approaches
Concept MatrixMap concepts to sources in table

Gap Types

  • Empirical — No studies in specific context
  • Theoretical — Theory not applied to domain
  • Methodological — New methods could reveal insights
  • Population — Understudied demographic

Literature Matrix Template

| Citation | Year | Method | Findings | Gaps | Relevance |
|----------|------|--------|----------|------|-----------|
| Author1 et al. | 2024 | RCT | X | Y | ⭐⭐⭐ |

Methodology

Qualitative Methods

MethodBest ForSample
InterviewsDeep understanding10-30
Focus GroupsGroup dynamics4-8/group
Case StudyDetailed exploration1-10
Grounded TheoryTheory generationUntil saturation

Quantitative Methods

MethodBest ForSample
SurveyBreadth, generalization100-1000+
ExperimentCausationPower analysis
Quasi-experimentNo randomizationVaries

Mixed Methods

  • Convergent — Qual + quant simultaneously
  • Explanatory Sequential — Quant → Qual
  • Exploratory Sequential — Qual → Quant

Thesis/Dissertation Structure

  1. Introduction — Problem, significance, research questions
  2. Literature Review — Framework, prior work, gaps
  3. Methodology — Design, collection, analysis
  4. Results — Data without interpretation
  5. Discussion — Interpret, connect to literature
  6. Conclusion — Summary, contributions, limitations

Discipline Variations

DisciplineVariation
SciencesMethods-heavy
HumanitiesMultiple thematic chapters
Social SciencesSeparate theoretical framework
EngineeringImplementation + Evaluation chapters

Academic Writing

Hedging Language

StrongHedged
"This proves...""This suggests..."
"Always causes""May contribute to"
"Definitely shows""Evidence indicates"

CARS Model (Introductions)

  1. Establish territory — topic importance
  2. Establish niche — gap in knowledge
  3. Occupy niche — your contribution

Citation Density

SectionDensity
AbstractNone
IntroductionMedium
Related WorkHigh
MethodsLow-Medium
ResultsLow
DiscussionMedium

Publication Workflow

Venue Selection

Research TypeVenue
User study with metricsACM CHI
Business implicationsHarvard Business Review
Cognitive theoryCognitive Systems Research
Philosophical AI argumentMinds & Machines

5-Phase Process

PhaseDurationFocus
Preparation1-2 weeksLiterature, outline, figures
Rough Draft1-2 weeksWrite without editing
Revision1-2 weeksStructure → Section → Paragraph → Sentence
Feedback2-4 weeksAdvisor, peers
Polish1 weekFormat, citations, submit

Responding to Reviews

## Response to Reviewer 1

### R1.1: "[Concern]"

We appreciate this observation. [How addressed].

Changes: Section X, paragraph Y: [new text]

Committee Navigation

Defense Preparation

  1. Anticipate likely questions
  2. Prepare 20-30 minute presentation
  3. Know your limitations
  4. Have backup slides
  5. Practice with friendly audience

Common Concerns

ConcernAddress With
"Why this topic?"Strong motivation
"What's your contribution?"Explicit list
"How is this valid?"Robust methodology
"What about X?"Scope, future work

Citation Management

StyleDiscipline
APA 7Psychology, social sciences
MLA 9Humanities
ChicagoHistory
IEEEEngineering, CS
VancouverMedicine

Refactoring Existing Projects

Audit Checklist

  • Has .github/copilot-instructions.md
  • Data separated: raw vs processed
  • Research questions documented
  • Literature systematically tracked
  • Methodology decisions recorded

Migration Pattern

git mv old-data.csv data/raw/
git mv cleaned.csv data/processed/
git mv draft.docx writing/drafts/paper-v1.docx

File Templates

RESEARCH-PLAN.md

# Research Plan: [Title]

## Research Questions
1. Primary: [Main question]
2. Secondary: [Supporting questions]

## Timeline
| Phase | Duration | Deliverable |
|-------|----------|-------------|
| Literature | Weeks 1-4 | Matrix complete |
| Collection | Weeks 5-12 | Raw data |
| Analysis | Weeks 13-16 | Results |
| Writing | Weeks 17-20 | Draft |

copilot-instructions.md (Research)

# [Project] - Research Context

## Current Phase
- [x] Literature Review
- [ ] Data Collection

## the AI assistant Guidance
- Add literature to references/LITERATURE-MATRIX.md
- Log decisions in docs/DECISION-LOG.md
- Citation style: APA 7

Pre-Submission Checklist

  • Abstract stands alone
  • Contributions stated explicitly
  • All claims supported
  • Limitations acknowledged
  • References complete
  • Word limit respected
  • Anonymized if required

Tools

ToolPurpose
ZoteroReference management
OverleafLaTeX collaboration
Connected PapersLiterature discovery
PandocMarkdown to Word/PDF

Related Skills

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.