alive-bundle
FeaturedCreate, manage, and graduate bundles -- the unit of focused work within a walnut
AI & Automation 127 stars
8 forks Updated today MIT
Install
Quality Score: 91/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Bundle Management
Bundles are self-contained units of work inside a walnut. Any folder with a `context.manifest.yaml` is a bundle.
## Create
```
What's this bundle for?
1. Outcome -- produces something specific (deliverable, has a done state)
2. Evergreen -- accumulates context over time (collection, ongoing)
```
Ask for:
- **Name:** kebab-case (e.g., `website-rebuild`)
- **Goal:** one sentence describing the deliverable or collection
Scaffold:
```bash
BUNDLE_PATH="$WALNUT_PATH/[bundle-name]"
mkdir -p "$BUNDLE_PATH/raw"
```
Write `context.manifest.yaml`:
```yaml
goal: "[goal]"
status: draft
version: v0.1
sensitivity: private
pii: false
created: [today]
updated: [today]
context: |
Bundle created. [Initial context from conversation.]
sources: []
linked_bundles: []
tags: []
squirrels: [[session_id]]
active_sessions:
- session: [session_id]
engine: hermes-agent
started: [now]
working_on: "Initial setup"
```
Write `tasks.json`:
```json
{"tasks": []}
```
## Status Lifecycle
```
draft -> prototype -> published -> done
```
- **draft** -- actively worked on, markdown only
- **prototype** -- has a visual (HTML), maybe shared with 1-2 people
- **published** -- shared externally
- **done** -- outputs complete, bundle stays as historical record
## Graduate
When a `*-v1.md` or `*-v1.html` file exists:
```
v1 exists. Graduate this bundle?
1. Yes, mark as done
2. Yes, mark as published
3. Not yet
```
Flip `status:` in manifest. Bundle folder st...
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
alivebundle
Create, share, and graduate bundles — the unit of focused work within a walnut. Manages the full bundle lifecycle from creation through sharing to graduation.
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 AI & Automation Featured
alive-save
Checkpoint -- route stash items, write log entry, update bundle, trigger projection, reset stash
127 Updated today
alivecontext