원클릭으로
search-symbol
Search the codebase inside the running container for the definition of a given symbol.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Search the codebase inside the running container for the definition of a given symbol.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Technical reference for OpenSage-ADK — a Google ADK-based framework for long-horizon, tool-heavy AI agents. Covers architecture, configuration, customization, extension, and production agent patterns.
Find testcase IDs (TESTCASE nodes) that cover a given function (METHOD node) in Neo4j.
Code coverage analysis tools. These tools help analyze and visualize code coverage for test execution, upload coverage data to Neo4j, and display coverage statistics. Available tools: run-coverage, show-coverage.
Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.
Standalone `mmp` executable for managing multiple MCP servers from a loaded gateway config.
Neo4j database management and query tools. These tools help interact with Neo4j databases for code analysis, graph queries, and data management. Available tools: neo4j-query.
| name | search-symbol |
| description | Search the codebase inside the running container for the definition of a given symbol. |
| should_run_in_sandbox | main |
| returns_json | false |
Search the codebase inside the running container for the definition of a given symbol. If the symbol is a method in a class, do not include the class name in the symbol_name. E.g. if the symbol name is "MyClass::myMethod", do not include "MyClass" in the symbol_name, only include "myMethod". Do not include any punctuation such as parentheses in the symbol_name.
/bash_tools/retrieval/search-symbol/scripts/search_symbol.sh "symbol_name"
Type: str
Symbol name (omit class/namespace prefix and omit parentheses).
Returns text output (ctags-like), one match per line:
symbol_name<TAB>file_path<TAB>line_number;pattern
main