codebones
스타7
포크0
업데이트2026년 6월 11일 12:24
Use the codebones CLI to inspect repository structure before editing.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Use the codebones CLI to inspect repository structure before editing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | codebones |
| description | Use the codebones CLI to inspect repository structure before editing. |
This project may be indexed by codebones. Prefer codebones tools over broad file crawling when you need structural context.
Use:
codebones search <name> to find functions, classes, and symbols by name.codebones get <symbol> --filter <keyword> to read matching lines with light context.codebones get <symbol> to read full source when you need the complete implementation.codebones outline <file> to inspect file structure with signatures and bodies elided.codebones graph <file> to check blast radius: what depends on this file and what imports it.
Treat the result as a lower bound — imports that resolve through aliases (e.g. tsconfig
paths), re-exports, or dynamic loading are not followed. If the affected-file count looks
thin for a widely used file, cross-check with rg on the file's basename before concluding
nothing depends on it.codebones map to get a repository-level skeleton before planning larger changes.Use normal file reads when you already know the exact small file, need non-code files, docs, config, prose, or need context that codebones does not index.