/resume — Load Context

SkillDocs & knowledge

Load context from permanent memory and recent session logs. Tiered loading — CLAUDE.md full, session logs frontmatter-only by default.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the /resume — Load Context skill

What this skill tells your AI

The instructions your AI receives, as published by sliamh11/deus in container/skills/resume/SKILL.md and read by ahel’s review.

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):

    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):

    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):

    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:

    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)

Signals

GitHub stars
51
Forks
4
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
resume-sliamh11
Source
github.com/sliamh11/deus