Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install hiyenwong-ai-collection-collection-skills-astrocyte-mediated-working-memorygit clone https://github.com/hiyenwong/ai_collection.gitcp ai_collection/SKILL.MD ~/.claude/skills/hiyenwong-ai-collection-collection-skills-astrocyte-mediated-working-memory/SKILL.md---
name: astrocyte-mediated-working-memory
category: neuroscience
description: Astrocyte-mediated working memory methodology - astrocytic Ca²⁺ signals support persistent activity and task performance via gliotransmitter-mediated recurrent excitation. Based on Nature (Jan 2026) optogenetic and chemogenetic experiments.
trigger: astrocyte working memory, calcium signaling, gliotransmission, persistent activity, optogenetic IP3R2, astrocyte-neuron interaction, working memory maintenance
---
# Astrocyte-Mediated Working Memory
## Overview
Methodology from Nature (January 2026) paper: "Astrocyte-mediated working memory" by Soma et al. Demonstrates that astrocytic Ca²⁺ signals support persistent activity and task performance through gliotransmitter-mediated recurrent excitation.
## Key Findings
- **Astrocytic Ca²⁺ signals** are necessary for working memory maintenance
- **IP₃R2 knockout** mice show impaired working memory that can be rescued by chemogenetic astrocyte activation
- **Gliotransmitter release** from astrocytes provides recurrent excitation to sustain persistent neural activity
- **Optogenetic inhibition** of astrocytes during delay period impairs task performance
- **Chemogenetic activation** can rescue working memory deficits
## Mechanism
1. During working memory encoding, neurons activate astrocytes via glutamate
2. Astrocytes respond with Ca²⁺ elevations through IP₃R2 receptors
3. Elevated Ca²⁺ triggers gliotransmitter release (glutamate, ATP, D-serine)
4. Gliotransmitters provide recurrent excitation to prefrontal neurons
5. This sustains persistent activity during the delay period
## Experimental Techniques
- **Optogenetics**: Astrocyte-specific inhibition using light-activated channels
- **Chemogenetics**: DREADD-mediated astrocyte activation (hM3Dq+CNO)
- **Two-photon Ca²⁺ imaging**: Astrocyte activity during behavioral tasks
- **IP₃R2 KO mice**: Genetic disruption of astrocyte Ca²⁺ signaling
- **Working memory tasks**: Delayed alternation, delayed match-to-sample
## Computational Implications
- Suggests **tripartite synapse** model for working memory circuits
- Astrocytes act as **slow integrators** with time constants of seconds
- Provides mechanism for **persistent activity** without requiring strong recurrent excitation
- **Energy-efficient** alternative to sustained neuronal firing
## Model Implementation Guide
```python
# Simplified astrocyte-neuron working memory model
class AstrocyteWorkingMemory:
def __init__(self):
# Astrocyte Ca²⁺ dynamics (slow timescale ~seconds)
self.ca_astrocyte = 0.0
self.tau_ca = 2.0 # seconds
# Gliotransmitter release threshold
self.gt_threshold = 0.5
# Recurrent excitation strength
self.recurrent_weight = 0.3
def update(self, neural_activity, dt):
# Ca²⁺ elevation driven by neural activity
dca = -self.ca_astrocyte / self.tau_ca + neural_activity * 0.1
self.ca_astrocyte += dca * dt
# Gliotransmitter release
if self.ca_astrocyte > self.gt_threshold:
return self.recurrent_weight * (self.ca_astrocyte - self.gt_threshold)
return 0.0
```
## Related Skills
- atp-hysteresis-tripartite-synapse
- astrocyte-resource-diffusion-neural-fields
- dual-timescale-memory-spiking-neuron-astrocyte-network-efficient
## Activation Keywords
- astrocyte-mediated-working-memory
- astrocyte mediated working
- astrocyte mediated working memory
## Tools Used
- `read` - 读取技能文档
- `write` - 创建输出
- `exec` - 执行相关命令
## Instructions for Agents
1. 理解技能的核心方法论
2. 根据用户问题提供针对性回答
3. 遵循最佳实践
## Examples
### Example 1: 基本查询
**User:** 请解释 Astrocyte Mediated Working Memory
**Agent:** Astrocyte Mediated Working Memory 是关于...