agentsclimarketplace

Tree sitter

Skill a5c-ai/babysitter/library/specializations/programming-languages/skills/tree-sitter

Expert skill for creating tree-sitter grammars for incremental parsing and syntax highlightingFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill tree-sitter

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

2.0 KB, 389 tokens by cl100k_base, as published. Nobody here has run it

Tree-sitter Skill

Overview

Expert skill for creating tree-sitter grammars for incremental parsing and syntax highlighting.

Capabilities

  • Write tree-sitter grammar.js files
  • Handle tree-sitter external scanners
  • Design queries for syntax highlighting
  • Implement incremental parsing support
  • Handle tree-sitter error recovery
  • Generate bindings for various languages
  • Integrate with editors (VS Code, Neovim, Helix)
  • Test grammars with corpus files

Target Processes

  • language-grammar-design.js
  • lexer-implementation.js
  • parser-development.js
  • lsp-server-implementation.js

Dependencies

  • tree-sitter CLI
  • tree-sitter crates/npm packages

Usage Guidelines

  1. Grammar.js: Follow tree-sitter grammar.js conventions
  2. External Scanners: Use external scanners for context-sensitive lexing
  3. Queries: Write highlight.scm and other query files for editor integration
  4. Testing: Build comprehensive corpus test files
  5. Error Recovery: Design grammar with error recovery in mind

Output Schema

{
  "type": "object",
  "properties": {
    "grammarName": { "type": "string" },
    "nodeTypes": {
      "type": "array",
      "items": { "type": "string" }
    },
    "queries": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": ["highlights", "injections", "locals", "tags", "folds"]
      }
    },
    "bindings": {
      "type": "array",
      "items": { "type": "string" }
    },
    "generatedFiles": {
      "type": "array",
      "items": { "type": "string" }
    }
  }
}

What ships with it: 1 file

762 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.