ワンクリックで
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