Quick guidance for BiomeJS configuration based on Sablier project patterns.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionbiome-jsExecute the skills CLI command in your project's root directory to begin installation:
Fetches biome-js from paulrberg/agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate biome-js. Access via /biome-js in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
3
total installs
3
this week
42
GitHub stars
0
upvotes
Run in your terminal
3
installs
3
this week
42
stars
Quick guidance for BiomeJS configuration based on Sablier project patterns.
Extend shared configs via npm package exports. The consuming project must always provide its own files.includes:
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["@sablier/devkit/biome"],
"files": {
"includes": ["**/*.{js,json,jsonc,ts}", "!node_modules/**/*"]
}
}
For UI projects, extend both base and ui configs:
{
"extends": ["@sablier/devkit/biome/base", "@sablier/devkit/biome/ui"],
"files": {
"includes": ["**/*.{css,js,jsx,json,jsonc,ts,tsx}"]
}
}
In monorepos, workspace configs inherit from root using "//":
// packages/my-package/biome.jsonc
{
"extends": ["//"],
"overrides": [
// package-specific overrides
]
}
Always specify files.includes explicitly. Common patterns:
| Project Type | Pattern |
|---|---|
| Library | **/*.{js,json,jsonc,ts} |
| UI/Frontend | **/*.{css,js,jsx,json,jsonc,ts,tsx} |
| With GraphQL | **/*.{css,graphql,js,jsx,json,jsonc,ts,tsx} |
Exclusions: !node_modules/**/*, !**/generated, !dist
Relax strict rules in test files:
{
"overrides": [
{
"includes": ["**/tests/**/*.ts", "**/*.test.ts"],
"linter": {
"rules": {
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off"
}
}
}
}
]
}
Disable sorting and compact formatting for generated code:
{
"overrides": [
{
"includes": ["**/abi/**/*.ts", "**/generated/**/*.ts"],
"assist": {
"actions": {
"source": {
"useSortedKeys": "off"
}
}
},
"javascript": {
"formatter": {
"expand": "never"
}
}
}
]
}
Enforce barrel imports for specific modules:
{
"overrides": [
{
"includes": ["src/**/*.{ts,tsx}"],
"linter": {
"rules": {
"correctness": {
"noRestrictedImports": {
"level": "error",
"options": {
"paths": {
"@/core": "Import from @/core (barrel) instead of subpaths"
}
}
}
}
}
}
}
]
}
| Rule | Default | Rationale |
|---|---|---|
noFloatingPromises |
error | Floating promises cause bugs |
noUnusedImports |
off | Allow during dev, enforce in pre-commit |
noUnusedVariables |
error | Keep code clean |
useImportType |
warn (separatedType) | Explicit type imports |
useSortedKeys |
on | Consistent object ordering |
useSortedClasses |
warn (UI) | Tailwind class sorting |
useFilenamingConvention |
kebab/camel/Pascal | Flexible naming |
noVoid |
off | Useful for useEffect callbacks |
useTemplate |
off | Allow string concatenation |
Standard pattern for pre-commit hooks:
// .lintstagedrc.js
module.exports = {
"*.{json,jsonc,ts,tsx}": "bun biome check --write",
"*.{md,yml,yaml}": "bun prettier --cache --write",
"*.{ts,tsx}": "bun biome check --write --only=correctness/noUnusedImports",
};
The separate noUnusedImports pass enforces import cleanup only at commit time, not during development.
For frontend projects with Tailwind CSS:
{
"css": {
"parser": {
"tailwindDirectives": true
}
},
"assist": {
"actions": {
"source": {
"useSortedAttributes": "on"
}
}
},
"linter": {
"rules": {
"nursery": {
"useSortedClasses": {
"fix": "safe",
"level": "warn",
"options": {
"attributes": ["classList"],
"functions": ["clsx", "cva", "cn", "tv", "tw"]
}
}
}
}
}
}
Biome v2.4.0+ auto-enables CSS Modules parsing for *.module.css, so explicit
"cssModules": true is usually unnecessary unless your project needs non-standard behavior.
biome check and biome ci now support --only and --skip for targeted rule/action runs.biome check --write now also applies formatting when applying fixes..biome.json and .biome.jsonc.$HOME/.config/biome on Linux/macOS equivalents).formatter.trailingNewline can disable trailing newline insertion.v2.4.0; expect larger diffs in HTML/Vue/Svelte/Astro if formatter support is enabled."No files matched": Check files.includes patterns match your file structure.
Conflicting rules: Overrides are applied in order; later overrides take precedence.
Schema errors: Use local schema reference for IDE support:
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json"
Biome handles JS/TS/JSON/CSS formatting. Use Prettier for:
.md, .mdx).yml, .yaml)Working examples in ./examples/:
./examples/base-config.jsonc - Minimal library configuration./examples/ui-config.jsonc - Frontend project with Tailwind./examples/lint-staged.js - Pre-commit hook configurationFor advanced features, migrations, or complete rule reference, consult the official Biome documentation via Context7 MCP:
Use context7 to fetch Biome documentation for [specific topic]
The official docs at biomejs.dev should be consulted as a last resort for features not covered here.
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
Useful defaults in biome-js — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added biome-js from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
biome-js is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: biome-js is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added biome-js from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
biome-js fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in biome-js — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Registry listing for biome-js matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend biome-js for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
biome-js reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 31