ast-grep
ast-grep (sg) is a CLI tool that searches, lints, and rewrites code using Abstract Syntax Trees instead of text patterns. It uses tree-sitter parsers, supports 20+ languages (including Markdown), and runs in seconds across large codebases.
Write a code snippet as a pattern, and ast-grep matches it structurally against the AST -- ignoring whitespace, comments, and formatting differences.
Patterns are one atomic building block. When a pattern alone can't express what you need (disambiguation, naming constraints, relational checks, transforms), graduate to a full YAML rule. Patterns handle ~60% of searches; YAML rules handle the rest.
- Write valid parseable code as patterns. Tree-sitter must parse the pattern. Invalid syntax silently produces zero matches with no error, so always verify a new pattern returns results before adding constraints.
- Metavariable names use UPPERCASE:
$NAME, $$$ARGS, $_. Lowercase $name is treated as literal code, not a capture.
$X captures exactly one AST node. Use $$$X for zero-or-more. The mismatch is the most common cause of "pattern doesn't match" -- a single-arg pattern won't match a two-arg call.
- Same name = same content:
$A == $A matches x == x but rejects x == y. This is structural equality, not variable binding -- use it intentionally.
- Every rule needs at least one positive atomic rule (
pattern, kind, or regex). A not rule alone is invalid because ast-grep needs something to anchor the search.
regex matches the full node text. Partial matches fail. /foo/ does not match fooBar -- use ^foo if you want prefix matching.
fix replaces the single matched node. It cannot patch multiple locations. Use expandStart/expandEnd to consume surrounding tokens (trailing commas, semicolons).
- Unmatched metavariables become empty strings in
fix. This is intentional for optional captures, but verify your pattern actually captures what you expect before relying on it in a rewrite.
- Use
stopBy: end on relational rules (inside, has, follows, precedes) unless you specifically want neighbor-only matching. The default stopBy: neighbor stops at the first non-matching node and misses deeper results -- this is the second most common cause of "rule doesn't match."
- Shell escaping for
--inline-rules: the shell interprets $ as a variable. Wrap YAML in single quotes or escape each metavariable with \$VAR.
- Write example code before writing rules. Small mistakes in rule composition cascade into completely invalid output. Write a concrete code snippet that should match, verify the AST structure with
--debug-query=cst, then build the rule against that snippet.
- Verify every rule before searching the codebase. Test against the example snippet with
sg scan --inline-rules '...' --stdin or sg scan -r rule.yml test.file. This catches composition errors before they waste a full codebase scan.
Rules are compositions of atomic parts. A single error in one part cascades, so verify at each step.
- Understand the intent -- what code pattern are you looking for? What should match and what should not?
- Write example code -- a concrete snippet that should match the rule, and one that should not. These are the test fixtures.
- Explore the AST --
sg run --pattern 'TARGET_CODE' --debug-query=cst -l LANG to see node kinds and structure of the example code.
- Write the rule -- start with the simplest possible pattern. Add constraints, relational rules, and transforms incrementally. Test after each addition.
- Test the rule against the example --
echo "example code" | sg scan --inline-rules '...' --stdin or sg scan -r rule.yml example.file. Confirm it matches the positive case and rejects the negative case.
- Search the codebase --
sg scan for the full project. Review a sample of results to confirm precision.
- Formalize -- if reusable, add
id, message, severity, fix. Write test YAML with sg new test, generate snapshots with sg test -U.
When a rule doesn't work, go back to step 3. The AST structure frequently contradicts how source code looks visually -- verify with --debug-query=cst rather than assuming.
Before reporting a rule as done, run it against both the positive and negative example. Confirm it matches what it should and rejects what it shouldn't.
sg run -p 'fetch($$$ARGS)' -l javascript
rule:
pattern: $HOOK($$$ARGS)
constraints:
HOOK: { regex: '^use' }
sg run -p 'oldFunction($$$ARGS)' -r 'newFunction($$$ARGS)' -l typescript -U
Use context + selector when the target fragment needs surrounding syntax to parse:
rule:
pattern:
context: 'class A { a = 123 }'
selector: field_definition
id: no-await-in-loop
language: TypeScript
rule:
pattern: await $EXPR
inside:
any:
- kind: for_statement
- kind: for_in_statement
- kind: while_statement
stopBy: end
References
- Pattern Syntax -- Metavariables, matching rules, strictness modes, pattern object for disambiguation
- Rule Reference -- Atomic, relational, and composite rules, matching order, ESQuery selectors
- YAML Configuration -- Full rule file schema: fix, transform, constraints, utils, rewriters
- CLI Reference -- All commands, flags, output formats, CLI vs Playground differences
- Recipes -- Search, lint, rewrite, transform, debugging, and advanced technique examples
1---2name: ast-grep3description: AST-based code search, lint, and rewrite using ast-grep. Use when finding code patterns structurally (not textually), writing lint rules, building codemods, or migrating API usage across a codebase. Prefer over regex grep when the match target is a syntactic construct (function call, import, class field, assignment).4---56# ast-grep78ast-grep (`sg`) is a CLI tool that searches, lints, and rewrites code using Abstract Syntax Trees instead of text patterns. It uses tree-sitter parsers, supports 20+ languages (including Markdown), and runs in seconds across large codebases.910Write a code snippet as a pattern, and ast-grep matches it structurally against the AST -- ignoring whitespace, comments, and formatting differences.1112Patterns are one atomic building block. When a pattern alone can't express what you need (disambiguation, naming constraints, relational checks, transforms), graduate to a full YAML rule. Patterns handle ~60% of searches; YAML rules handle the rest.1314<constraints>15161. **Write valid parseable code as patterns.** Tree-sitter must parse the pattern. Invalid syntax silently produces zero matches with no error, so always verify a new pattern returns results before adding constraints.172. **Metavariable names use UPPERCASE:** `$NAME`, `$$$ARGS`, `$_`. Lowercase `$name` is treated as literal code, not a capture.183. **`$X` captures exactly one AST node.** Use `$$$X` for zero-or-more. The mismatch is the most common cause of "pattern doesn't match" -- a single-arg pattern won't match a two-arg call.194. **Same name = same content:** `$A == $A` matches `x == x` but rejects `x == y`. This is structural equality, not variable binding -- use it intentionally.205. **Every rule needs at least one positive atomic rule** (`pattern`, `kind`, or `regex`). A `not` rule alone is invalid because ast-grep needs something to anchor the search.216. **`regex` matches the full node text.** Partial matches fail. `/foo/` does not match `fooBar` -- use `^foo` if you want prefix matching.227. **`fix` replaces the single matched node.** It cannot patch multiple locations. Use `expandStart`/`expandEnd` to consume surrounding tokens (trailing commas, semicolons).238. **Unmatched metavariables become empty strings in `fix`.** This is intentional for optional captures, but verify your pattern actually captures what you expect before relying on it in a rewrite.249. **Use `stopBy: end` on relational rules** (`inside`, `has`, `follows`, `precedes`) unless you specifically want neighbor-only matching. The default `stopBy: neighbor` stops at the first non-matching node and misses deeper results -- this is the second most common cause of "rule doesn't match."2510. **Shell escaping for `--inline-rules`:** the shell interprets `$` as a variable. Wrap YAML in single quotes or escape each metavariable with `\$VAR`.2611. **Write example code before writing rules.** Small mistakes in rule composition cascade into completely invalid output. Write a concrete code snippet that should match, verify the AST structure with `--debug-query=cst`, then build the rule against that snippet.2712. **Verify every rule before searching the codebase.** Test against the example snippet with `sg scan --inline-rules '...' --stdin` or `sg scan -r rule.yml test.file`. This catches composition errors before they waste a full codebase scan.2829</constraints>3031<workflow>3233Rules are compositions of atomic parts. A single error in one part cascades, so verify at each step.34351. **Understand the intent** -- what code pattern are you looking for? What should match and what should not?362. **Write example code** -- a concrete snippet that should match the rule, and one that should not. These are the test fixtures.373. **Explore the AST** -- `sg run --pattern 'TARGET_CODE' --debug-query=cst -l LANG` to see node kinds and structure of the example code.384. **Write the rule** -- start with the simplest possible pattern. Add constraints, relational rules, and transforms incrementally. Test after each addition.395. **Test the rule against the example** -- `echo "example code" | sg scan --inline-rules '...' --stdin` or `sg scan -r rule.yml example.file`. Confirm it matches the positive case and rejects the negative case.406. **Search the codebase** -- `sg scan` for the full project. Review a sample of results to confirm precision.417. **Formalize** -- if reusable, add `id`, `message`, `severity`, `fix`. Write test YAML with `sg new test`, generate snapshots with `sg test -U`.4243When a rule doesn't work, go back to step 3. The AST structure frequently contradicts how source code looks visually -- verify with `--debug-query=cst` rather than assuming.4445Before reporting a rule as done, run it against both the positive and negative example. Confirm it matches what it should and rejects what it shouldn't.4647</workflow>4849<examples>5051<example description="Search: find all calls to a function">5253 sg run -p 'fetch($$$ARGS)' -l javascript5455</example>5657<example description="Search: find a pattern with naming constraints">5859```yaml60rule:61 pattern: $HOOK($$$ARGS)62constraints:63 HOOK: { regex: '^use' }64```6566</example>6768<example description="Rewrite: rename across the codebase">6970 sg run -p 'oldFunction($$$ARGS)' -r 'newFunction($$$ARGS)' -l typescript -U7172</example>7374<example description="Rule: match sub-expressions that aren't standalone-valid code">7576Use `context` + `selector` when the target fragment needs surrounding syntax to parse:7778```yaml79rule:80 pattern:81 context: 'class A { a = 123 }'82 selector: field_definition83```8485</example>8687<example description="Rule: find await inside loops with relational rules">8889```yaml90id: no-await-in-loop91language: TypeScript92rule:93 pattern: await $EXPR94 inside:95 any:96 - kind: for_statement97 - kind: for_in_statement98 - kind: while_statement99 stopBy: end100```101102</example>103104</examples>105106## References107108- [Pattern Syntax](references/pattern-syntax.md) -- Metavariables, matching rules, strictness modes, pattern object for disambiguation109- [Rule Reference](references/rule-reference.md) -- Atomic, relational, and composite rules, matching order, ESQuery selectors110- [YAML Configuration](references/yaml-config.md) -- Full rule file schema: fix, transform, constraints, utils, rewriters111- [CLI Reference](references/cli.md) -- All commands, flags, output formats, CLI vs Playground differences112- [Recipes](references/recipes.md) -- Search, lint, rewrite, transform, debugging, and advanced technique examples