Continuity Framework

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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.

What this means

The agent may retain and later surface personal or inferred context, including relationship dynamics or significant moments.

Why it was flagged

The skill explicitly stores long-term or permanent memories, including relationship and episodic information, which may be reused in later sessions.

Skill content
| `relationship` | Connection dynamics | Long-term | ... | `moment` | Significant episodes | Permanent |
Recommendation

Review the generated memory files periodically, and avoid using the skill for conversations whose details should not become persistent context.

What this means

Local files may accumulate persistent agent memory outside the immediate chat session.

Why it was flagged

The script persists questions, identity, and reflection logs to a local memory directory by default.

Skill content
MEMORY_DIR = Path(os.environ.get("CONTINUITY_MEMORY_DIR", Path.home() / "clawd" / "memory"))
Recommendation

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.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If the heartbeat integration is added, reflection may run automatically after conversations and update persistent memory.

Why it was flagged

The skill recommends a heartbeat integration that would run reflection after idle sessions rather than only when manually invoked.

Skill content
**Trigger**: Heartbeat after conversation idle > 30 minutes
**Action**: Run continuity reflect
Recommendation

Only add the heartbeat trigger if you want automatic reflection, and keep the idle threshold and generated memory output under your control.