Load context from permanent memory and recent session logs. Tiered loading — CLAUDE.md full, session logs frontmatter-only by default.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add sliamh11/Deus --skill resume --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Resume?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/sliamh11-resume-deus)More formats (shields.io, HTML) on the badges page.
---
name: resume
description: Load context from permanent memory and recent session logs. Tiered loading — CLAUDE.md full, session logs frontmatter-only by default.
---
# /resume — Load Context
Load persistent context from the vault.
The vault is mounted at `/workspace/vault/`. If it doesn't exist, check `/workspace/extra/obsidian/Deus/` as a legacy fallback.
## Steps
1. **Resolve vault path and read permanent memory (full — it's compact):**
```bash
VAULT_DIR="${DEUS_VAULT_DIR:-/workspace/vault}"
[ ! -d "$VAULT_DIR" ] && VAULT_DIR="/workspace/extra/obsidian/Deus"
cat "$VAULT_DIR/CLAUDE.md"
```
2. **Find recent session logs** (default: last 3, or use number given as argument):
```bash
ls -t "$VAULT_DIR"/Session-Logs/*.md 2>/dev/null | head -${args:-3}
```
3. **For each session log: read frontmatter only** (the YAML block between the two `---` lines):
```bash
awk '/^---/{n++} n==2{exit} {print}' <file>
```
This gives ~10 lines per log (~80 tokens) instead of the full file (~900 tokens).
**Only read the full log** if the user asks for details or context is unclear.
4. **If a search term was given** (e.g. `/resume auth`), grep logs and read frontmatter of matches:
```bash
grep -ril "<term>" "$VAULT_DIR/Session-Logs/" 2>/dev/null
```
5. **Summarize in 2–3 lines:** ongoing context, pending tasks, ready to continue.
## Argument Variants
- `/resume` — CLAUDE.md + last 3 session frontmatters
- `/resume 5` — CLAUDE.md + last 5 session frontmatters
- `/resume auth` — + search logs for "auth", read frontmatters of matches
- `/resume full` — load last 3 session logs in full (use sparingly)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!