From 3e05d7abf136e6bb102f35a7bbc6da01bfe4f548 Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Sun, 9 Aug 2026 14:55:28 -0700 Subject: [PATCH] fix(skills): trim ast-grep description to the 60-char hardline test_authoring_standards.py::test_description_hardline red on main since 461c493972 landed with a 383-char description. The trimmed detail is all preserved in the SKILL.md body (When-to-use, decision tree, search_files comparison). Unbreaks every open PR's slice 4. --- optional-skills/software-development/ast-grep/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optional-skills/software-development/ast-grep/SKILL.md b/optional-skills/software-development/ast-grep/SKILL.md index 14352cd8b5a7d..9383330b8c84d 100644 --- a/optional-skills/software-development/ast-grep/SKILL.md +++ b/optional-skills/software-development/ast-grep/SKILL.md @@ -1,6 +1,6 @@ --- name: ast-grep -description: "AST-aware code search and rewrite (ast-grep/sg) across 25 languages. Use for structural matching or deterministic codemods: find every function/call/class/import shaped like X, rewrite console.log to logger.info, strip `as any`, migrate require() to import, find empty catch blocks, scan/apply YAML rules. Prefer over search_files/rg when the target is syntax shape rather than text." +description: "AST-aware structural code search and rewrite via ast-grep." version: 1.0.0 author: Yeongyu Kim (code-yeongyu), adapted by Hermes Agent license: MIT