원클릭으로
eli5
Explain current work plainly for a teammate without recent context, defining mechanisms and removing task-specific shorthand.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Explain current work plainly for a teammate without recent context, defining mechanisms and removing task-specific shorthand.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
When stuck on a specific problem, stop coding, gather context, and ask /deep or /pro for a fresh perspective.
Reframe recurring or wrong-shaped problems into a design where the bug cannot happen.
Run 5 Whys plus /big reframing to trace a symptom to structural root cause before fixing.
Batch operations across files with confidence-based auto-apply. Use for renaming, search-replace, refactoring code, updating text/markdown, migrating terminology, and API migrations. Run `bun tools/refactor.ts --help` for detailed command reference.
Analyze a decision end-to-end: gather context, compare options, score tradeoffs, and present one clear recommendation.
Save active session context, git state, recent commits, and next steps to one tracking issue before compaction or handoff.
| name | eli5 |
| effort | max |
| description | Explain current work plainly for a teammate without recent context, defining mechanisms and removing task-specific shorthand. |
| argument-hint | ["topic","or empty = \"what we're doing right now\""] |
Keywords: eli5, explain, plain, lost, context-drift, jargon
The user has only general project knowledge — what the project and its top-level packages ARE. Nothing else from the last N minutes of your work. Reset to that floor.
Content.tsx — gloss on first mention even if it's the 20th time you've thought it.What's happening: mechanism — 2-3 sentences
What I did: change + concrete result
What's left: remaining mechanism
Options, plainly: (a) <name> — what it changes, tradeoff
(b) ...
Recommendation: 1 sentence
For a simple question, just write prose under "What's happening" and stop.
❌ "Should I (a) try singlePassLayout, (b) hunt the 336-wide text, or (c) audit useBoxRect call sites? Suspect 3 didn't pan out and AsideLayout was reverted."
✅ "The remaining churn is the rendering framework doing layout, then re-rendering, then doing layout again until things settle — call this the cascade. Three angles:
wrap="wrap" fixes that one leaf.Writing any of these in user-facing text → stop, run /eli5:
Content.tsx — the chat-layout file")