TO

tooluniverse-neuroscience

Research assistant for neuroscience. Looks up literature and biological data to verify facts regarding neural circuits and genetics.

Install

mkdir -p .claude/skills/tooluniverse-neuroscience && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11213" && unzip -o skill.zip -d .claude/skills/tooluniverse-neuroscience && rm skill.zip

Installs to .claude/skills/tooluniverse-neuroscience

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Neuroscience research workflows: neuroanatomy, neural circuits, neurotransmitter biology, neurological/psychiatric disease genetics, neural-protein function. Uses Allen Brain Atlas, WormBase (C. elegans connectome), UniProt for neural proteins, PubMed for primary literature. Use for brain-region biology, neural development, neurodegeneration mechanisms (Alzheimer's, Parkinson's, ALS), and synaptic-protein characterization.
426 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Advanced

Key capabilities

  • Analyze neural circuit connectivity
  • Model neuronal firing rates
  • Validate psychiatric disease genetics
  • Characterize synaptic proteins

How it works

It integrates data from neuroscience databases and applies computational models to verify research claims against literature.

Inputs & outputs

You give it
Neuroscience research question
You get back
Literature-verified analysis or computational model

When to use tooluniverse-neuroscience

  • Research neural circuit connectivity
  • Analyze synaptic-protein function
  • Validate psychiatric disease genetics
  • Model neuronal firing rates

About this skill

Neuroscience Research Skill

KEY PRINCIPLES: LOOK UP, DON'T GUESS — use PubMed/EuropePMC for neuroanatomy facts, WormBase for C. elegans connectome data, UniProt for neural protein properties. Verify claims with literature before answering. Use Python computation for quantitative neuroscience problems.


LOOK UP, DON'T GUESS

When uncertain about any neuroscience fact — brain region function, neural circuit connectivity, ion channel properties, neurotransmitter receptor subtypes — SEARCH databases first. A PubMed-verified answer is always more reliable than reasoning from memory. This is especially critical for neuroanatomy, where structures have precise boundaries and connectivity patterns that are easy to confuse.


1. Computational Neuroscience Reasoning

Rate-Based Models

  • Firing rate of a neuron: r = f(I - theta), where I = total synaptic input, theta = threshold, f = transfer function (sigmoid, ReLU, or threshold-linear)
  • Balanced excitation/inhibition: in cortical networks, excitatory and inhibitory inputs are large but nearly cancel, leaving a small net drive
  • Population rate equations: tau * dr/dt = -r + f(W*r + I_ext), where W = connectivity matrix
  • Steady-state analysis: set dr/dt = 0, solve r = f(W*r + I_ext) — use fixed-point iteration or Newton's method

Integrate-and-Fire Neurons

  • Membrane voltage dynamics: tau_m * dV/dt = -(V - V_rest) + R_m * I(t)
  • When V reaches threshold V_th: emit spike, reset to V_reset, enter refractory period tau_ref
  • Firing rate for constant input: r = 1 / (tau_ref + tau_m * ln((R_mI - V_reset) / (R_mI - V_th))) [valid when R_m*I > V_th]
  • For sub-threshold input: neuron requires fluctuations (noise) to fire — noise-driven regime
  • Key variants: LIF (leaky), EIF (exponential), AdEx (adaptive exponential), Izhikevich (2D with recovery variable)

Synaptic Plasticity

  • STDP (Spike-Timing-Dependent Plasticity):
    • Pre-before-post (positive dt): LTP (potentiation) — synapse strengthened
    • Post-before-pre (negative dt): LTD (depression) — synapse weakened
    • Window shape: typically exponential decay with tau_+ ~ 20ms (LTP) and tau_- ~ 20ms (LTD)
  • Hebbian learning: "cells that fire together wire together" — correlation-based; unstable without normalization
  • BCM theory: sliding threshold — low postsynaptic activity → LTD, high → LTP; threshold slides with average activity
  • Homeostatic plasticity: synaptic scaling adjusts all synapses multiplicatively to maintain target firing rate

Network Dynamics

  • Mean-field theory: replace individual neurons with population-averaged firing rates; self-consistency equation r = f(Jrsqrt(K) + I_ext) where K = number of connections
  • Balanced networks: E/I balance emerges when sqrt(K)*J ~ O(1); firing rate ~ (mu - theta) / tau where mu = mean input, theta = threshold
  • Chaos transition: in random networks, chaos onset at g_c = 1 (gain parameter); above g_c, autocorrelation decays, Lyapunov exponent > 0
  • Oscillations: gamma (30-80 Hz) from E-I loops (PING model), theta (4-8 Hz) from slower inhibition or hippocampal circuits, alpha (8-12 Hz) from thalamo-cortical loops

Quantitative Problem-Solving Strategy

  1. Identify the model type (single neuron, network, plasticity rule)
  2. Write down the governing equations with all parameters
  3. ALWAYS use Python for multi-step calculations — do not attempt mental arithmetic
  4. Check units: voltages in mV, currents in nA or pA, time constants in ms, rates in Hz
  5. Sanity check: cortical firing rates are typically 1-20 Hz; tau_m ~ 10-20 ms; V_th ~ -50 mV

2. Neuroanatomy Reasoning

CRITICAL: Look Up Neuroanatomy

Brain region functions, boundaries, and connectivity are precise anatomical facts. When asked about specific regions, nuclei, or tracts:

  1. Search PubMed or EuropePMC with specific anatomical terms
  2. For connectivity: search "[region A] projection [region B]" or "[region] afferents efferents"
  3. For function: search "[region] lesion" or "[region] function review"

Human Brain — Major Divisions

  • Cerebral cortex: frontal (motor, executive), parietal (somatosensory, spatial), temporal (auditory, memory), occipital (visual)
  • Basal ganglia: caudate + putamen (striatum) → GPi/SNr (output) → thalamus; direct pathway (facilitate movement) vs indirect pathway (suppress movement); dopamine from SNc modulates both
  • Cerebellum: coordination, timing, motor learning; receives mossy fibers (pontine nuclei) and climbing fibers (inferior olive); Purkinje cells are sole output of cerebellar cortex
  • Brainstem: midbrain (superior/inferior colliculi, substantia nigra, red nucleus), pons (pontine nuclei, respiratory centers), medulla (cardiovascular/respiratory centers, cranial nerve nuclei)
  • Thalamus: relay station — every sensory modality (except olfaction) synapses here before cortex; also receives cortical feedback (corticothalamic loops)
  • Hippocampus: declarative memory formation; trisynaptic circuit: EC → DG → CA3 → CA1 → EC; place cells, grid cells

Model Organism Neuroanatomy

  • C. elegans: 302 neurons, complete connectome mapped; use WormBase_get_gene for gene expression, neuron identity, connectivity data
  • Drosophila: mushroom body (learning/memory), antennal lobe (olfaction), central complex (navigation); ~100,000 neurons; FlyWire connectome
  • Zebrafish: transparent larvae for whole-brain imaging; Mauthner cells (escape response); use Alliance_search_genes for orthologs
  • Mouse: Allen Brain Atlas for gene expression; use PubMed for circuit tracing studies (rabies virus, optogenetics)

Reasoning Pattern for "Where in the Brain?" Questions

  1. Identify the function asked about (motor, sensory, memory, emotion, language)
  2. Map to candidate regions from general knowledge
  3. VERIFY with PubMed search: "[function] brain region fMRI" or "[function] lesion study"
  4. Check for lateralization (language → usually left hemisphere)
  5. Distinguish cortical vs subcortical involvement

3. Clinical Neurology Reasoning

Cranial Nerve Examination

  • Map symptom → nerve → nucleus → lesion site:
    • CN I (olfactory): anosmia — cribriform plate fracture, frontal lobe lesion
    • CN II (optic): visual field defects — optic nerve, chiasm, tract, radiation, cortex
    • CN III (oculomotor): ptosis, "down and out" eye — midbrain, posterior communicating artery aneurysm
    • CN IV (trochlear): difficulty looking down-and-in — dorsal midbrain
    • CN V (trigeminal): facial sensation loss, jaw deviation — pons, Meckel's cave
    • CN VI (abducens): medial strabismus — pons (long intracranial course, vulnerable to raised ICP)
    • CN VII (facial): upper vs lower face weakness distinguishes UMN (forehead spared) vs LMN (all ipsilateral)
    • CN VIII (vestibulocochlear): hearing loss, vertigo — peripheral vs central distinction critical
    • CN IX-X (glossopharyngeal, vagus): dysphagia, uvula deviation
    • CN XI (accessory): SCM and trapezius weakness
    • CN XII (hypoglossal): tongue deviation toward lesion side

Stroke Localization

  • Anterior circulation (ICA, MCA, ACA): MCA → contralateral face/arm > leg weakness, aphasia (dominant), neglect (non-dominant); ACA → contralateral leg > arm weakness
  • Posterior circulation (vertebrobasilar): brainstem signs (cranial nerve palsies + crossed signs), cerebellar ataxia, visual field defects
  • Cortical vs subcortical: cortical → higher function deficits (aphasia, neglect, agnosia); subcortical (lacunar) → pure motor/sensory without cortical signs
  • Key rule: crossed signs (ipsilateral face + contralateral body) = brainstem lesion

Upper vs Lower Motor Neuron

FeatureUMN LesionLMN Lesion
ToneIncreased (spastic)Decreased (flaccid)
ReflexesHyperreflexia, Babinski+Hyporeflexia/areflexia
AtrophyMinimal (disuse)Prominent, early
FasciculationsAbsentPresent
DistributionPyramidal patternSpecific nerve/root

Neurodegenerative Disease Patterns

  • Alzheimer's: amyloid plaques + tau tangles; hippocampus → entorhinal cortex → neocortex; episodic memory loss first
  • Parkinson's: alpha-synuclein in substantia nigra pars compacta; dopamine depletion → bradykinesia, rigidity, resting tremor; search UniProt_search for SNCA, LRRK2, PARK7
  • ALS: upper AND lower motor neuron signs; TDP-43 pathology; SOD1, C9orf72 genes
  • Huntington's: CAG repeat expansion in HTT; caudate atrophy; chorea, psychiatric symptoms, cognitive decline

Reasoning Pattern for Clinical Neuro Questions

  1. Localize the lesion: what neurological structure explains ALL the findings?
  2. Single lesion principle: prefer one lesion that explains everything over multiple lesions
  3. Determine mechanism: vascular (sudden onset), inflammatory (subacute), degenerative (gradual), neoplastic (progressive with mass effect)
  4. VERIFY with literature if uncertain about anatomy or presentation

4. Neurophysiology Reasoning

Action Potential

  • Resting potential ~ -70 mV (K+ equilibrium ≈ -90 mV, Na+ ≈ +60 mV, weighted by conductances)
  • Nernst equation: E_ion = (RT/zF) * ln([ion]_out / [ion]_in) ≈ 61.5/z * log10([out]/[in]) mV at 37C
  • Goldman equation for resting potential: accounts for relative permeabilities of Na+, K+, Cl-
  • AP phases: depolarization (Na+ channels open) → overshoot → repolarization (K+ channels open, Na+ inactivate) → hyperpolarization (K+ channels slow to close)
  • Refractory periods: absolute (no stimulus can fire) ~ 1 ms; relative (stronger stimulus needed) ~ 2-4 ms

Synaptic Transmission

  • Chemical synapse: AP → Ca2+ entry (N-type, P/Q-type channels) → vesicle fusion (SNARE complex) → neurotransmitter release → postsynaptic receptor binding
  • Excitatory: glutamate → AMPA (fast, Na+/K+), NMDA (slow, Ca2+, voltage-dependent Mg2+ block)
  • Inhibitory: GABA → GABA_A (fast, Cl-), GABA_B (slow, K+, G-protein coupled); glycine

Content truncated.

When not to use it

  • Non-neuroscience research
  • When data is not literature-verified

Prerequisites

PythonAccess to PubMed/UniProt

Limitations

  • Requires PubMed/UniProt verification
  • Computational models require precise parameter input

How it compares

It mandates literature verification for anatomical facts, preventing the common errors found in generic AI research.

Compared to similar skills

tooluniverse-neuroscience side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
tooluniverse-neuroscience (this skill)02moNo flagsAdvanced
literature-review5592moReviewAdvanced
openalex-database487moReviewIntermediate
scientific-critical-thinking187moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

More by mims-harvard

View all by mims-harvard

tooluniverse-drug-research

mims-harvard

Generates comprehensive drug research reports with compound disambiguation, evidence grading, and mandatory completeness sections. Covers identity, chemistry, pharmacology, targets, clinical trials, safety, pharmacogenomics, and ADMET properties. Use when users ask about drugs, medications, therapeutics, or need drug profiling, safety assessment, or clinical development research.

323

tooluniverse-pharmacovigilance

mims-harvard

Analyze drug safety signals from FDA adverse event reports, label warnings, and pharmacogenomic data. Calculates disproportionality measures (PRR, ROR), identifies serious adverse events, assesses pharmacogenomic risk variants. Use when asked about drug safety, adverse events, post-market surveillance, or risk-benefit assessment.

323

tooluniverse-precision-oncology

mims-harvard

Provide actionable treatment recommendations for cancer patients based on molecular profile. Interprets tumor mutations, identifies FDA-approved therapies, finds resistance mechanisms, matches clinical trials. Use when oncologist asks about treatment options for specific mutations (EGFR, KRAS, BRAF, etc.), therapy resistance, or clinical trial eligibility.

321

tooluniverse-expression-data-retrieval

mims-harvard

Retrieves gene expression and omics datasets from ArrayExpress and BioStudies with gene disambiguation, experiment quality assessment, and structured reports. Creates comprehensive dataset profiles with metadata, sample information, and download links. Use when users need expression data, omics datasets, or mention ArrayExpress (E-MTAB, E-GEOD) or BioStudies (S-BSST) accessions.

217

tooluniverse-literature-deep-research

mims-harvard

Conduct comprehensive literature research with target disambiguation, evidence grading, and structured theme extraction. Creates a detailed report with mandatory completeness checklist, biological model synthesis, and testable hypotheses. For biological targets, resolves official IDs (Ensembl/UniProt), synonyms, naming collisions, and gathers expression/pathway context before literature search. Default deliverable is a report file; for single factoid questions, uses a fast verification mode and may include an inline answer. Use when users need thorough literature reviews, target profiles, or to verify specific claims from the literature.

213

tooluniverse-target-research

mims-harvard

Gather comprehensive biological target intelligence from 9 parallel research paths covering protein info, structure, interactions, pathways, expression, variants, drug interactions, and literature. Features collision-aware searches, evidence grading (T1-T4), explicit Open Targets coverage, and mandatory completeness auditing. Use when users ask about drug targets, proteins, genes, or need target validation, druggability assessment, or comprehensive target profiling.

25

You might also like

literature-review

K-Dense-AI

Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature searches across biomedical, scientific, and technical domains. Creates professionally formatted markdown documents and PDFs with verified citations in multiple citation styles (APA, Nature, Vancouver, etc.).

5591,298

openalex-database

davila7

Query and analyze scholarly literature using the OpenAlex database. This skill should be used when searching for academic papers, analyzing research trends, finding works by authors or institutions, tracking citations, discovering open access publications, or conducting bibliometric analysis across 240M+ scholarly works. Use for literature searches, research output analysis, citation analysis, and academic database queries.

48202

scientific-critical-thinking

davila7

Evaluate research rigor. Assess methodology, experimental design, statistical validity, biases, confounding, evidence quality (GRADE, Cochrane ROB), for critical analysis of scientific claims.

1888

biorxiv-database

lifangda

Efficient database search tool for bioRxiv preprint server. Use this skill when searching for life sciences preprints by keywords, authors, date ranges, or categories, retrieving paper metadata, downloading PDFs, or conducting literature reviews.

780

physics-validator

omriwen

Validate optical physics parameters including Fresnel numbers, diffraction regimes, and resolution limits. This skill should be used when configuring Telescope, Microscope, or Camera instruments to ensure physically realistic parameters.

664

fda-database

davila7

Query openFDA API for drugs, devices, adverse events, recalls, regulatory submissions (510k, PMA), substance identification (UNII), for FDA regulatory data analysis and safety research.

539

Search skills

Search the agent skills registry