cross-session-knowledge-threads
Use when cross-cutting investigations or decisions need a persistent thread across sessions and phases
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when cross-cutting investigations or decisions need a persistent thread across sessions and phases
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when Codex is asked to colonize, plan, build, continue, swarm, or seal an Aether colony and must mirror wrapper orchestration safely
Use when Codex is asked to initialize or set up an Aether colony and should refine intent before running init
Use when Codex is asked to run Aether Oracle or discuss flows and should refine scope before research or clarification
Use when acceptance criteria need unit, integration, or end-to-end tests generated from implementation context
Use when delivered functionality needs acceptance-criteria verification before a phase advances
Use when a phase involves LLMs, AI agents, RAG, ML inference, or prompt/tool integration design
| source | shipped |
| name | cross-session-knowledge-threads |
| description | Use when cross-cutting investigations or decisions need a persistent thread across sessions and phases |
| type | colony |
| domains | ["knowledge-management","cross-session","persistent-context"] |
| agent_roles | ["keeper","chronicler"] |
| workflow_triggers | ["resume","plan"] |
| task_keywords | ["thread","cross-session","persistent","keep track","remember"] |
| priority | normal |
| version | 1.0 |
Persistent cross-session knowledge threads for work that spans sessions but isn't phase-specific. Provides a structured way to accumulate context, decisions, and partial work on topics that cut across the project.
Create a thread with a descriptive title and initial entry:
{
"id": "KT-{NNN}",
"title": "{thread title}",
"opened": "ISO8601",
"status": "open",
"tags": ["{tag1}", "{tag2}"],
"entries": [
{
"timestamp": "ISO8601",
"author": "{session_id or agent}",
"type": "note|decision|finding|question",
"content": "{entry text}"
}
]
}
Write to .aether/data/threads/KT-{NNN}.json
Update .aether/data/threads/index.json with a summary entry for fast listing
KT-NNN) or title matchnote: General observation or informationdecision: A choice made with rationalefinding: Research result, benchmark, or discovered factquestion: Open question awaiting resolution.aether/data/threads/index.json--tag <tag> or --status open|closedtype: "resolution" summarizing the thread outcomeclosed with closed timestampphase:3), todos (TD-042), seeds (SEED-007), and other threads (KT-001)KT-003: "Database query performance optimization" [open]
Opened: 2026-04-15 | Entries: 7 | Last activity: 2026-04-22
Tags: performance, database, scalability
Key decisions: Use connection pooling (entry 3), Add query timeout (entry 5)
Open questions: 1 (sharding strategy for multi-tenant)
Last entry (2026-04-22):
[finding] Benchmark shows 3x improvement with prepared statements
# Open a new thread
> knowledge-threads open "API rate limiting strategy" --tag api --tag security
# Append a finding
> knowledge-threads append KT-003 --type finding "Redis-based rate limiter handles 10k rps"
# List open threads
> knowledge-threads list --status open
# Close a resolved thread
> knowledge-threads close KT-003 --resolution "Implemented token bucket with Redis backend"