express

express is a skill for Claude Code, Codex from andresquirogadev/skillsense. It costs 0 tokens per session (512 once invoked), scanned A, original, MIT.

A set of coding conventions for building web servers with Express.js, a JavaScript framework for handling HTTP requests.

In plain words
What is it for?
Use it when creating or modifying Express applications, especially their server setup, routes, middleware, and error responses.
Why use it?
It gives the agent consistent rules for organizing routes, middleware, input validation, proxy settings, and error handling.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when creating or modifying Express applications, especially their server setup, routes, middleware, and error responses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andresquirogadev/skillsense/express
Install

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.

Any agent
npx skills add andresquirogadev/skillsense --skill express
Clone the repo
git clone --depth 1 https://github.com/andresquirogadev/skillsense

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for express

README.md
[![agentmods](https://agentmods.dev/badge/skills/andresquirogadev/skillsense/express/github.svg)](https://agentmods.dev/skills/andresquirogadev/skillsense/express)
Your own site
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/express"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/express/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for express

Your own site · 80×15
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/express"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/express.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 512 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00512
Opus 5 $0.00000 $0.00256
Sonnet 5 $0.00000 $0.00102
Haiku 4.5 $0.00000 $0.00051

Measured 8d ago against content hash 7e2ad7a5e438, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

express 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 8d 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.

packages/catalog/skills/express/SKILL.md · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Express Skill

You are working with Express.js. Apply these conventions.

Application Setup

  • Create the Express app and all middleware in app.ts; start the HTTP server in server.ts.
  • Parse JSON bodies with express.json() and URL-encoded bodies with express.urlencoded() before route handlers.
  • Always set trust proxy if running behind a reverse proxy (Nginx, Vercel, etc.):
    app.set('trust proxy', 1);
    

Routing

  • Organize routes by domain in separate Router files; mount them on the app with a prefix.
  • Use express.Router() per domain, not per HTTP method.
  • Use named route parameters (/users/:id) and access via req.params.id.
  • Always validate path params and query strings — never trust them raw.

Middleware

  • Keep middleware in a middleware/ directory; export as named functions.
  • Error-handling middleware has signature (err, req, res, next) — must have all 4 params for Express to recognize it.
  • Apply authentication middleware per-router or per-route, not app-wide unless all routes require auth.

Error Handling

  • Define a centralized error handler as the last middleware:
    app.use((err: Error, req: Request, res: Response, _next: NextFunction) => {
      res.status(500).json({ error: err.message });
    });
    
  • Use next(error) to forward errors from async handlers to the error middleware.
  • Wrap async route handlers to catch unhandled rejections:
    const asyncHandler = (fn: RequestHandler) => (req: Request, res: Response, next: NextFunction) =>
      Promise.resolve(fn(req, res, next)).catch(next);
    

Security

  • Use helmet() to set secure HTTP headers.
  • Use cors({ origin: process.env.ALLOWED_ORIGINS?.split(',') }) — never cors() with no options in production.
  • Rate-limit authentication endpoints with express-rate-limit.
  • Validate and sanitize all inputs with zod or express-validator before processing.
  • Never expose stack traces in error responses in production.

TypeScript

Read the full file on GitHub · 56 lines

Changes

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.

  1. 8d ago First seen · 56 lines · 0 tokens per session scan A 7e2ad7a5e438

Subscribe to this mod's changes

express is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 512 tokens. 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.

Related

Other skills, from other repositories

sdd-apply

Skill "sdd-apply" from Gentleman-Programming/gentle-ai, covering execution role, language domain contract, purpose, what you receive and execution and persistence contract.

Gentleman-Programming/gentle-ai · 0 tokens

printing-press-amend

Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…

mvanhorn/cli-printing-press · 222 tokens

rework-rate

Measure and interpret PR rework rate — the emerging 5th DORA metric.

bradygaster/squad · 20 tokens

printing-press

Set up a new integration, connector, or CLI binding for any API. Wrap or generate a ship-ready Go CLI from an OpenAPI, HAR, or Postman spec via the lean research -> generate -> build -> shipcheck loop. Use when the user says build a CLI, wrap this API, set up a new integration, add a connector, integrate with a…

mvanhorn/cli-printing-press · 86 tokens

opensrc

Fetch dependency source code to give AI agents deeper implementation context. Use when the agent needs to understand how a library works internally, read source code for a package, fetch implementation details for a dependency, or explore how an npm/PyPI/crates.io package is built. Triggers include "fetch source for"…

vercel-labs/opensrc · 103 tokens

solr-extending

To build Solr plugins: SearchComponent, QParser, URP, DocTransformer.

griddynamics/rosetta · 23 tokens