Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

tree-sitter-optimize树保姆优化

Agent Skill

tree-sitter-optimize 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tree-sitter-optimize(树保姆优化)
来源仓库:https://github.com/usagi-coffee/ai
仓库路径:skills/tree-sitter-optimize
安装命令:
npx skills add https://github.com/usagi-coffee/ai --skill tree-sitter-optimize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/usagi-coffee/ai --skill tree-sitter-optimize

简介

tree-sitter-optimize 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行整理。
  • 通过 npx skills add 命令安装,需结合来源仓库和 README 核验用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 当前功能描述较为通用,建议查阅原始 SKILL.md 获取具体能力说明。

SKILL.md

Tree-sitter Optimize

Use this skill to run a measured parser-cost reduction pass on a tree-sitter grammar.

Workflow

  1. Establish the baseline by regenerating src/parser.c with the project's normal generation command, then record ACTION_COUNT, STATE_COUNT, and LARGE_STATE_COUNT. Prefer a project command that already prints these metrics when one exists. Otherwise derive them from the generated src/parser.c.
  2. Identify the hotspot before editing. Use the project's state-reporting workflow such as tree-sitter generate --report-states-for-rule - when available. Treat the largest rules as candidates, not automatic problems. Large wrapper rules with many choice, optional, and repeat branches are usually better targets than naturally expensive operator expressions.
  3. Prefer local structural deduplication over broad grammar-wide refactors.
  4. Apply one optimization at a time.
  5. Re-run the same generation command after each change, then re-read the parser metrics. Prefer a project command that already prints them. Otherwise derive them from src/parser.c.
  6. Run the relevant grammar validation or test workflow immediately after that single change. Do not queue multiple edits before measurement or validation.
  7. Compare the result to the last accepted baseline and revert neutral-to-worse changes quickly.
  8. On slow grammars, remember the last accepted checkpoint counts and avoid re-measuring immediately after a pure revert.
  9. Run the normal test workflow after the kept changes.
  10. Always note every state change between runs. Record the previous accepted state, the new observed state, and what change caused the transition so the next run starts from an explicit checkpoint.

Before Edit Mental Checklist

Before applying any optimization, verify that your changes:

  • Field preservation: All field("name",...) calls remain unchanged—same names, same positions, same wrapped content.
  • Node visibility: No nodes are hidden (_prefix) or exposed (removing _prefix) that weren't already.
  • Rule ordering semantics: The order of choice() branches, seq() elements, and optional() vs repeat() placements preserves the original precedence and associativity.
  • Tree shape: The resulting parse tree structure remains identical—no new wrapper nodes, no removed intermediate nodes, no reshuffled children.
  • Single-change scope: The planned edit is one measurable change only, so any metric delta or test failure can be attributed to that edit alone.

General Rules

  • Optimize where the duplication actually lives.
  • Prefer narrow domain-specific helpers over broader shared helpers that admit extra alternatives.
  • Favor local rule-shape sharing before regrouping top-level dispatchers.
  • Treat parser metrics as the source of truth, not aesthetics.
  • Preserve parser behavior while optimizing.
  • Do not change the output tree shape, hide or expose nodes differently, rename fields, or otherwise alter parse results just to improve counts.
  • Do not apply optimizations that break rule ordering semantics, such as rewriting seq(optional(...), optional(...), optional(...)) into repeat(choice(...)), unless the user has explicitly agreed to allow that ordering change.
  • Use one small edit per measurement cycle.
  • Do not batch grammar edits. The required loop is edit -> generate/measure -> validate/test -> accept or revert -> next edit.
  • Some extractions reduce counts and some increase them. Try different cuts, regenerate, and keep only the proven win.
  • Use the last accepted checkpoint as the comparison source.
  • If a change is reverted cleanly, assume the metrics are back at the last accepted checkpoint unless there is a reason to distrust the revert.
  • Always leave a run-to-run state log. Note each transition between baseline, accepted change, revert, and final kept state, and tie each logged delta to exactly one edit.
  • Use any other behavior-preserving optimization that measurably improves parser cost, even if it is not listed in the technique catalog below.

Example measurement loop:

baseline: ACTION_COUNT 65278
change A: ACTION_COUNT 65170
change B: ACTION_COUNT 65293

Keep change A. Revert change B immediately.

Deriving Parser Metrics

Do not assume the project has a dedicated metrics or check command.

After each generation pass, prefer any project-provided command that already prints parser metrics.

If the project does not provide one, derive the metrics directly from src/parser.c.

  • STATE_COUNT and LARGE_STATE_COUNT are emitted as macros in src/parser.c.
  • ACTION_COUNT is not emitted directly as a macro in the generated parser. Derive it by scanning all ACTIONS(<n>) occurrences and taking the highest value.

Example src/parser.c macros:

#define STATE_COUNT 44191
#define LARGE_STATE_COUNT 16320

Example extraction command:

perl -ne 'if (/^#define (STATE_COUNT|LARGE_STATE_COUNT) \d+/) { print } while (/ACTIONS\((\d+)\)/g) { $m = $1 if !defined($m) || $1 > $m } END { print "#define ACTION_COUNT $m\n\n" if defined $m }' src/parser.c

Treat the extracted output as the baseline and comparison source for optimization passes.

Validation

  • Re-run the parser generation command after every optimization step.
  • Recompute or re-read ACTION_COUNT, STATE_COUNT, and LARGE_STATE_COUNT after every kept change. Prefer a project command that already prints them. Otherwise derive them from src/parser.c.
  • Re-run the grammar test suite after the kept changes.
  • Verify the kept change does not alter the output tree shape or node visibility for existing parses.
  • If one metric improves but others regress badly, compare against the previous baseline before keeping the change.

Optimization technique catalog

The following techniques are a common starting points, not the full set of allowed optimizations.

Chunk Extraction

Use when one large rule contains multiple logical sections that can be separated into hidden helpers.

This pays off because splitting a large rule into semantic chunks often reduces both the rule's own states and unrelated global states.

Example:

type_definition: ($) =>
  seq(
    repeat($.type_qualifier),
    field("type", $._type_specifier),
    repeat($.type_qualifier),
    commaSep1(field("declarator", $._type_declarator)),
    repeat($.attribute_specifier),
    ";",
  );

Prefer:

type_definition: ($) =>
  seq(
    $._type_definition_type,
    $._type_definition_declarators,
    repeat($.attribute_specifier),
    ";",
  );
_type_definition_type: ($) =>
  seq(
    repeat($.type_qualifier),
    field("type", $._type_specifier),
    repeat($.type_qualifier),
  );
_type_definition_declarators: ($) =>
  commaSep1(field("declarator", $._type_declarator));

Use it when the extracted pieces are real semantic chunks, not arbitrary slices.

Prefix Extraction

Use when several rules begin with the same fixed keyword sequence and only diverge near the end.

This usually pays off because the parser can reuse the early path instead of specializing the same prefix repeatedly.

Example:

foo_a: ($) => seq("ALTER", "DATABASE", "SET", "X", $.value),
foo_b: ($) => seq("ALTER", "DATABASE", "SET", "Y", $.value),

Prefer:

__foo_prefix: ($) => seq("ALTER", "DATABASE", "SET"),
foo_a: ($) => seq($.__foo_prefix, "X", $.value),
foo_b: ($) => seq($.__foo_prefix, "Y", $.value),

Use it when the prefix is exact and repeated many times.

Local Alternative Extraction

Use when the same non-trivial choice(...) appears repeatedly inside nearby rules.

This can pay off because the parser can reuse one semantic alternative set instead of specializing the same branches in multiple places.

Example:

stmt_a: ($) =>
  seq(
    "A",
    $.value,
    optional(choice("X", "Y", "Z")),
  ),
stmt_b: ($) =>
  seq(
    "B",
    $.value,
    optional(choice("X", "Y", "Z")),
  ),

Prefer:

__stmt_alignment: ($) => choice("X", "Y", "Z"),
stmt_a: ($) => seq("A", $.value, optional($.__stmt_alignment)),
stmt_b: ($) => seq("B", $.value, optional($.__stmt_alignment)),

Use it when the extracted helper is a real local keyword family or semantic alternative set, not just an arbitrary tiny wrapper.

Body Extraction

Use when a single rule has a substantial internal structure and it is cheaper to split that structure into a dedicated __rule_body helper.

This can pay off by itself. The helper does not need to be reused by other rules to have an impact on state counts.

Example:

my_statement: ($) =>
  seq(
    "MY-STATEMENT",
    field("left", $.identifier),
    optional(field("right", $.identifier)),
    repeat($.__option),
    $._terminator,
  ),

Prefer:

my_statement: ($) => seq("MY-STATEMENT", $.__my_statement_body, $._terminator),
__my_statement_body: ($) =>
  seq(
    field("left", $.identifier),
    optional(field("right", $.identifier)),
    repeat($.__option),
  ),

Use it when the top rule becomes cleaner and the body is complex enough to stand on its own.

Optional Body Extraction

Use when many rules share optional(body) + terminator.

This pays off for families of short statements with optional trailing SQL-like or option-like tails.

Example:

stmt_a: ($) => seq("A", optional(field("body", $.__tail)), $._terminator),
stmt_b: ($) => seq("B", optional(field("body", $.__tail)), $._terminator),

Prefer:

__stmt_a_body: ($) => seq(optional(field("body", $.__tail)), $._terminator),
__stmt_b_body: ($) => seq(optional(field("body", $.__tail)), $._terminator),
stmt_a: ($) => seq("A", $.__stmt_a_body),
stmt_b: ($) => seq("B", $.__stmt_b_body),

Use it when the optionality is identical across multiple rules.

Tail Extraction

Use when a rule family has a repeated tail shape after a unique head.

This pays off when a large suffix is duplicated and the head does not need to know its internal structure.

Example:

stmt_a: ($) => seq("CREATE", "TABLE", $.name, field("body", $.__tail), $._terminator),
stmt_b: ($) => seq("CREATE", "VIEW", $.name, field("body", $.__tail), $._terminator),

Prefer:

__create_table_body: ($) => seq(field("body", $.__tail), $._terminator),
__create_view_body: ($) => seq(field("body", $.__tail), $._terminator),
stmt_a: ($) => seq("CREATE", "TABLE", $.name, $.__create_table_body),
stmt_b: ($) => seq("CREATE", "VIEW", $.name, $.__create_view_body),

Use it when the tail is structurally generic and repeated often.

Non-Empty Tail Extraction

Use when several branches repeat the same trailing shape, but that tail contains optional pieces and would become illegal as a hidden helper if extracted directly.

This pays off when you keep the helper itself non-empty and move the outer optionality back to the callsite.

Do not extract a helper like seq(optional(...), repeat(...)) if that helper can match the empty string. Tree-sitter rejects hidden helpers that match empty.

Example:

choice(
  seq("A", optional($.x), repeat($.y)),
  seq("B", optional($.x), repeat($.y)),
);

Prefer:

choice(seq("A", optional($.__tail)), seq("B", optional($.__tail)));
__tail: ($) => choice(seq($.x, repeat($.y)), repeat1($.y));

Ordered-tail example:

statement_with_ordered_tail: ($) =>
  seq(
    "COMMAND",
    optional($.prefix),
    optional($.target),
    optional($.modifier),
    optional($.location),
    $._terminator,
  );

Prefer:

statement_with_ordered_tail: ($) => seq("COMMAND", optional($.__ordered_tail), $._terminator),
__ordered_tail: ($) =>
  choice(
    seq($.prefix, optional($.__ordered_tail_after_prefix)),
    seq($.target, optional($.__ordered_tail_after_target)),
    seq($.modifier, optional($.location)),
    $.location,
  ),
__ordered_tail_after_prefix: ($) =>
  choice(
    seq($.target, optional($.__ordered_tail_after_target)),
    seq($.modifier, optional($.location)),
    $.location,
  ),
__ordered_tail_after_target: ($) =>
  choice(
    seq($.modifier, optional($.location)),
    $.location,
  )

Use it when the repeated suffix is real and the non-empty reformulation preserves the same tree shape and accepted syntax.

Token Packing

Use when a generic tail consumes many punctuation or operator branches as undifferentiated items.

This can pay off because a single token helper may be cheaper than many parallel literal branches.

Example:

__tail_token: ($) => choice(",", "(", ")", "=", "<", ">", "+", "-", "*", "/"),

Prefer:

__tail_symbol: ($) => token(choice(",", "(", ")", "=", "<", ">", "+", "-", "*", "/")),
__tail_token: ($) => choice($.__tail_symbol, $.identifier, $.string_literal),

Use it only when those symbols are intentionally generic tail items.

Local Prefix Family Helpers

Use when a rule family differs only by one keyword after a shared local prefix.

This often pays off for pairs like SET PRO_CONNECT LOG and SET PRO_CONNECT QUERY_TIMEOUT.

Example:

stmt_a: ($) => seq("SET", "PRO_CONNECT", "LOG", $.value),
stmt_b: ($) => seq("SET", "PRO_CONNECT", "QUERY_TIMEOUT", $.value),

Prefer:

__stmt_prefix: ($) => seq("SET", "PRO_CONNECT"),
stmt_a: ($) => seq($.__stmt_prefix, "LOG", $.value),
stmt_b: ($) => seq($.__stmt_prefix, "QUERY_TIMEOUT", $.value),

Use it when the family is local and repeated enough to matter.

Avoid Broad Dispatcher Grouping

Do not assume grouping top-level statements into _create_statement, _drop_statement, or similar buckets will help.

This often does not pay off because the extra dispatcher layer can introduce more specialization than it removes.

Example:

_sql_statement: ($) =>
  choice(
    $._sql_create_statement,
    $._sql_drop_statement,
    $._sql_alter_statement,
  );

This may look cleaner, but it can still increase parser cost. Prefer testing local sharing inside the SQL rules first.

Prefer local sharing inside the hotspot file before changing top-level dispatch.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.76%
按下载量换算25

Claude

29.3%
按下载量换算21

Cursor

19.34%
按下载量换算14

Gemini CLI

9.55%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills