tokenize-then-parse

Installation
SKILL.md

tokenize-then-parse

When to Use

  • Building interpreters or compilers
  • Processing parenthesized expressions
  • Structured text with clear token boundaries
  • Multi-stage processing pipeline

When NOT to Use

  • Simple fixed format (just split)
  • Very complex grammar (use parser generator)
  • No clear token boundaries

The Pattern

Tokenize text into a stream of tokens, then parse tokens into a structure.

Installs
1
GitHub Stars
4
First Seen
Jun 19, 2026
tokenize-then-parse — jimmc414/claude-code-plugin-marketplace