File contents What I do
Study nervous system structure and function
Investigate neuronal communication
Analyze neural development
Research synaptic transmission
Study brain circuits and behavior
Investigate neural disorders
When to use me
When studying neuron structure and function
When analyzing synaptic transmission
When investigating neural development
When researching neurological disorders
When studying brain-behavior relationships
When working with neural tissues
Key Concepts
Neuron Structure
Soma : Cell body, contains nucleus
Dendrites : Receive signals
Axon : Conducts signals away
Axon terminals : Release neurotransmitters
Myelin : Insulation, saltatory conduction
Action Potential
# Simplified action potential model
def action_potential(V, thresholds):
"""
Model neuron firing.
V: Membrane potential (mV)
thresholds: Resting ~-70mV, firing ~-55mV
"""
if V < -55:
return 'resting'
elif -55 <= V < 30:
return 'depolarization'
elif 30 >= V >= -70:
return 'repolarization'
else:
return 'refractory'
# Ion channels involved
channels = {
'depolarization': 'Na+ channels open',
'repolarization': 'K+ channels open',
'refractory': 'Na+ channels inactivated'
}
Synaptic Transmission
Action potential arrives at terminal
Ca²⁺ influx triggers vesicle fusion
Neurotransmitter release into synapse
Binding to postsynaptic receptors
Ion channel opening/closing
Signal termination (reuptake, degradation)
Neurotransmitters
Excitatory : Glutamate, acetylcholine
Inhibitory : GABA, glycine
Modulatory : Dopamine, serotonin, norepinephrine
Neuropeptides : Substance P, endorphins
1 --- 2 name: neurobiology 3 description: Nervous system biology 4 license: MIT 5 --- 6 7 ## What I do 8 9 - Study nervous system structure and function 10 - Investigate neuronal communication 11 - Analyze neural development 12 - Research synaptic transmission 13 - Study brain circuits and behavior 14 - Investigate neural disorders 15 16 ## When to use me 17 18 - When studying neuron structure and function 19 - When analyzing synaptic transmission 20 - When investigating neural development 21 - When researching neurological disorders 22 - When studying brain-behavior relationships 23 - When working with neural tissues 24 25 ## Key Concepts 26 27 ### Neuron Structure 28 29 - **Soma**: Cell body, contains nucleus 30 - **Dendrites**: Receive signals 31 - **Axon**: Conducts signals away 32 - **Axon terminals**: Release neurotransmitters 33 - **Myelin**: Insulation, saltatory conduction 34 35 ### Action Potential 36 37 ```python 38 # Simplified action potential model 39 def action_potential(V, thresholds): 40 """ 41 Model neuron firing. 42 V: Membrane potential (mV) 43 thresholds: Resting ~-70mV, firing ~-55mV 44 """ 45 if V < -55: 46 return 'resting' 47 elif -55 <= V < 30: 48 return 'depolarization' 49 elif 30 >= V >= -70: 50 return 'repolarization' 51 else: 52 return 'refractory' 53 54 # Ion channels involved 55 channels = { 56 'depolarization': 'Na+ channels open', 57 'repolarization': 'K+ channels open', 58 'refractory': 'Na+ channels inactivated' 59 } 60 ``` 61 62 ### Synaptic Transmission 63 64 1. Action potential arrives at terminal 65 2. Ca²⁺ influx triggers vesicle fusion 66 3. Neurotransmitter release into synapse 67 4. Binding to postsynaptic receptors 68 5. Ion channel opening/closing 69 6. Signal termination (reuptake, degradation) 70 71 ### Neurotransmitters 72 73 - **Excitatory**: Glutamate, acetylcholine 74 - **Inhibitory**: GABA, glycine 75 - **Modulatory**: Dopamine, serotonin, norepinephrine 76 - **Neuropeptides**: Substance P, endorphins
ffsshhttiikk/opencode-agents-skills/tree/main/neurobiology commit 2531f48805
Frequently asked questions How do I install the Neurobiology skill? Run npx skillmds@latest add ffsshhttiikk/neurobiology in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Neurobiology skill do? Nervous system biology It is listed under Coding & Dev Tools on SkillMD.
Is Neurobiology safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Neurobiology? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Neurobiology free to use? Yes. Installing skills from SkillMD is free. This skill is licensed under MIT.
Who published Neurobiology? ffsshhttiikk (@ffsshhttiikk) published this skill. Their other Agent Skills are listed on their SkillMD profile.