Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill using-entire명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | using-entire |
| description | > Use when this capability is needed. |
Your default when exploring or understanding code should be: read the recorded intent, don't guess.
Entire checkpoints capture the prompts, transcripts, and decisions behind every agent-driven change. When you need to understand why code exists or how a module evolved, look up the checkpoint history first. Only fall back to inference from code structure when no history is available — and label that explicitly.
Use this skill whenever the task involves:
Do not use this skill for simple, well-understood edits where you already have full context (e.g. "add a comment to line 5").
Before diving into specific lookups, check whether Entire is available and the repository has checkpoint history:
entire status
This tells you whether Entire is enabled, which git hooks are installed, whether the metadata branch is initialized, and any active sessions on the current branch.
When this skill activates, determine which sub-skill best fits the user's need:
| Scenario | Typical user expressions | Delegate to |
|---|---|---|
| Code block provenance | "why is this like this" / "wtf is going on" / "what happened at src/auth.ts:42" / "tell me why this changed" | what-happened |
| Find prior work | "has anyone done X before" / "search past work for rate limiting" / "find the previous implementation" | search |
| Recall a task playbook | "have we done this before" / "recall how we did X" / "how did we do this last time" | recall |
| Replay feature history | "replay " / "walk me through how X was built" / "show me the journey of Y" | replay |
| Teach a repo topic | "teach me " / "how does work in this repo" / "give me a lesson on X" | teach |
| Understand original intent | "explain this function" / "explain parseConfig" / "what was the intent behind src/auth.ts" | explain |
| Generate a dispatch / summary | "summarize recent work" / "generate a dispatch" / "what was accomplished this week" | run entire dispatch directly |
| Code review with intent context | "review these changes" / "review this branch" / "audit before merging" | review |
| Hand off to another agent | "hand off this session" / "continue in another agent" / "pick up the codex session" | session-handoff |
| Convert session to skill | "turn this into a skill" / "make a skill from this session" | session-to-skill |
| Link session to other repos | "link session to other repos" / "attach session to the foo repo" | session-crosslink |
| General exploration | "understand this module" / "explore how auth works" / "help me understand the codebase" | (self — see below) |
If the scenario clearly maps to a sub-skill, delegate entirely to that skill's workflow. Do not duplicate their steps here.
When no specific sub-skill fits — e.g. the user asks to "understand this module" or "explore how auth works" — use this flow:
Identify key files in the target area (entry points, main types, core functions).
Check for checkpoint coverage on each key file:
git log --format='%H %s' -5 -- <file>
Look for Entire-Checkpoint: trailers in the commit bodies:
git log --format='%H %b' -5 -- <file> | grep -B1 'Entire-Checkpoint:'
entire explain --checkpoint <checkpoint-id> --json --no-pager
If you only have a commit hash (not a checkpoint ID), use:
entire explain --commit <sha> --no-pager
Synthesize: combine the recorded intent (from checkpoints) with the current code structure to build a comprehensive understanding.
Report your findings, clearly distinguishing:
When running Entire commands from an agent subprocess:
--json for commands that support it and might prompt
interactively. --json implies non-interactive output.--no-pager to prevent pager activation in subprocess
contexts.--checkpoint <id> or --commit <sha> for
entire explain — without a locator, the command falls back to an
interactive picker.If the target code predates Entire or has no checkpoint coverage:
search with related keywords —
there may be checkpoints on related work even if the specific file isn't
directly covered.Always make it clear whether your answer comes from:
Never present inferred intent as if it were recorded fact. The core value of this workflow is that distinction.
For a deeper understanding of Entire's capabilities beyond what the sub-skills cover, consult these resources:
entire help to see all available commands and flagsSource: entireio/skills — distributed by TomeVault.