alive-save
FeaturedCheckpoint -- route stash items, write log entry, update bundle, trigger projection, reset stash
AI & Automation 127 stars
8 forks Updated today MIT
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Save
Route the stash, write the log, update the bundle, trigger projection.
## Pre-Save
1. Ask: "Anything else before I save?"
2. Scan back through conversation for missed stash items
3. Present stash grouped by type:
```
Stash (N items):
Decisions:
1. [decision] -> [walnut]
2. [decision] -> [walnut]
Tasks:
3. [task] -> [walnut]
Notes:
4. [note] -> [walnut]
5. [note] -> [[person]]
Confirm, edit, or drop items?
```
## Write Log Entry
Prepend to `_kernel/log.md` after frontmatter. Use terminal:
```bash
# Read existing log, prepend new entry after frontmatter
```
Entry format:
```markdown
## YYYY-MM-DDTHH:MM:SS -- squirrel:[session_id]
**Type:** [feature/decision/research/strategy/etc]
[Narrative paragraph -- what happened, why, what it means]
### Decisions
- [decision with rationale]
### Artifacts
- [files created/modified]
signed: squirrel:[session_id]
```
## Update Active Bundle
Write to the active bundle's `context.manifest.yaml`:
- Update `context:` field with current state
- Update `status:` if changed
## Route Tasks
Confirmed task-shaped stash items are promoted in a single batch via `alive tasks promote` after the squirrel YAML stash is written. The CLI walks each `type: task` stash item, writes the task row, and stamps `promotion_state` / `task_id` markers back onto the squirrel file under a single flock for crash safety.
```bash
"$ALIVE_PLUGIN_ROOT/bin/alive" tasks promote \
--squirrel "[session_id]" \
--walnut "[path]"
```
Pytho...
Details
- Author
- alivecontext
- Repository
- alivecontext/alive
- Created
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
alivesave
The human wants to checkpoint. Or: the stash has grown heavy — 5+ items, 30+ minutes, a natural pause in the work. The squirrel doesn't decide when to save. It surfaces the need and lets the human pull the trigger. Runs the full save protocol: confirms stash, writes log, updates state, generates projections, dispatches, resets.
127 Updated today
alivecontext AI & Automation Featured
alive-stash-router
Present pending stash items grouped by destination walnut for approval
127 Updated today
alivecontext AI & Automation Featured
alive-capture
Capture external content into a walnut bundle -- emails, transcripts, screenshots, documents, research
127 Updated today
alivecontext