AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Biome Grit Rules

skill-theseus-run-theseus-biome-grit-rules · by theseus-run

Use when creating, reviewing, or modifying custom Biome Grit plugins in plugins/*.grit, especially deterministic agent-correction rules for stale Effect v3 patterns, local style hazards, and diagnostic messages that tell agents what to do next.

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-theseus-run-theseus-biome-grit-rules

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-theseus-run-theseus-biome-grit-rules)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Biome Grit Rules? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Biome Grit Rules

Use this skill for repo custom lint rules under plugins/*.grit.

Purpose

Custom rules turn repeated agent mistakes into deterministic feedback. In this repo, Effect v3 patterns are a primary target because they are common in model training data while Theseus uses Effect v4 patterns.

Before Adding A Rule

Add or tighten a rule only when:

  • the bad pattern is syntactically recognizable
  • the desired replacement is deterministic or clearly explainable
  • false positives are low
  • the pattern has appeared more than once, is high-risk, or reflects stale API training data
  • the rule can produce a useful diagnostic at the exact bad span

Propose first instead of editing when the rule could affect many files or needs semantic judgment.

Diagnostic Messages

Every diagnostic message should act as a small prompt:

  • name the repo rule or API generation, such as Effect v4
  • say what is wrong
  • say what to do instead
  • mention the relevant skill when the mistake implies a stale mental model

Example shape:

Effect v4: Effect.catchAll was renamed to Effect.catch. Use Effect.catch for all typed errors, Effect.catchTag/Effect.catchTags for specific tags, or Effect.catchCause for cause-level handling. Load skill: effect-v4.

Do not hard-code exact dependency versions unless the version itself is the rule.

Severity

  • Use error for stale APIs, known unsafe patterns, and hard repo invariants.
  • Use warning for style guidance or patterns with legitimate exceptions.
  • Avoid broad rules that force taste when the repo does not have a stable invariant.

Verification

After changing a rule:

  1. Run bunx biome check against a file that should trigger or currently triggered the rule.
  2. Confirm the diagnostic span and message are clear.
  3. Run the focused check against at least one nearby clean file when false positives are plausible.
  4. Run bun run lint when the rule is broad or touches shared config.

Maintenance

  • Keep plugin filenames specific and negative: no-effect-v3-catchall.grit.
  • Keep messages short enough to read in terminal output.
  • Prefer rules that remove a whole class of future fixes.
  • If a rule fires too broadly, narrow the pattern before lowering severity.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.