/SKILL.md
# memory-core-plus > Enhanced workspace memory with auto-recall and auto-capture for OpenClaw. ## What It Does `memory-core-plus` is an OpenClaw plugin that extends the built-in `memory-core` with two automated hooks: - **Auto-Recall** — Before each LLM turn, semantically searches workspace memory and injects relevant memories into the prompt context. - **Auto-Capture** — After each agent run, extracts durable facts, preferences, and decisions from the conversation and persists them to memor
npx skillsauth add aloong-planet/openclaw-memory-core-plus openclaw-memory-core-plusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Enhanced workspace memory with auto-recall and auto-capture for OpenClaw.
memory-core-plus is an OpenClaw plugin that extends the built-in memory-core with two automated hooks:
Together they form a closed-loop memory system: information captured from past conversations is automatically surfaced when contextually relevant in future interactions.
openclaw plugins install memory-core-plus
openclaw gateway restart
Auto-Recall and Auto-Capture are both enabled by default.
{
"plugins": {
"entries": {
"memory-core-plus": {
"enabled": true,
"config": {
"autoRecall": true,
"autoCapture": true
}
}
},
"slots": {
"memory": "memory-core-plus"
}
}
}
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| autoRecall | boolean | true | Enable automatic memory recall before each agent turn |
| autoRecallMaxResults | number | 5 | Maximum memories to inject per turn |
| autoRecallMinPromptLength | number | 5 | Minimum prompt length (chars) to trigger recall |
| autoCapture | boolean | true | Enable automatic memory capture after each agent run |
| autoCaptureMaxMessages | number | 10 | Maximum recent messages to analyze for capture |
openclaw plugins uninstall memory-core-plus
openclaw gateway restart
The gateway automatically falls back to the built-in memory-core.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.