Skip to main content

code-tool-router

Choose the right code intelligence tool before searching, navigating, refactoring, or analyzing a codebase. Use for exact search, semantic discovery, symbol references, call graphs, and architecture work.

설치로 이동

소스 정보

저장소
777genius/universal-agent-plugins-registry
최근 소스 활동
2026년 8월 7일 13:57
감지된 SKILL.md 언어
영어
스타
3
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
code-tool-router
description
Choose the right code intelligence tool before searching, navigating, refactoring, or analyzing a codebase. Use for exact search, semantic discovery, symbol references, call graphs, and architecture work.
license
Apache-2.0
compatibility
Requires a local code workspace. Uses rg first; Semble, Serena, and CodeGraphContext are optional.
# Code Tool Router Classify the question before searching, then use the cheapest reliable tool. | Intent | First tool | Verification | | --- | --- | --- | | Exact string, config key, error text, filename, or symbol spelling | `rg` | Open matching files | | Broad semantic discovery or similar implementations | Semble | Confirm with `rg` and source reads | | Definitions, references, rename, or type-aware navigation | Serena or another LSP tool | Check generated and dynamic call sites with `rg` | | Callers, callees, complexity, or dependency graph | CodeGraphContext (CGC) | Confirm important edges in source | | Current library or API behavior | Official documentation | Compare with local pinned usage | Exact search examples: ```bash rg -n "reset_session\\(" . rg --files | rg "memory|context" ``` Semantic discovery examples: ```bash uvx --from semble==0.5.4 semble search "where session context is assembled" . uvx --from semble==0.5.4 semble find-related src/path/file.ts 42 . ``` Graph examples: ```bash cgc stats . --context "$(basename "$PWD")" cgc find name reset_session --context "$(basename "$PWD")" cgc analyze callers reset_session --context "$(basename "$PWD")" cgc analyze complexity --limit 20 --context "$(basename "$PWD")" ``` If a specialized tool is unavailable, continue with `rg`, direct source reads, and the language's own analysis tools. Do not claim a rename or impact set is complete without type-aware or source-level verification. Use semantic and graph results as shortlists, not proof. Source code and reproducible tests remain authoritative.
GitHub에서 보기