一键导入
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