Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add fellipeutaka/leon --skill elysiagit clone --depth 1 https://github.com/fellipeutaka/leonWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/fellipeutaka/leon/elysia)<a href="https://agentmods.dev/skills/fellipeutaka/leon/elysia"><img src="https://agentmods.dev/badge/skills/fellipeutaka/leon/elysia.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00020 | $0.04007 |
| Opus 5 | $0.00010 | $0.02004 |
| Sonnet 5 | $0.00004 | $0.00801 |
| Haiku 4.5 | $0.00002 | $0.00401 |
Grade A, and why
elysiajs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 508 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ElysiaJS Development Skill
Always consult elysiajs.com/llms.txt for code examples and latest API.
Overview
ElysiaJS is a TypeScript framework for building Bun-first (but not limited to Bun) type-safe, high-performance backend servers. This skill provides comprehensive guidance for developing with Elysia, including routing, validation, authentication, plugins, integrations, and deployment.
When to Use This Skill
Trigger this skill when the user asks to:
- Create or modify ElysiaJS routes, handlers, or servers
- Setup validation with any Standard Schema library (Zod, Valibot, ArkType) or TypeBox
- Implement authentication (JWT, session-based, macros, guards)
- Add plugins (CORS, OpenAPI, Static files, JWT)
- Integrate with external services (Drizzle ORM, Better Auth, Next.js, Eden Treaty)
- Setup WebSocket endpoints for real-time features
- Create unit tests for Elysia instances
- Deploy Elysia servers to production
Quick Start
Quick scaffold:
bun create elysia app
Basic Server
import { Elysia, t, status } from 'elysia'
const app = new Elysia()
.get('/', () => 'Hello World')
.post('/user', ({ body }) => body, {
body: t.Object({
name: t.String(),
age: t.Number()
})
})
.get('/id/:id', ({ params: { id } }) => {
if(id > 1_000_000) return status(404, 'Not Found')
return id
}, {
params: t.Object({
id: t.Number({ minimum: 1 })
}),
response: {
200: t.Number(),
404: t.Literal('Not Found')
}
})
.listen(3000)
Note: This example uses TypeBox (
t) for brevity. If your project uses Zod, Valibot, or another Standard Schema library, use that instead. See the "Validation" section below.
Basic Usage
HTTP Methods
import { Elysia } from 'elysia'
new Elysia()
.get('/', 'GET')
.post('/', 'POST')
.put('/', 'PUT')
.patch('/', 'PATCH')
.delete('/', 'DELETE')
.options('/', 'OPTIONS')
.head('/', 'HEAD')
What ships with it
54 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 193 B
- examples/basic.ts 168 B runs code
- examples/body-parser.ts 714 B runs code
- examples/complex.ts 2.5 KB runs code
- examples/cookie.ts 751 B runs code
- examples/error.ts 654 B runs code
- examples/file.ts 216 B runs code
- examples/guard.ts 682 B runs code
- examples/map-response.ts 299 B runs code
- examples/redirect.ts 136 B runs code
- examples/rename.ts 818 B runs code
- examples/schema.ts 1.1 KB runs code
- examples/state.ts 126 B runs code
- examples/upload-file.ts 343 B runs code
- examples/websocket.ts 538 B runs code
- integrations/ai-sdk.md 2.0 KB
- integrations/astro.md 1.2 KB
- integrations/better-auth.md 2.6 KB
- integrations/cloudflare-worker.md 1.8 KB
- integrations/deno.md 627 B
- integrations/drizzle.md 6.0 KB
- integrations/expo.md 1.8 KB
- integrations/nextjs.md 2.1 KB
- integrations/nodejs.md 1.0 KB
- integrations/nuxt.md 1.1 KB
- integrations/prisma.md 1.9 KB
- integrations/react-email.md 3.0 KB
- integrations/sveltekit.md 1.2 KB
- integrations/tanstack-start.md 1.8 KB
- integrations/vercel.md 935 B
- metadata.json 219 B
- patterns/mvc.md 11 KB
- plugins/bearer.md 698 B
- plugins/cors.md 3.7 KB
- plugins/cron.md 8.6 KB
- plugins/graphql-apollo.md 1.6 KB
- plugins/graphql-yoga.md 1.7 KB
- plugins/html.md 3.8 KB
- plugins/jwt.md 6.5 KB
- plugins/openapi.md 4.2 KB
- plugins/opentelemetry.md 4.1 KB
- plugins/server-timing.md 1.8 KB
- plugins/static.md 1.8 KB
- references/bun-fullstack-dev-server.md 2.3 KB
- references/cookie.md 3.6 KB
- references/deployment.md 6.9 KB
- references/eden.md 3.5 KB
- references/lifecycle.md 5.3 KB
- references/macro.md 1.8 KB
- references/plugin.md 4.9 KB
- references/route.md 7.3 KB
- references/testing.md 8.1 KB
- references/validation.md 12 KB
- references/websocket.md 4.0 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 508 lines · 20 tokens per session scan A 4587cbd1f949
elysiajs is a skill published in the GitHub repository fellipeutaka/leon (5 stars, last pushed 3d ago), licensed MIT. It adds 20 tokens to every session and 4,007 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
adapter-express
Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.
trpc-router
Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.
stripe-projects
Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.
chat-sdk
Build multi-platform chat bots with Chat SDK (chat npm package). Use when developers want to (1) Build a Slack, Teams, Google Chat, Discord, Telegram, GitHub, Linear, or WhatsApp bot, (2) Use Chat SDK to handle mentions, direct messages, subscribed threads, reactions, slash commands, cards, modals, files, or AI…
nestjs-expert
Creates and configures NestJS modules, controllers, services, DTOs, guards, and interceptors for enterprise-grade TypeScript backend applications. Use when building NestJS REST APIs or GraphQL services, implementing dependency injection, scaffolding modular architecture, adding JWT/Passport authentication, integrating…
fastify-best-practices
Guides development of Fastify Node.js backend servers and REST APIs using TypeScript or JavaScript. Use when building, configuring, or debugging a Fastify application — including defining routes, implementing plugins, setting up JSON Schema validation, handling errors, optimising performance, managing authentication…