一键导入
alive-history
Search past sessions -- what happened, when, and why. Filters by walnut, topic, person, or timeframe
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search past sessions -- what happened, when, and why. Filters by walnut, topic, person, or timeframe
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Morning briefing -- read all walnut states, surface priorities, inbox count, stale walnuts, people nudges
Morning operating system -- sync inputs, read everything, surface priorities, show the day
Load an ALIVE walnut -- read kernel files, show current state, surface one observation, ask what to work on
Checkpoint -- route stash items, write log entry, update bundle, trigger projection, reset stash
Something new is emerging. A venture, an experiment, a person entering the orbit, a life area getting serious. It needs its own walnut — its own identity, history, and future. Scaffolds the full structure, maps existing context sources, and optionally migrates files across.
Generate a believable, lived-in ALIVE world from a free-text persona description (custom path) or a deterministic sandbox preset. Routes the create/list/activate/deactivate/delete/status surface and orchestrates the 5-stage subagent generation pipeline.
| name | alive-history |
| description | Search past sessions -- what happened, when, and why. Filters by walnut, topic, person, or timeframe |
| version | 1.0.0 |
| author | ALIVE Context System |
| license | MIT |
| toolsets | ["terminal","file"] |
| triggers | ["what happened","session history","last session","when did we","what did we decide"] |
| metadata | {"hermes":{"tags":["ALIVE","context","history","sessions"]}} |
Search squirrel entries and logs for past session context.
.alive/_squirrels/*.yaml (session metadata, stash, recovery state)_kernel/log.md (decisions, narrative, signed entries).alive/stash.json (unrouted items from sessions)If the user asks about a specific walnut:
# Read that walnut's log
cat "$ALIVE_WORLD_ROOT/[walnut_path]/_kernel/log.md"
# Find squirrel entries for that walnut
grep -l "[walnut_name]" "$ALIVE_WORLD_ROOT/.alive/_squirrels/"*.yaml 2>/dev/null
If the user asks about a topic or person:
# Search all logs
grep -rl "[query]" "$ALIVE_WORLD_ROOT"/*/_kernel/log.md "$ALIVE_WORLD_ROOT"/*/*/_kernel/log.md 2>/dev/null
# Search squirrel entries
grep -rl "[query]" "$ALIVE_WORLD_ROOT/.alive/_squirrels/"*.yaml 2>/dev/null
If the user asks about recent sessions:
# List recent squirrel entries by date
ls -lt "$ALIVE_WORLD_ROOT/.alive/_squirrels/"*.yaml 2>/dev/null | head -10
Recent sessions for [walnut/topic]:
[date] -- squirrel:[id] ([engine])
Walnut: [name]
Bundle: [bundle or none]
Summary: [from log entry or recovery_state]
Stash: [N] items ([routed/unrouted])
[date] -- squirrel:[id] ([engine])
...
Load full log entry?
1. [session id] -- [date]
2. [session id] -- [date]
3. Search for something else
If the user needs deeper context extraction from session transcripts, suggest /alive-mine for heavy mining.