Coldstart & End Session Scripts: Better Agent Memory for OpenClaw
An OpenClaw user, Competitive_Swan_755, shared their setup for helping agents handle session transitions and recurring problems. The approach borrows from Hermes and involves two key components: coldstart and end-session scripts, plus a /SOP directory.
Key Details
- Coldstart script: Written before a session begins, it gives the agent context about what to expect, likely including project state, goals, and any relevant background.
- End-session script: Written before the session ends, it captures what was accomplished, what remains, and any important notes for the next session.
- /SOP directory: A standard operating procedure folder. The agent can reference this to quickly solve common or odd problems, avoiding the need to figure out the same solution repeatedly.
The idea is simple: enforce a discipline of documenting state and solutions so that each session starts with a clear picture and ends with a memorable summary. This practice is particularly useful for developers who run multiple agents or long-running projects where context loss is a frequent pain point.
Why This Matters
OpenClaw agents (and similar AI coding assistants) often operate without persistent memory. Coldstart scripts give them the necessary runway; end-session scripts ensure a clean handoff. The /SOP directory acts as a lightweight knowledge base, reducing repetitive problem-solving and improving consistency across sessions.
If you are hitting context limits or find your agent re-deriving solutions, this pattern is worth adopting. It is a low-cost, high-impact practice.
This tip comes from a community post—check the full discussion for details and any follow-up commentary.
📖 Read the full source: r/openclaw
👀 See Also

7 MCP Gateway Bugs: Session Leaks, Dead SSE, and OAuth in Gateway Mode
A Reddit post details seven real-world MCP gateway bugs — session state leaking across clients, silent SSE disconnections, OAuth failures in gateway mode, and more — with fixes based on boring infra, not better prompts.

Agent Framework Token Bloat: A 500:1 Input-to-Output Ratio Is Normal
A self-hosted agent framework user reports ~21k input tokens per message and 500:1 input-to-output ratio from tool definitions, system prompt, and memory. Community confirms 15-25k baseline context is common for tool-using agents.

Claude Code Visual: Practical Notes on Hooks, Subagents, MCP, and CLAUDE.md
A developer shares practical experience using Claude Code Visual, covering MCP hook syntax, CLAUDE.md for project context, subagent delegation patterns, and the /loop command for recurring tasks.

Practical Habits for Critical LLM Interaction
A Reddit post outlines specific techniques for avoiding confirmation bias when working with LLMs, including custom prompt modes like 'strawberry' for neutral explanation and 'socrates' for adversarial scrutiny, plus evaluating training data composition.