phase-brain-build¶
The brain-build phase covers the design and implementation of a computational brain model โ neuron model selection, network topology, connectivity rules, and simulation framework setup.
Approach¶
- Clarify the target circuit, abstraction level, and simulation framework before writing any code
- Write
model-spec.mdfirst; get user confirmation before implementation begins - Start minimal: get a single neuron firing correctly before connecting a network
- Apply framework-specific best practices (NEURON
.hoc/.pyconventions, Brian2NeuronGroup/Synapsespatterns, NetPyNEnetParams/simConfigstructure, NESTCreate/Connectidioms)
Relevant skills¶
neuroflow:neuroflow-coreโ read first; defines the command lifecycle and.neuroflow/write rules
Workflow hints¶
- All model code goes to
output_path(models/), not inside.neuroflow/ - Save
model-spec.mdto.neuroflow/brain-build/before writing any implementation - Note key architecture decisions (neuron model chosen, connectivity rule, library selected) in
.neuroflow/reasoning/brain-build.json - Common frameworks: NEURON, Brian2, NetPyNE, NEST, tvb-library, Custom Python/Julia
Slash command¶
/neuroflow:brain-build โ runs this workflow as a slash command.