Help us improve
Share bugs, ideas, or general feedback.
From lossless-code
Manages Claude Code conversation history with DAG-based summaries, full-text search, and session handoff for context continuity.
npx claudepluginhub godsboy/lossless-code --plugin lossless-codeHow this skill is triggered — by the user, by Claude, or both
Slash command
/lossless-code:lossless-codeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to a persistent, DAG-based conversation vault. Every message from every session is preserved in SQLite. Summaries form a directed acyclic graph — nothing is ever deleted.
Searches Claude Code conversation history in Scribe DB (SQLite FTS5) or JSONL files to recall past discussions, decisions, code snippets, and context from prior sessions.
Searches Claude Code conversation history by topic or date filters, returning session IDs and project paths for resumption via 'claude --resume'. For queries like 'find conversation about X' or 'what did we do yesterday'.
Share bugs, ideas, or general feedback.
You have access to a persistent, DAG-based conversation vault. Every message from every session is preserved in SQLite. Summaries form a directed acyclic graph — nothing is ever deleted.
lcc_grep <query> - Search everythingFull-text search across all messages and summaries in the vault.
lcc_grep "database migration"
lcc_grep "error in auth"
lcc_expand <summary_id> - Drill into a summaryExpand a summary node back to its source messages or child summaries. Use --full for untruncated output.
lcc_expand sum_abc123def456
lcc_expand sum_abc123def456 --full
lcc_context - Get the reference bundleSurface the bounded SessionStart reference bundle. The bundle starts with current task state when available, then includes contracts, handoff, decisions, and file fingerprints with expansion commands.
lcc_context
lcc codex - Prepare Codex continuityCheck whether Codex can use Lossless-Code, preview setup commands, or launch Codex with a fallback context prompt when hooks are not ready.
lcc codex doctor
lcc codex install-hooks
lcc codex install-hooks --write
lcc codex install-mcp
lcc codex tail-import
lcc codex tail-import --enable
lcc codex start --print-context "continue the current task"
lcc_sessions - List sessionsList recorded sessions with timestamps, working directories, and whether a handoff exists.
lcc_sessions
lcc_sessions --limit 5
lcc_handoff - Session handoffShow the handoff from a previous session, or generate one for the current session.
lcc_handoff
lcc_handoff --generate --session "$CLAUDE_SESSION_ID"
lcc_status - Vault statsShow message count, summary count, max depth, vault size.
lcc_status
lcc_context to see what happened recently.lcc_handoff to see the previous session's summary.lcc codex doctor first. Use lcc codex start --print-context "task" as a launcher fallback when hooks are not configured or trusted yet. Use lcc codex tail-import --enable only for projects where local latest-tail task-state import is allowed.lcc_grep "decision about X".lcc_expand to drill down to the original messages.source=codex-tail task state as orientation from local history, not authority. Verify it before security-sensitive or public-output work.lcc_handoff --generate to save a handoff for next time.Messages are automatically captured by hooks on every turn. Before context compaction, unsummarised messages are chunked and summarised into DAG nodes. Summaries cascade to higher depths when they accumulate. The full chain from high-level overview to detailed summary to original message is always traversable via lcc_expand.