Saves coding session progress by appending timestamped summaries to CLAUDE-activeContext.md, decisions.md, patterns.md, troubleshooting.md, and MEMORY.md. Prints update summary. Supports /sync --full for capability inventory.
How this skill is triggered — by the user, by Claude, or both
Slash command
/atlas-session-lifecycle:syncThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Zero questions. Edit files. Print summary. Done.
Zero questions. Edit files. Print summary. Done.
Use the current time formatted as HH:MM DD/MM/YY for the checkpoint header.
session-context/CLAUDE-activeContext.mdAppend a new section at the end:
## [SYNC] {time}
**Accomplished:**
- {bullet list of what was done this session}
**In progress:**
- {what's currently being worked on}
**Next steps:**
- {what comes next}
**Blockers:**
- {any blockers, or "None"}
session-context/CLAUDE-decisions.mdAppend new decisions made this session. If none, append:
## {time}
No new decisions this session.
session-context/CLAUDE-patterns.mdAppend new patterns discovered. If none, append:
## {time}
No new patterns this session.
session-context/CLAUDE-troubleshooting.mdAppend new issues and solutions. If none, append:
## {time}
No new issues this session.
Update the auto-memory file at the project memory path with any new learnings from this session. If nothing new, skip this file (memory should stay concise).
Print exactly one block:
Synced. {N} files updated.
- Active context: {1-line summary of what was captured}
- Decisions: {count new or "no new"}
- Patterns: {count new or "no new"}
- Troubleshooting: {count new or "no new"}
- Memory: {updated or "no changes"}
Extended sync that includes capability inventory generation.
session_capability_inventory(project_dir, force_refresh=True) — bypasses cache and regenerates inventory even if git unchanged.needs_generation == True: the MCP tool will generate the inventory.CLAUDE-capability-inventory.md if it exists.Print the standard sync block above, plus:
Capability Inventory: {status}
- MCP Tools: {count}
- Test Coverage: {percentage}
- Critical Untested: {count}
- Inventory: {path}
npx claudepluginhub anombyte93/atlas-session-lifecycleGenerates and saves Markdown session logs capturing objectives, file changes, referenced materials, technical notes, future plans, open items, and metrics to resume project work across conversations.
Closes out a session cleanly by reviewing work, updating project tracking files, committing changes, and capturing session knowledge. Use when a task is complete with no passoff needed.
Saves session progress by committing changes, pushing to remote, creating/updating pull requests, persisting decisions/patterns to memory layers, compiling briefings, and archiving features. Use for checkpointing work or PRs.