

Also from Kynth Studios


Also from Kynth Studios


Also from Kynth Studios
1234567Default to using Bun instead of Node.js.89- Use `bun <file>` instead of `node <file>` or `ts-node <file>`10- Use `bun run test` instead of `jest` or `vitest`11- Use `bun run build` instead of `webpack` or `esbuild`12- Use `bun install` instead of `npm install` or `yarn install` or `pnpm install`13- Use `bun run <script>` instead of `npm run <script>` or `yarn run <script>` or14 `pnpm run <script>`15- Bun automatically loads .env, so don't use dotenv.1617## APIs1819- `Bun.serve()` supports WebSockets, HTTPS, and routes. Don't use `express`.20- `bun:sqlite` for SQLite. Don't use `better-sqlite3`.21- `Bun.redis` for Redis. Don't use `ioredis`.22- `Bun.sql` for Postgres. Don't use `pg` or `postgres.js`.23- `WebSocket` is built-in. Don't use `ws`.24- `Bun.File()` for any file reading ans writing25- Bun.$`ls` instead of execa.2627## Frontend2829Use HTML imports with `Bun.serve()`. Don't use `vite`. HTML imports fully30support React, CSS, Tailwind.3132Server:3334```ts#index.ts35import index from "./index.html"3637Bun.serve({38 routes: {39 "/": index,40 "/api/users/:id": {41 GET: (req) => {42 return new Response(JSON.stringify({ id: req.params.id }));43 },44 },45 },46 // optional websocket support47 websocket: {48 open: (ws) => {49 ws.send("Hello, world!");50 },51 message: (ws, message) => {52 ws.send(message);53 },54 close: (ws) => {55 // handle close56 }57 },58 development: {59 hmr: true,60 console: true,61 }62})63```6465HTML files can import .tsx, .jsx or .js files directly and Bun's bundler will66transpile & bundle automatically. `<link>` tags can point to stylesheets and67Bun's CSS bundler will bundle.6869```html#index.html70<html>71 <body>72 <h1>Hello, world!</h1>73 <script type="module" src="./frontend.tsx"></script>74 </body>75</html>76```7778With the following `frontend.tsx`:7980```tsx#frontend.tsx81import React from "react";8283// import .css files directly and it works84import './index.css';8586import { createRoot } from "react-dom/client";8788const root = createRoot(document.body);8990export default function Frontend() {91 return <h1>Hello, world!</h1>;92}9394root.render(<Frontend />);95```9697Then, run index.ts9899```sh100bun --hot ./index.ts101```102103For more information, read the Bun API docs in104`node_modules/bun-types/docs/**.md`.105
One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| settlemint/sdk.cursor/rules/commands.mdc · 15 | Cursor rules | setup | 31/100 | 14 days ago | |
| settlemint/sdk.cursor/rules/solidity.mdc · 15 | Cursor rules | teststylearchtypes+6 | 73/100 | 14 days ago | |
| settlemint/sdk.cursor/rules/commits.mdc · 15 | Cursor rules | lint-formattypesgitdependencies | 48/100 | 14 days ago | |
| settlemint/sdk.cursor/rules/git-workflow.mdc · 15 | Cursor rules | gitdo-notagent-behaviour | 65/100 | 14 days ago | |
| settlemint/sdk.cursor/rules/mcp.mdc · 15 | Cursor rules | no sections | 4/100 | 14 days ago | |
| settlemint/sdk.cursor/rules/shadcn.mdc · 15 | Cursor rules | ui | 55/100 | 14 days ago | |
| settlemint/sdk.cursor/rules/typescript.mdc · 15 | Cursor rules | setuplint-formatstylearch+3 | 66/100 | 14 days ago | |
| settlemint/sdkCLAUDE.md · 15 | CLAUDE.md | setupbuildtestlint-format+10 | 96/100 | 14 days ago |
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| hiromaily/go-crypto-wallet.cursor/rules/typescript.mdc · 126 | Cursor rules | setupbuildtestlint-format+6 | 100/100 | 14 days ago | |
| TechSquidTV/Hermes.cursor/rules/10-hermes-api.mdc · 45 | Cursor rules | testlint-formatstylearch+5 | 100/100 | 14 days ago | |
| dodgecfr/combatfilms-webapp.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 14 days ago | |
| deifos/clipmira-subtitles.cursor/rules/frontend.mdc · 1 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 14 days ago | |
| markstev/mark-starter.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+6 | 99/100 | 14 days ago | |
| Allymahmoud/case-intake-platform.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 14 days ago | |
| langflow-ai/langflow.cursor/rules/docs_development.mdc · 153k | Cursor rules | setupbuildtestlint-format+7 | 97/100 | 14 days ago | |
| TechSquidTV/Hermes.cursor/rules/20-hermes-api-tests.mdc · 45 | Cursor rules | teststyletesting-strategysecurity+3 | 97/100 | 14 days ago |
A badge carrying the measured quality of the strongest agent config file in this repository, out of 100. It reads from this index every time somebody loads your page, so it changes when the measurement changes and there is nothing to keep up to date. Free, no account, and the value is not something you or we can set by hand.
[](https://rulestack.kynth.studio/configs/settlemint-sdk-cursor-rules-bun)Would rather not hotlink us? Every badge is also served in shields.io’s endpoint schema, so shields renders the image and your readers never talk to our domain:
Published by Toolproof, the masthead over this index and eight others. The method behind the number is at toolproof.kynth.studio/methodology, and the whole thing is readable as JSON with no key at /api.