一键导入
brain-signal-system
{{AGENT_NAME}} brain signal architecture — event bus, signal processor, awareness reporter, brain monitor
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
{{AGENT_NAME}} brain signal architecture — event bus, signal processor, awareness reporter, brain monitor
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
TDD-PDCA plan for building a self-replicating branching agent in {{AGENT_NAME}}. 단일 에이전트가 스스로 서브에이전트를 분기하고, 결과를 수렴시키는 구조.
Integrate {{AGENT_NAME}} with ACP (Agent Client Protocol) agents. Reverse-engineered from goose's Rust ACP provider implementation.
Maintain .{{AGENT_NAME_LOWER}} as an Obsidian vault — graph connectivity overhaul (P-layer mesh, skill clusters, SEO article web), broken link detection, backlink density verification via Obsidian CLI, filename deduplication, bidirectional linking, auto-generated orphan management, cron output graph bloat prevention, and Obsidian compatibility.
AI Trend Collection & Filtering — collect GitHub trending repos, score via 5-axis philosophy filter, evaluate, apply, and retire.
RSS 피드 모니터링 → SEO 기사 수집·분석·트렌드 리포트
Authoring and using agent profiles — pre-defined subagent roles that set model, provider, toolsets, and instructions in one task() call. Covers profile format, the 14 standard roles, pipeline patterns, cost-tiered model assignment, and the ESCALATE mechanism for capability routing.
| name | brain-signal-system |
| description | {{AGENT_NAME}} brain signal architecture — event bus, signal processor, awareness reporter, brain monitor |
Date: 2026-05-31 (updated 2026-06-11)
Status: Operational
Source: agent/brain_signals.py, agent/signal_processor.py, agent/event_bus.py, agent/awareness_reporter.py, agent/brain_monitor.py
Purpose: Single source of truth for {{AGENT_NAME}}'s brain signal architecture.
agent/brain_monitor.py:_deliver() calls _deliver_fallback() when DeliveryRouter fails, writing monitor/brain_signals_{ts}.md. DeliveryRouter nearly always fails with 'dict' object has no attribute 'always_log_local' → 5,123 files in ~30 days (400MB+). All orphans in Obsidian graph (0 inbound links).
# Before (brain_monitor.py:364-367):
except Exception as e:
logger.warning("DeliveryRouter unavailable, writing to local fallback: %s", e)
self._deliver_fallback(content)
# After:
except Exception as e:
logger.warning("DeliveryRouter unavailable (session %s): %s", self.session_id, e)
_deliver_fallback() retained as dead code (manual use possible) but no longer called.
rm ~/.{{AGENT_NAME_LOWER}}/monitor/brain_signals_*.md # 5,123 files → 0
# Retained: ~/.{{AGENT_NAME_LOWER}}/monitor/brain_signal_log.jsonl (5KB, compressed alternative)
ls ~/.{{AGENT_NAME_LOWER}}/monitor/ # should show only brain_signal_log.jsonl
_deliver_fallback() method is preserved for manual emergency use.gateway.log and brain_signal_log.jsonl — no information loss.BrainSignalMonitor class still works; only the file fallback is removed.