원클릭으로
find
Find files matching a glob pattern. Use when searching for files by extension, name pattern, or directory structure.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Find files matching a glob pattern. Use when searching for files by extension, name pattern, or directory structure.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Renders markdown to self-contained HTML with a custom dark stylesheet and opens in browser. Use when previewing markdown documents, generating styled HTML from README or report files.
Inform the user what is happening — skip passive lookups
Manage version control with Jujutsu (jj) — no staging area, immediate changes, smart rebasing. Use when navigating history, squashing, or pushing to Git remotes.
Programmatic hunk selection for Jujutsu — split, commit, or squash specific hunks without interactive prompts. Use when making partial commits or selective squashes.
Gather facts from the web using evidence-first approach with mandatory citations. Use when researching topics, answering factual questions, or any task requiring web-sourced evidence.
Model minimum-move problems as BFS over a state space. Use when solving bucket pouring puzzles, sliding tiles, or any problem asking for the shortest sequence of moves to reach a goal.
| name | find |
| description | Find files matching a glob pattern. Use when searching for files by extension, name pattern, or directory structure. |
| token_cost | 80 |
| related | ["grep"] |
| keywords | ["glob","find","files","extension","directory","discover","list"] |
Find files matching a glob pattern.
REQUIRED: pattern (glob pattern like "*/.py") OPTIONAL: path (directory to search in, defaults to cwd)
RULES:
EXAMPLE:
{"name": "Glob", "input": {"pattern": "**/*.py"}}
EXAMPLE with path:
{"name": "Glob", "input": {"pattern": "*.md", "path": "/path/to/docs/"}}
**/*.ext for recursive matching (e.g., **/*.py)path to limit to a specific directory