Pi Ast Grep
Description
AST-aware code search and rewrite for the pi coding agent. Faithful port of the ast-grep tools from oh-my-openagent.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
pi-ast-grep
[](https://github.com/code-yeongyu/pi-ast-grep/actions/workflows/ci.yml) [](LICENSE)
AST-aware code search and rewrite for the [pi coding agent](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent). Faithful port of the ast-grep tool stack from [oh-my-openagent](https://github.com/code-yeongyu/oh-my-openagent).
Origin
This package is a port of the ast-grep tools originally written for [oh-my-openagent (omo)](https://github.com/code-yeongyu/oh-my-openagent) by Yeongyu Kim ([@code-yeongyu](https://github.com/code-yeongyu)). The omo source for the tools lives at `src/tools/ast-grep/` in that repository.
The same author re-licensed the ported source under MIT for distribution in the pi-coding-agent ecosystem. omo itself remains under SUL-1.0; this package's MIT scope covers only the code that ships in this repository. See [LICENSE](LICENSE) and [NOTICE](NOTICE).
Quick Demo
> Find every console.log in src/
[ast_grep_search] /console.log($MSG)/ in src/ (typescript)
4 matches • 3 files
src/index.ts (1 match)
src/cli.ts (1 match)
src/foo.ts (2 matches)
src/index.ts
11:3 console.log("greeting");
src/cli.ts
42:1 console.log("loaded");
src/foo.ts
18:5 console.log(error);
27:3 console.log("ready");
> Rewrite the console.log calls to logger.info, dry run first.
[ast_grep_replace] /console.log($MSG)/ → /logger.info($MSG)/ [DRY RUN] (typescript)
[DRY RUN] 4 replacements previewed • 3 files
src/index.ts (1 match)
src/cli.ts (1 match)
src/foo.ts (2 matches)
src/index.ts
11:3 console.log("greeting");
src/cli.ts
42:1 console.log("loaded");
src/foo.ts
18:5 console.log(error);
27:3 console.log("ready");
Installation
The package targets the [`pi`](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) coding age
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11