Install
openclaw skills install contextkeeperContextKeeper — Safe project state tracking for AI agents. Manual checkpoint creation with validated inputs. No background processes, no PID manipulation, no command execution.
openclaw skills install contextkeeperSafe project state tracking for AI agents
Keeps track of what you're working on across sessions. Create checkpoints manually, view status in dashboard.
| Risk | Mitigation |
|---|---|
| Remote Code Execution | No command substitution with user data |
| PID manipulation | No PID files, no process management |
| Background processes | No watchers, no daemons |
| Injection attacks | Input validated and escaped |
Two simple foreground scripts:
| Script | Purpose |
|---|---|
ckpt.sh | Create checkpoint with message |
dashboard.sh | View project status |
# Create checkpoint
./ckpt.sh "Fixed auth issue"
# View status
./dashboard.sh
Part of: TheOrionAI