ast-grep/ast-grep
{ "createdAt": "2022-07-01T19:21:00Z", "defaultBranch": "main", "description": "⚡A CLI tool for code structural search, lint and rewriting. Written in Rust", "fullName": "ast-grep/ast-grep", "homepage": "https://ast-grep.github.io/", "language": "Rust", "name": "ast-grep", "pushedAt": "2025-11-24T18:50:39Z", "stargazersCount": 11423, "topics": [ "ast", "babel", "codemod", "codereview", "command-line", "command-line-tool", "grep", "linter", "refactoring", "rust", "search", "static-analysis", "structural-search", "tree-sitter", "typescript" ], "updatedAt": "2025-11-27T05:28:18Z", "url": "https://github.com/ast-grep/ast-grep"}
ast-grep(sg)
Section titled “ast-grep(sg)”ast-grep(sg) is a CLI tool for code structural search, lint, and rewriting.
Introduction
Section titled “Introduction”ast-grep is an abstract syntax tree based tool to search code by pattern code. Think of it as your old-friend grep, but matching AST nodes instead of text.
You can write patterns as if you are writing ordinary code. It will match all code that has the same syntactical structure.
You can use $ sign + upper case letters as a wildcard, e.g. $MATCH, to match any single AST node. Think of it as regular expression dot ., except it is not textual.
Try the online playground for a taste!
Screenshot
Section titled “Screenshot”
See more screenshots on the website.
Installation
Section titled “Installation”You can install it from npm, pip, cargo, cargo-binstall, homebrew, scoop, mise or MacPorts!
npm install --global @ast-grep/clipip install ast-grep-clibrew install ast-grepClick for more installation methods
cargo install ast-grep --lockedcargo binstall ast-grep
# install via scoop, thank @brian6932scoop install main/ast-grep
# install via MacPortssudo port install ast-grep
# try ast-grep in nix-shellnix-shell -p ast-grep
# try ast-grep with misemise use -g ast-grepOr you can build ast-grep from source. You need to install rustup, clone the repository and then
cargo install --path ./crates/cli --lockedPackages are available on other platforms too.
Command line usage example
Section titled “Command line usage example”ast-grep has following form.
ast-grep --pattern 'var code = $PATTERN' --rewrite 'let code = new $PATTERN' --lang tsExample
Section titled “Example”ast-grep -p '$A && $A()' -l ts -r '$A?.()'ast-grep -p 'new Zodios($URL, $CONF as const,)' -l ts -r 'new Zodios($URL, $CONF)' -iSponsor
Section titled “Sponsor”If you find ast-grep interesting and useful for your work, please buy me a coffee so I can spend more time on the project!
Feature Highlight
Section titled “Feature Highlight”ast-grep’s core is an algorithm to search and replace code based on abstract syntax tree produced by tree-sitter. It can help you to do lightweight static analysis and massive scale code manipulation in an intuitive way.
Key highlights:
-
An intuitive pattern to find and replace AST. ast-grep’s pattern looks like ordinary code you would write every day (you could say the pattern is isomorphic to code).
-
jQuery like API for AST traversal and manipulation.
-
YAML configuration to write new linting rules or code modification.
-
Written in compiled language, with tree-sitter based parsing and utilizing multiple cores.
-
Beautiful command line interface :)
ast-grep’s vision is to democratize abstract syntax tree magic and to liberate one from cumbersome AST programming!
- If you are an open-source library author, ast-grep can help your library users adopt breaking changes more easily.
- if you are a tech lead in your team, ast-grep can help you enforce code best practice tailored to your business need.
- If you are a security researcher, ast-grep can help you write rules much faster.