lossless-code
DAG-based lossless context management, search, expand, and recall from your full conversation history
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
DAG-based lossless context management, search, expand, and recall from your full conversation history
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | lossless-code |
| description | DAG-based lossless context management, search, expand, and recall from your full conversation history |
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.