원클릭으로
engram-offload
Context offloading: save large outputs to Engram to keep messages lean. Use during long builds or when context > 40%.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Context offloading: save large outputs to Engram to keep messages lean. Use during long builds or when context > 40%.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Surgical reading discipline: Grep before Read, offset/limit for large files, batch tool calls, avoid re-reading. Activate when context window is above 60% or on long sessions.
Opinionated code review checklist: OWASP Top 10 security, correctness edge cases, minimum-change principle, performance anti-patterns, test quality. Use when reviewing PRs, auditing diffs, or doing formal code review.
SOC 직업 분류 기준
| name | engram-offload |
| description | Context offloading: save large outputs to Engram to keep messages lean. Use during long builds or when context > 40%. |
Save to Engram instead of leaving in messages:
title: {project}/{slug}/{type}
topic_key: {project}/{slug}/{type}
Examples:
my-app/auth/schema — auth module schemamy-app/session/state — state before compactmy-app/build/errors — current build errorsmem_save(
title: "{project}/{slug}/{type}",
topic_key: "{project}/{slug}/{type}",
type: "discovery",
content: "{compressed key facts — not raw output}"
)
Save what you learned, not what you read.
Previews are always truncated — always two steps:
Step 1: mem_search("{project}/{slug}") → get ID
Step 2: mem_get_observation(id) → full content
Before /compact:
mem_save(
title: "{project}/session/state",
topic_key: "{project}/session/state",
type: "discovery",
content: "task: ...\nfiles_read: [...]\nkey_facts: [...]\nnext_steps: [...]"
)
After /compact:
mem_search("{project}/session/state") → mem_get_observation → continue