← ClaudeAtlas

lythoskill-project-scribelisted

Session context dump. Self-assess what the conversation contains that has NO other carrier (no task, no ADR, no epic) — pitfalls, working-tree anomalies, why-we-chose-this, specific next steps — and write to daily/YYYY-MM-DD.md. Things WITH structured carriers go to their carriers. Things WITHOUT carriers but needed by the next agent go here. Forms CQRS write-side pair with project-onboarding (read-side).
lythos-labs/lythoskill · ★ 2 · AI & Automation · score 78
Install: claude install-skill lythos-labs/lythoskill
# Project Scribe > Write what `ls` + `cat` + `git log` cannot recover. Skip everything else. ## Value Boundary **Scribe = session context dump for things WITHOUT structured carriers.** ``` 对话中产生了什么? ├── 有 task/adr/epic 载体 → 写到对应 carrier,不写 scribe └── 无载体 → 自评: 下一个 agent 需要知道吗? ├── 需要 → scribe └── 不需要 → 不写 ``` | File exploration recovers (~70%) | Scribe must dump (~30%) | |----------------------------------|------------------------| | Project structure, tech stack | Pitfalls from this session | | skill-deck.toml content | True working-tree state (prevents hallucination) | | cortex/ tasks and epics | Why we chose A not B (not ADR-worthy but still important) | | git log history | Specific next steps (not "test it") | | README, docs | Temp artifacts: location + purpose | | git diff (code changes) | Uncommitted modifications and their intent | | | Meta-observations that emerge mid-conversation | If the next agent can find it via `ls`, `cat`, or `git log` — don't repeat it. ## Pre-Handoff Checklist (mandatory before writing) ```bash # 1. Git state git status git log --oneline -5 # 2. Cortex state (if cortex is active) bunx @lythos/project-cortex@0.15.5 list # 3. Session recall — ask yourself: # - What did I modify but not commit? # - What pitfalls did I hit? # - What important decisions were made verbally? # - What temp files did I create and where? # - What would the next agent most likely misunderstand? ``` ## Core Operation: Write Daily Fil