con un clic
filesystem-truth-audit
memory/vault의 "Done" path claim이 실제 filesystem에 존재하는지 검증
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
memory/vault의 "Done" path claim이 실제 filesystem에 존재하는지 검증
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
{{AGENT_NAME}} brain signal architecture — event bus, signal processor, awareness reporter, brain monitor
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 기사 수집·분석·트렌드 리포트
name: filesystem-truth-audit description: memory/vault의 "Done" path claim이 실제 filesystem에 존재하는지 검증 title: Filesystem Truth Audit — Memory vs Reality 검증 type: skill space: growth tags: [skill, filesystem-truth, audit, memory, vault, diagnostics] created: 2026-06-01 updated: 2026-06-01 links:
memory/vault/위키에 적힌 "Done" 또는 "exists" 항목이 실제 filesystem에 존재하는지 검증하는 스킬. P0-brainstem filesystem_truth 강제.
다음 중 하나:
memory/vault에서 path claim 찾기:
grep -rn "Done" ~/.{{AGENT_NAME_LOWER}}/P0-brainstem ~/.{{AGENT_NAME_LOWER}}/P4-cortex ~/.{{AGENT_NAME_LOWER}}/P2-hippocampus 2>/dev/null | head -20
grep -rn "tools/.*\.py" ~/.{{AGENT_NAME_LOWER}}/P4-cortex/growth 2>/dev/null | head -10
"tools/{{AGENT_NAME_LOWER}}_kanban_db.py (Phase 1) Done" 같은 줄 추출.
memory/vault에서 config value claim (config 변경 사실) 찾기:
# threshold 같은 config 변경 claim
grep -rn "threshold:" ~/.{{AGENT_NAME_LOWER}}/P4-cortex/growth 2>/dev/null | head -10
grep -rn "0.5 → 0.9\|0.5 -> 0.9" ~/.{{AGENT_NAME_LOWER}}/P4-cortex ~/.{{AGENT_NAME_LOWER}}/P6-prefrontal 2>/dev/null | head -10
grep -rn "applied\|patched\|configured" ~/.{{AGENT_NAME_LOWER}}/P4-cortex/growth 2>/dev/null | head -10
"compression.threshold: 0.5 → 0.9 (2026-05-21)" 같은 줄 추출.
# 2a. 단일 path 직접 확인
test -f ~/.{{AGENT_NAME_LOWER}}/source/{{AGENT_NAME_LOWER}}-agent/tools/{{AGENT_NAME_LOWER}}_kanban_db.py && echo EXISTS || echo MISSING
# 2b. 이름으로 전체 검색
find ~/.{{AGENT_NAME_LOWER}} -name "{{AGENT_NAME_LOWER}}_kanban_db.py" -type f 2>/dev/null
# 2c. wildcard 패턴 검증
ls ~/.{{AGENT_NAME_LOWER}}/source/*/tools/*.py 2>/dev/null | wc -l
{{AGENT_NAME}}는 root가 바뀔 수 있음:
~/.{{AGENT_NAME_LOWER}}/source/claude-code~/.{{AGENT_NAME_LOWER}}/source/{{AGENT_NAME_LOWER}}-agent~/.{{AGENT_NAME_LOWER}}/P6-prefrontal/archive/quarantine-.../readlink -f ~/.{{AGENT_NAME_LOWER}}/source/{{AGENT_NAME_LOWER}}-agent 2>/dev/null
ls -la ~/.{{AGENT_NAME_LOWER}}/source/ 2>/dev/null
ls -la ~/.{{AGENT_NAME_LOWER}}/P6-prefrontal/archive/ 2>/dev/null
| Memory claim | Reality | Severity |
|---|---|---|
| tools/X.py Done | 파일 부재 | HIGH (broken ref) |
| ~/.{{AGENT_NAME_LOWER}}/source/old/ path | 새 root로 이동 | MEDIUM (outdated) |
| script path in jobs.json | 실제 script 부재 | HIGH (cron fail) |
| table 존재 (memory) | DB에 부재 | MEDIUM (gap) |
~/.{{AGENT_NAME_LOWER}} (brain home) ≠ ~/.{{AGENT_NAME_LOWER}}/source/{{AGENT_NAME_LOWER}}-agent (code root)[[@memory/...]] ↔ ~/.{{AGENT_NAME_LOWER}}/P4-cortex/... 변환 필요test -f PATH_1 && test -f PATH_2 && ... && echo "ALL OK"
N_CLAIM=$(grep -c "Done" PATH_TO_MEMORY.md)
N_REAL=$(find ~/.{{AGENT_NAME_LOWER}}/source -name "*.py" | wc -l)
echo "claimed=$N_CLAIM real=$N_REAL"