Help us improve
Share bugs, ideas, or general feedback.
From aeon-flux
Activates during long sessions or before context compaction. Manages attention markers and ensures critical information survives memory compression.
npx claudepluginhub theglitchking/aeon-flux --plugin aeon-fluxHow this skill is triggered — by the user, by Claude, or both
Slash command
/aeon-flux:context-preservationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Long session detected or compaction imminent. Preserve critical context.
Preserves critical rules, decisions, and state across /compact events, session boundaries, and agent handoffs using CLAUDE.md, .claude/rules files, and MEMORY.md.
Preserves critical context data before Claude Code's automatic compression. Detects when compression is imminent and runs integrity-verified snapshot protocols.
Saves critical files, task progress, and working state before context compaction, then restores them after. Use before /compact or when auto-compact triggers.
Share bugs, ideas, or general feedback.
Long session detected or compaction imminent. Preserve critical context.
Wrap important information that MUST survive compaction:
<!-- ATTENTION -->
[Critical information here]
<!-- /ATTENTION -->
Always Mark:
Never Mark:
<!-- ATTENTION -->
Decision: Using PostgreSQL over SQLite for production
Reason: Need concurrent connections for API
Config: DATABASE_URL in .env.production
<!-- /ATTENTION -->
<!-- ATTENTION -->
Blocker: Tests require REDIS_URL environment variable
Workaround: export REDIS_URL=redis://localhost:6379
File: .env.test needs this added
<!-- /ATTENTION -->
Before context is compressed, ensure:
Use /checkpoint command or the hook will auto-checkpoint:
## Current Task
[What we're working on]
## Completed
- [x] Step 1
- [x] Step 2
## Next Steps
- [ ] Step 3
- [ ] Step 4
## Critical Context
[ATTENTION blocks here]
When resuming after compaction:
.claude/memory/attention.md for preserved items.claude/memory/checkpoint.md for task state| File | Purpose |
|---|---|
.claude/memory/attention.md | Preserved critical info |
.claude/memory/checkpoint.md | Task state |
.claude/memory/errors.md | Error patterns learned |
.claude/memory/patterns.md | Behavioral patterns |