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 andresquirogadev/skillsense --skill expressgit clone --depth 1 https://github.com/andresquirogadev/skillsenseWrote 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/andresquirogadev/skillsense/express)<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.
<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>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.00000 | $0.00512 |
| Opus 5 | $0.00000 | $0.00256 |
| Sonnet 5 | $0.00000 | $0.00102 |
| Haiku 4.5 | $0.00000 | $0.00051 |
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.
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 inserver.ts. - Parse JSON bodies with
express.json()and URL-encoded bodies withexpress.urlencoded()before route handlers. - Always set
trust proxyif running behind a reverse proxy (Nginx, Vercel, etc.):app.set('trust proxy', 1);
Routing
- Organize routes by domain in separate
Routerfiles; 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 viareq.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(',') })— nevercors()with no options in production. - Rate-limit authentication endpoints with
express-rate-limit. - Validate and sanitize all inputs with
zodorexpress-validatorbefore processing. - Never expose stack traces in error responses in production.
TypeScript
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.
- 8d ago First seen · 56 lines · 0 tokens per session scan A 7e2ad7a5e438
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.
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.
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…
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
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…
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"…
solr-extending
To build Solr plugins: SearchComponent, QParser, URP, DocTransformer.