Lint and fix GitHub Actions workflow files and action metadata files using seiton CLI.
Guidelines for the architecture and design principles of the parser in the `src/Seiton.Core/Parsing/` folder. This includes layer responsibilities, hand-written parsing rationale, and evolution strategies.
Policy for reading and writing specification documents under `.github/docs/`. Covers what belongs in specs (WHAT, WHY, lessons learned), what does not (detailed HOW), post-implementation updates, and cross-document consistency rules between parser specs and…
Guidelines for writing high-performance and memory-efficient code in `src/Seiton.Core/` (Parsing and Linting) and generated code emitted by `src/Seiton.Update/Generators/`. Covers zero allocations, per-run caching, zero-copy string design, bounded stackalloc…
Guidelines for writing and running sandbox code in the `sandbox/DotnetFiles/` folder. This is for quick experiments, prototyping, or verification of ideas without needing to set up a full project. It includes instructions on how to create .cs files, run them,…
Mandatory test-first workflow for all implementation, modification, and bug fix tasks in this project. Covers red-green test cycle, regression tests, benchmark verification, spec updates, equivalence-class coverage, and Playground (WASM/UI) test constraints.…
How to work with and add new dataset pipelines in `src/Seiton.Update/`. Covers the multi-stage pipeline model, CLI command naming conventions, and implementation checklist for new datasets.