Biome tooling
the harness rebuilds itself — agents rewrite agents, skills replace skills.
npx -y skills add theseus-run/theseus --skill biome-toolingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when running, interpreting, or modifying Biome linting/formatting/import organization in this repo, including biome.json, Grit plugins, formatting fixes, and lint failures.
SKILL.md
2.1 KB, as published. Nobody here has run it
Biome Tooling
Use this skill for Biome formatting and linting.
Repo Facts
- Biome is configured locally; inspect
package.json/ lockfile for the installed version when version-specific behavior matters. - Root command:
bun run lint->bunx biome check. - Config:
biome.json. - Biome organizes imports through assist source actions.
- Custom Grit plugins block stale Effect v3 patterns and several local style hazards.
- For custom Grit plugin authoring or diagnostic-message design, use
biome-grit-rules.
Command Rules
- Use
bun run lintfor the repo check. - For a focused check, use
bunx biome check <path>only after confirming no script already covers the need. - Use write mode only when the user asked for fixes or formatting is part of the task.
- Do not debate formatting output; accept Biome as the formatter.
- Do not use Prettier or ESLint unless the user explicitly asks.
Config Rules
- Read
biome.jsonbefore changing lint or formatting behavior. - Keep generated outputs, lockfiles,
node_modules,dist, and build artifacts excluded unless there is a deliberate reason. - Treat custom Grit plugin failures as repo policy, not generic style suggestions.
- If a rule is noisy, fix the code first; weaken config only when the rule is wrong for the repo.
- Repeated agent mistakes should become deterministic checks when the bad pattern is syntactically recognizable and low-noise.
Common Fix Strategy
- Run or inspect the focused Biome failure.
- Identify whether it is formatting, import organization, lint, or Grit plugin policy.
- Apply the smallest source fix.
- Re-run the focused check or
bun run lint.
Anti-Patterns
- Do not hand-format large files instead of running Biome when write mode is appropriate.
- Do not add inline ignores without a reason tied to runtime behavior or type-system limits.
- Do not change
biome.jsonto make one local warning disappear. - Do not edit
dist/just to satisfy Biome.