Install
$ agentstack add skill-theseus-run-theseus-biome-grit-rules ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
errorfor stale APIs, known unsafe patterns, and hard repo invariants. - Use
warningfor 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:
- Run
bunx biome checkagainst a file that should trigger or currently triggered the rule. - Confirm the diagnostic span and message are clear.
- Run the focused check against at least one nearby clean file when false positives are plausible.
- Run
bun run lintwhen 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.
- Author: theseus-run
- Source: theseus-run/theseus
- License: MIT
- Homepage: https://www.theseus.run
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.