neuroscience-foundations
Apply biological brain patterns to agent design
npx skills add majiayu000/claude-skill-registry --skill brain-andreibesleaga-gabbe-4 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Neuroscience Foundations for Agents ## Description This skill provides a foundational understanding of how to apply biological brain patterns to agentic software design. It covers Cortico-Thalamic loops, Basal Ganglia gating, and Neural Darwinism. ## 1. Cortico-Thalamic Loops (The Feedback/Feedforward Engine) In the human brain, the **Thalamus** acts as a central relay station, and the **Cortex** processes information. The loop between them is essential for consciousness and attention. ### Implementation Pattern: The "Thalamic Gateway" Instead of direct function calls between modules, route critical signals through a central "Thalamus" mediator that can: 1. **Filter**: Only pass high-priority signals (Attention). 2. **Breadcast**: Send important signals to multiple cortical areas (Modules) simultaneously. 3. **Loop**: Allow the Cortex (Agent Logic) to send feedback to the Thalamus to adjust what it pays attention to next. **Code Metaphor:** ```python class Thalamus: def process_signal(self, signal): priority = self.calculate_salience(signal) if priority > THRESHOLD: self.broadcast_to_cortex(signal) ``` ## 2. Basal Ganglia Action Selection (The Gating Mechanism) The Basal Ganglia
- Description
- 1. Cortico-Thalamic Loops (The Feedback/Feedforward Engine)
- Implementation Pattern: The "Thalamic Gateway"
- 2. Basal Ganglia Action Selection (The Gating Mechanism)
- Implementation Pattern: The "Gited Action Selector"
- 3. Neural Darwinism (Selection of Somatic Groups)
- Implementation Pattern: Evolutionary Prompts
- References
What does the neuroscience-foundations skill do?
Apply biological brain patterns to agent design
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill brain-andreibesleaga-gabbe-4 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
