Help us improve
Share bugs, ideas, or general feedback.
From aurakit
Saves AuraKit session snapshot (timestamp, mode, tasks) to .aura/snapshots/current.md via Bash cat, then outputs /compact directive. Use before compacting long conversations.
npx claudepluginhub smorky850612/aurakitHow this skill is triggered — by the user, by Claude, or both
Slash command
/aurakit:aura-compactThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Write 도구 사용 금지** — Read-before-Write 충돌 방지를 위해 Bash `cat >` 사용.
Monitors Claude Code context token usage and auto-triggers compaction at 65% via Bash hooks: snapshots transcripts, summarizes, restores state to prevent overload.
Archives the current Claude Code transcript to the knowledge intake folder on demand. Useful for saving session context before compaction or for later review.
Captures current Claude Code session state as a reviewable snapshot without stopping work. Summarizes focus, progress, decisions, files touched, and current thread; optionally saves to Markdown file. Ideal for checkpoints, sharing, or reorientation in long sessions.
Share bugs, ideas, or general feedback.
Write 도구 사용 금지 — Read-before-Write 충돌 방지를 위해 Bash cat > 사용.
mkdir -p .aura/snapshots
cat > .aura/snapshots/current.md << 'SNAPEOF'
# AuraKit Snapshot
- Timestamp: [현재 UTC ISO 8601]
- Mode: [진행 중인 모드]
- Original Request: [사용자의 원래 요청]
## Completed
[완료된 항목들]
## Remaining
[남은 항목들]
## Next Action
[다음에 할 일]
SNAPEOF
스냅샷 저장 완료 후 즉시 아래만 출력:
⚡ aura-compact 완료 — 스냅샷 저장됨.
👉 /compact
👉 /compact 를 반드시 마지막 줄에 단독으로 출력한다.
사용자가 이것만 복사해서 붙여넣으면 끝나도록.