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-beta-synchrony-cognitive-ergonomicsgit clone https://github.com/hiyenwong/ai_collection.gitcp ai_collection/SKILL.MD ~/.claude/skills/hiyenwong-ai-collection-collection-skills-beta-synchrony-cognitive-ergonomics/SKILL.md---
name: beta-synchrony-cognitive-ergonomics
description: 'Beta同步认知人体工程学分析方法论。通过颞-顶叶Beta相位同步性解码工作记忆状态,评估BCI认知负荷。适用于脑机接口状态识别、环境照明优化、低维EEG系统设计。触发词:Beta同步、认知人体工程学、BCI、工作记忆、相位聚类、颞顶叶、cognitive ergonomics、beta synchrony、working memory。'
user-invocable: true
---
# Beta Synchrony Cognitive Ergonomics - Beta同步认知人体工程学
## 核心思想
通过颞-顶叶 Beta 相位同步性动态解码工作记忆状态,实现低维 EEG 系统的实时认知人体工程学评估。
**来源:** arXiv:2512.17775
**效用:** 1.0
---
## 方法论
### 1. 脑区选择
**三个关键低维区域:**
- **前额叶 (Prefrontal)** - 执行控制
- **颞叶 (Temporal)** - 信息整合
- **顶叶 (Parietal)** - 空间注意
**最佳组合:颞-顶叶**
- 相位聚类性能最优
- 跨任务分类能力强
- 低维实现成本低
### 2. Beta 相位同步性分析
**频带:** 12-30 Hz (Beta 波)
**核心指标:**
```python
def phase_synchrony(eeg_signal1, eeg_signal2):
"""
计算两个EEG信号之间的相位同步性
"""
# Hilbert变换提取瞬时相位
phase1 = np.angle(signal.hilbert(eeg_signal1))
phase2 = np.angle(signal.hilbert(eeg_signal2))
# 相位锁定值 (PLV)
plv = np.abs(np.mean(np.exp(1j * (phase1 - phase2))))
return plv
```
### 3. 非线性相位映射
**步骤:**
1. 计算 Beta 频带相位差
2. 构建动态相位图
3. 提取聚类特征
4. 识别记忆状态模式
**状态分类:**
- Recall 任务记忆状态
- Sequence 任务记忆状态
- 混合识别分析
### 4. 环境照明效应
**关键发现:**
- 照明增强环境优化颞-顶叶平衡
- 不同光照条件下相位聚类模式差异
- 最佳照明条件提升分类准确率
---
## 实现框架
```python
import numpy as np
from scipy import signal
from sklearn.svm import SVC
from sklearn.preprocessing import StandardScaler
class BetaSynchronyClassifier:
"""Beta同步性认知状态分类器"""
def __init__(self, fs=500):
self.fs = fs
self.beta_band = (12, 30)
self.scaler = StandardScaler()
self.clf = SVC(kernel='rbf')
def extract_beta_phase(self, eeg_data):
"""提取Beta频带相位"""
b, a = signal.butter(4,
[self.beta_band[0]/(self.fs/2), self.beta_band[1]/(self.fs/2)],
btype='band')
filtered = signal.filtfilt(b, a, eeg_data, axis=1)
phase = np.angle(signal.hilbert(filtered, axis=1))
return phase
def compute_temporal_parietal_plv(self, temporal_phase, parietal_phase):
"""计算颞-顶叶相位锁定值"""
phase_diff = temporal_phase - parietal_phase
plv = np.abs(np.mean(np.exp(1j * phase_diff)))
return plv
def extract_features(self, eeg_data):
"""提取特征向量"""
phase = self.extract_beta_phase(eeg_data)
# 颞叶和顶叶电极索引
temporal_idx = [0, 1, 2]
parietal_idx = [3, 4, 5]
features = []
for t_idx in temporal_idx:
for p_idx in parietal_idx:
plv = self.compute_temporal_parietal_plv(phase[t_idx], phase[p_idx])
features.append(plv)
return np.array(features)
def fit(self, X, y):
"""训练分类器"""
X_scaled = self.scaler.fit_transform(X)
self.clf.fit(X_scaled, y)
def predict(self, X):
"""预测认知状态"""
X_scaled = self.scaler.transform(X)
return self.clf.predict(X_scaled)
```
---
## 应用场景
### 1. BCI 认知状态监测
- 实时工作记忆负荷评估
- 注意力状态检测
- 疲劳状态预警
### 2. 环境优化
- 最佳照明条件推荐
- 工作环境设计
- 认知增强干预
### 3. 低维系统设计
- 最少电极配置
- 实时处理优化
---
## 电极配置
| 脑区 | 电极位置 | 功能 |
|------|---------|------|
| 颞叶 | T3, T4, T5, T6 | 信息整合 |
| 顶叶 | P3, P4, Pz | 空间注意 |
**最小配置:** 2 颞 + 2 顶 = 4 电极
---
## 关键参数
| 参数 | 推荐值 | 说明 |
|------|--------|------|
| 采样率 | 500 Hz | 相位精度 |
| Beta频带 | 12-30 Hz | 核心频段 |
| PLV窗口 | 1-2 s | 时间分辨率 |
| 分类器 | SVM-RBF | 非线性模式 |
---
## 参考文献
- arXiv:2512.17775 - How Light Shapes Memory: Beta Synchrony in the Temporal-Parietal Cortex
## Activation Keywords
- beta-synchrony-cognitive-ergonomics
- beta-synchrony-cognitive-ergonomics 技能
- beta-synchrony-cognitive-ergonomics skill
## Tools Used
- `read` - Read documentation and references
- `web_search` - Search for related information
- `web_fetch` - Fetch paper or documentation
## Instructions for Agents
Follow these steps when applying this skill:
### Step 1: Understand the Request
### Step 2: Search for Information
### Step 3: Apply the Framework
### Step 4: Provide Results
### Step 5: Verify Accuracy
## Examples
### Example 1: Basic Application
**User:** I need to apply Beta Synchrony Cognitive Ergonomics - Beta同步认知人体工程学 to my analysis.
**Agent:** I'll help you apply beta-synchrony-cognitive-ergonomics. First, let me understand your specific use case...
**Context:** Apply the methodology
### Example 2: Advanced Scenario
**User:** Complex analysis scenario
**Agent:** Based on the methodology, I'll guide you through the advanced application...
### Example 2: Advanced Application
**User:** What are the key considerations for beta-synchrony-cognitive-ergonomics?
**Agent:** Let me search for the latest research and best practices...