Agent skill · Design & Presentation

neuroscience-foundations

Apply biological brain patterns to agent design

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/brain-andreibesleaga-gabbe-4/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Description
  2. 1. Cortico-Thalamic Loops (The Feedback/Feedforward Engine)
  3. Implementation Pattern: The "Thalamic Gateway"
  4. 2. Basal Ganglia Action Selection (The Gating Mechanism)
  5. Implementation Pattern: The "Gited Action Selector"
  6. 3. Neural Darwinism (Selection of Somatic Groups)
  7. Implementation Pattern: Evolutionary Prompts
  8. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going