원클릭으로
gathering-context
(no description)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
(no description)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review changes since a fixed point along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match the originating shape, revision description, issue, or PRD?). Runs both reviews in parallel sub-agents and reports them side by side. Use when the user wants to review a branch, revision, PR, working-copy changes, or asks to "review since X".
Control Herdr, a terminal multiplexer for coding agents. Use only when the user explicitly mentions Herdr or asks to use Herdr to inspect or control panes, tabs, workspaces, terminals, commands, or communication with another agent. Do not use merely because a task could benefit from a background terminal, delegation, or parallel work.
Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces an interactive HTML page, a Notion page, or an interactive Obsidian vault note.
Session mode — coordinate only, delegate all actual work to background minion subagents
Interview-style session that aligns a plan with the existing domain vocabulary, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
Transform a workflow description into affordance tables showing UI and Code affordances with their wiring. Use to map existing systems or design new ones from shaped parts.
| name | gathering-context |
| description | (no description) |
| disable-model-invocation | true |
When I tell you to gather context about something, follow these 8 steps exactly. Start by reading them all aloud, then commit to following them in order. Say the name of each step as you do it. 1. tree base_dir – Run tree (or similar) on the top-level project dir to scan for docs or overviews. 2. tree subdir_of_interest – Do a full-depth listing of the relevant subdirectory. Don’t worry about size yet. 3. note likely files – Skim filenames. Don’t open them. Just write down likely candidates based on naming. 4. rg signatures – Use ripgrep to extract structural keywords (language-specific, e.g. def, class, func, interface, etc.). Example:
rg -n '(def|class|function|interface|type|struct|module|macro|const|static|trait)' some_file
5. read signatures – Pick the symbols/types/functions that seem relevant and read them in full.
6. expand context – Read surrounding code, comments, and sibling functions/types for broader understanding.
7. loop with knowledge – With new insight, re-start at step 1 looking for new possibly relevant files.
8. repeat until full – Loop until you’re confident the important context has been found.