outline
Use when exploring or modifying a codebase and you need a cheap structural map of files, directories, imports, exports, or direct members before reading full…
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should
$ npx -y skills add ast-grep/agent-skill --skill ast-grep --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ast-grepContext preview
The summary Claude sees to decide when to auto-load this skill.
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should
name: ast-grep description: Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for code patterns, find specific language constructs, or locate code with particular structural characteristics.
This skill helps translate natural language queries into ast-grep rules for structural code search. ast-grep uses Abstract Syntax Tree (AST) patterns to match code based on its structure rather than just text, enabling powerful and precise code search across large codebases.
Use this skill when users:
Follow this process to help users write effective ast-grep rules:
Clearly understand what the user wants to find. Ask clarifying questions if needed:
Write a simple code snippet that represents what the user wants to match. Save this to a temporary file for testing.
**Example:** If searching for "async functions that use await", create a test file:
// test_example.js
async function example() {
const result = await fetchData();
return result;
}Translate the pattern into an ast-grep rule. Start simple and add complexity as needed.
**Key principles:**
**Example rule file (test_rule.yml):**
id: async-with-await
language: javascript
rule:
kind: function_declaration
has:
pattern: await $EXPR
stopBy: endSee `references/rule_reference.md` for comprehensive rule documentation.
Use ast-grep CLI to verify the rule matches the example code. There are two main approaches:
**Option A: Test with inline rules (for quick iterations)**
echo "async function test() { await fetch(); }" | ast-grep scan --inline-rules "id: test
language: javascript
rule:
kind: function_declaration
has:
pattern: await \$EXPR
stopBy: end" --stdin**Option B: Test with rule files (recommended for complex rules)**
ast-grep scan --rule test_rule.yml test_example.js
**Debugging if no matches:** 1. Simplify the rule (remove sub-rules) 2. Add `stopBy: end` to relational rules if not present 3. Use `--debug-query` to understand the AST structure (see below) 4. Check if `kind` values are correct for the language 5. For zero matches from `run --pattern` (not rules), see the "Zero Matches?" tip below
Once the rule matches the example code correctly, search the actual codebase:
**For simple pattern searches:**
ast-grep run --pattern 'console.log($ARG)' --lang javascript /path/to/project
**For complex rule-based searches:**
ast-grep scan --rule my_rule.yml /path/to/project
**For inline rules (without creating files):**
ast-grep scan --inline-rules "id: my-rule language: javascript rule: pattern: \$PATTERN" /path/to/project
Dump the AST structure to understand how code is parsed:
ast-grep run --pattern 'async function example() { await fetch(); }' \
--lang javascript \
--debug-query=cst**Available formats:**
**Use this to:**
**Example:**
# See the structure of your target code
ast-grep run --pattern 'class User { constructor() {} }' \
--lang javascript \
--debug-query=cst
# See how ast-grep interprets your pattern
ast-grep run --pattern 'class $NAME { $$$BODY }' \
--lang javascript \
--debug-query=patternTest a rule against code snippet without creating files:
echo "const x = await fetch();" | ast-grep scan --inline-rules "id: test language: javascript rule: pattern: await \$EXPR" --stdin
**Add --json for structured output:**
echo "const x = await fetch();" | ast-grep scan --inline-rules "..." --stdin --json
Simple pattern-based search for single AST node matches:
# Basic pattern search ast-grep run --pattern 'console.log($ARG)' --lang javascript . # Search specific files ast-grep run --pattern 'class $NAME' --lang python /path/to/project # JSON output for programmatic use ast-grep run --pattern 'function $NAME($$$)' --lang javascript --json .
**When to use:**
`--json` prints a bare JSON **array** o
A Claude Code plugin marketplace containing the ast-grep skill for powerful structural code search using Abstract Syntax Tree (AST) patterns. Search your codebase based on code structure rather than just text matching.
Repo: ast-grep/agent-skill