alive
Health Gecti
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 39 GitHub stars
Code Uyari
- fs module — File system access in plugins/alive/hooks/scripts/alive-common.sh
- fs module — File system access in plugins/alive/hooks/scripts/alive-context-watch.sh
Permissions Gecti
- Permissions — No dangerous permissions requested
This tool is a personal context manager for Claude Code that structures your session data into plain files on your machine. It allows AI agents to seamlessly pick up where the last session ended by organizing decisions, tasks, and knowledge into a persistent directory structure.
Security Assessment
The system stores your personal context, project decisions, and notes about other people locally on your filesystem. It does not request any inherently dangerous system permissions. However, the automated rule scan flagged file system access within two bash scripts (`alive-common.sh` and `alive-context-watch.sh`). Because the tool explicitly functions by reading and writing local files to save your session state, this file access is normal and expected. There is no evidence of hardcoded secrets, hidden network requests, or unauthorized background shell execution. Overall risk is rated as Low.
Quality Assessment
The project is actively maintained, with its most recent push happening today. It uses the permissive and standard MIT license, making it safe for integration into most workflows. Community trust is currently modest but present, indicated by 39 GitHub stars. The documentation is clear, straightforward, and adequately explains how the agent interacts with your local data.
Verdict
Safe to use, provided you are comfortable with local scripts managing your persistent text files.
ALIVE Context System — structured context management for AI agents. Every session starts where the last one ended.
█████╗ ██╗ ██╗██╗ ██╗███████╗
██╔══██╗ ██║ ██║██║ ██║██╔════╝
███████║ ██║ ██║██║ ██║█████╗
██╔══██║ ██║ ██║╚██╗ ██╔╝██╔══╝
██║ ██║ ███████╗██║ ╚████╔╝ ███████╗
╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚══════╝
Personal Context Manager for Claude Code
Agents are instances — ephemeral. Models are utilities — temporary.
Context is property — permanent.
claude plugin install alive@alivecontext
How It Works
Open Claude Code at your ~/world. The runtime is already loaded.
ALIVE structures your context into plain files on your machine. Agents read them at session start and save what matters at session end. Everything in between — the decisions, the research, the people, the knowledge — gets structure instead of dying with the session.
Orient. Before you say a word, the runtime has already oriented the agent — a lightweight index of your world, your preferences, and the behavioural rules that make the agent yours. When you load a walnut — a venture, an experiment, a person, a life area — three files give the agent its identity, current state, and standing knowledge. No re-explaining. No pasting context. The agent knows what you're building, who's involved, and what happened last time.
Work. Every AI session is a context event. You're injecting context — files, transcripts, research, screenshots. You're generating context — decisions, architecture choices, domain knowledge. You're discovering context — connections between people, patterns across projects, insights that only surface mid-conversation. Right now, all of that is ephemeral. It dies when the window closes. ALIVE catches it as it happens.
╭─ 🐿️ +4 stash (8)
│ Decided: React Native for mobile app → my-startup
│ Task: Chase Jake for API specs by Friday → my-startup
│ Note: Jake prefers async comms, hates standups → [[jake-chen]]
│ Action: Connected ElevenLabs API for voiceover → my-startup
│ → drop?
╰─
Decisions route to the log. Tasks route to the queue. People updates route to their person walnut. Actions get tracked. Nothing gets lost.
Save. When you checkpoint, everything routes to where it belongs — decisions to the log, tasks to the queue, knowledge to insights, people updates to their own files. External content gets captured into bundles. Scripts compute a fresh snapshot. The ephemeral becomes structural.
Compound. Next session inherits everything the last one produced. And the one before that. Context accumulates. Sessions build on each other instead of starting from zero.
Two Units
Walnut — unit of context
Each meaningful thing in your life gets a walnut — your startup, your people, your health, your side project.
A walnut has a kernel — three source files that move at different speeds:
my-startup/
_kernel/
key.md → What it is (identity, people, links — rarely changes)
log.md → Where it's been (prepend-only, signed decisions)
insights.md → What it knows (evergreen domain knowledge)
tasks.json → What needs doing (script-operated)
now.json → Current state (generated on save, never hand-written)
The agent writes to source files. Scripts compute the projection. Judgment and aggregation stay separate.
Bundle — unit of work
Work gets done inside bundles. Each bundle has a goal and owns its own tasks.
# context.manifest.yaml
goal: "Ship the website from strategy deck to production"
status: prototype # draft | prototype | published | done
Two species: outcome bundles ship a deliverable and graduate. Evergreen bundles accumulate context over time — meeting notes, research, reference material.
Bundles are shareable — your workflow becomes a context product anyone can install.
The Runtime
The squirrel is the agent runtime — rules, hooks, skills, and policies that any AI agent inhabits when working inside your world.
The agent is replaceable. The runtime is portable. The walnut is permanent.
┌─────────────────────────────────────────────────┐
│ SQUIRREL RUNTIME │
│ │
│ ┌───────────┐ ┌───────────┐ ┌───────────┐ │
│ │ Rules │ │ Skills │ │ Hooks │ │
│ │ 6 files │ │ 15 skills │ │ 14 hooks │ │
│ └───────────┘ └───────────┘ └───────────┘ │
│ │
│ ┌─────────────────────────────────────────────┐ │
│ │ PERSONA LAYER │ │
│ │ Named squirrel · voice · instincts │ │
│ └─────────────────────────────────────────────┘ │
│ │
│ ┌─────────────────────────────────────────────┐ │
│ │ AGENT INSTANCE │ │
│ │ Claude, GPT, local — interchangeable │ │
│ └─────────────────────────────────────────────┘ │
├─────────────────────────────────────────────────┤
│ YOUR WORLD │
│ │
│ People/ Ventures/ Experiments/ Life/ │
│ └── walnuts ──┐ │
│ ├── _kernel/ (identity, state) │
│ └── bundles (units of work) │
│ │
│ Scripts compute projections. Agents read them. │
│ Plain files. Your machine. Nothing phones home. │
└─────────────────────────────────────────────────┘
You name your squirrel. It persists across sessions — same identity, same context awareness, regardless of which model is running underneath. The runtime loads your world, the agent does the work, the save makes it permanent.
See your full world at session start with /alive:world. Visualise it with /alive:my-context-graph.
The ALIVE Framework
Five domains. The file system is the methodology.
People/ → Cross-cutting — every person who matters
01_Archive/ → A — Everything that was
02_Life/ → L — Personal foundation
03_Inbox/ → I — Buffer only — arrives, gets routed out
04_Ventures/ → V — Revenue intent
05_Experiments/ → E — Testing grounds
Session Flow
START ──→ Hook creates session, loads preferences
│
▼
OPEN ──→ Read key.md → now.json → insights.md
│ Agent is oriented. One observation.
│
▼
WORK ──→ Stash in conversation. Capture to disk.
│ Everything else waits for save.
│
▼
SAVE ──→ Confirm stash → route to destinations
│ Write log → update bundle → compute projection
│ Stash resets. Back to WORK or EXIT.
│
▼
EXIT ──→ Sign session. Final projection.
Install
claude plugin install alive@alivecontext
15 skills, 14 hooks, 6 rule files, templates, and a statusline.
Skills
| Skill | What it does |
|---|---|
/alive:world |
See your world — dashboard, health, routing |
/alive:load-context |
Load a walnut — identity, state, active bundle |
/alive:save |
Checkpoint — route stash, generate projections |
/alive:capture-context |
Store external content, route to bundles |
/alive:bundle |
Create, share, graduate bundles |
/alive:search-world |
Search across walnuts, bundles, people, logs |
/alive:create-walnut |
Scaffold a new walnut |
/alive:system-cleanup |
Maintenance — stale bundles, orphan files |
/alive:settings |
Preferences, permissions, voice |
/alive:session-history |
Session timeline, squirrel activity |
/alive:mine-for-context |
Deep context extraction from source material |
/alive:build-extensions |
Create skills, rules, hooks for your world |
/alive:my-context-graph |
Render the world graph |
/alive:session-context-rebuild |
Rebuild context from past sessions |
/alive:system-upgrade |
Upgrade from any previous version |
Upgrading from v1
claude plugin install alive@alivecontext
/alive:system-upgrade
The upgrade skill mines your existing system, shows you what will change, and migrates everything. Your old plugin keeps working — nothing breaks.
What People Are Saying
|
"most cracked thing I've seen for AI in 2025." Louka Ewington-Pitsos |
"two AI systems, one context layer." witcheer ☯︎ · Telegram |
|
"You're gonna smoke everyone with this." Athon Millane |
"context quality > context quantity." |
|
"best thing ive ever used. this is fucked." Caspar Tremlett |
"Bro. ALIVE is legendary." Roland Bernath |
Context as Property
Your context lives on your machine as plain files. Switch models — Claude to GPT to local — your walnuts come with you. Switch platforms — your walnuts are yours.
No cloud. No account. No vendor lock-in. Git-track it if you want version history. Or don't. Your context is your property.
Roadmap
- Bundle marketplace — share and discover context products
- Obsidian plugin — walnut dashboards and context graph
- MCP server — read and manage walnuts from any MCP client
- Hermes plugin — persistent context for autonomous agents
- OpenClaw context engine — ALIVE as a context slot
- Integrations registry — track every API, service, and connection across your world
Contributing
Open an issue · Discussions · Contributing guide
Built by Lock-in Lab · @benslockedin · MIT License
Yorumlar (0)
Yorum birakmak icin giris yap.
Yorum birakSonuc bulunamadi