Skills benos-memory-core
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/benmjohnson69/benos-memory-core" ~/.claude/skills/openclaw-skills-benos-memory-core && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/benmjohnson69/benos-memory-core" ~/.openclaw/skills/openclaw-skills-benos-memory-core && rm -rf "$T"
manifest:
skills/benmjohnson69/benos-memory-core/SKILL.mdsource content
BenOS Memory Core
Purpose:
- Interface for runtime/volatile memory for BenOS agents and submodules.
- Store session info, open loops, decisions, and notes through index.js commands or direct file edits.
State/storage location:
- Default:
~/.openclaw/workspace/benos/runtime/state.json - Convention: Also supports related runtime and session files under
.benos/runtime/
Usage:
- Use skill commands for agent-controlled read/write.
- Edit files directly for manual repairs or migration as needed.
Schema v1:
- schemaVersion: number
- lastHydratedAt: ISO8601 or null
- lastSessionRef: string or null
- activeInitiatives: array
- openLoops: array
- recentDecisions: array
- notes: array
Extension: Add new fields via additional versioned schemas or skill upgrades as needed.