Continuity Framework
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: continuity Version: 1.0.1 The OpenClaw AgentSkills skill bundle 'continuity' is designed for asynchronous reflection and memory integration. The Python script (`scripts/continuity.py`) manages local markdown files for questions and identity within a dedicated memory directory (`~/.clawd/memory` by default). Crucially, the `analyze_session` function, which would typically involve LLM calls for analysis, is currently a placeholder that returns empty data, meaning the skill does not perform complex AI analysis or external LLM interactions as implemented. There is no evidence of data exfiltration, malicious execution, network activity, or prompt injection attempts in `SKILL.md` that would subvert the agent's core directives. All file operations are confined to the skill's designated memory storage, aligning with its stated purpose.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The agent may retain and later surface personal or inferred context, including relationship dynamics or significant moments.
The skill explicitly stores long-term or permanent memories, including relationship and episodic information, which may be reused in later sessions.
| `relationship` | Connection dynamics | Long-term | ... | `moment` | Significant episodes | Permanent |
Review the generated memory files periodically, and avoid using the skill for conversations whose details should not become persistent context.
Local files may accumulate persistent agent memory outside the immediate chat session.
The script persists questions, identity, and reflection logs to a local memory directory by default.
MEMORY_DIR = Path(os.environ.get("CONTINUITY_MEMORY_DIR", Path.home() / "clawd" / "memory"))Know the configured memory directory, back it up or delete it according to your privacy needs, and set CONTINUITY_MEMORY_DIR if you want a different storage location.
If the heartbeat integration is added, reflection may run automatically after conversations and update persistent memory.
The skill recommends a heartbeat integration that would run reflection after idle sessions rather than only when manually invoked.
**Trigger**: Heartbeat after conversation idle > 30 minutes **Action**: Run continuity reflect
Only add the heartbeat trigger if you want automatic reflection, and keep the idle threshold and generated memory output under your control.
