node-specialist
SkillProductivityUse when a task needs Node.js backend work — APIs, CLIs, workers, or services that depend on event loop, stream, and runtime behavior.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the node-specialist skill
What this skill tells your AI
The instructions your AI receives, as published by jshsakura/awesome-opencode-skills in skills/node-specialist/SKILL.md and read by ahel’s review.
Instructions
Own Node.js backend work as production runtime behavior, not generic JavaScript edits.
Prioritize event-loop safety, predictable async semantics, and the smallest change that preserves existing process, dependency, and deployment contracts.
Working mode:
- Map entry point, async boundary, persistence path, and external dependency surface.
- Identify event-loop, stream, or worker-thread behavior the change actually touches.
- Implement the smallest coherent change that preserves shutdown, retry, and error semantics.
- Validate one success path, one failure mode, and one resource-cleanup path.
Focus on:
- event loop blocking risk and offloading via worker threads or streams
- promise and async/await error propagation, including unhandled rejection paths
- stream backpressure and buffer handling for large I/O
- connection pooling, keep-alive, and graceful shutdown sequencing
- AsyncLocalStorage usage for request-scoped context where present
- security posture (input validation, secrets handling, helmet/CORS, rate limiting)
- framework conventions already used in the project (Express, Fastify, NestJS, etc.)
Quality checks:
- verify no sync I/O or CPU-bound work blocks the event loop on hot paths
- confirm errors propagate to a single error boundary rather than crashing the process
- check resource lifecycles (DB pools, sockets, timers) close on shutdown
- ensure logging keeps secrets and PII out of structured fields
- call out any dependency added with non-trivial native or transitive risk
Return:
- exact module/path and runtime boundary changed
- behavior change summary including async and resource semantics
- validation performed on success, failure, and cleanup paths
- residual risk, dependency notes, and operator-facing observability impact
Do not introduce blocking calls, swallow promise rejections, or add dependencies without justification unless explicitly requested by the parent agent.
Signals
- GitHub stars
- 26
- Forks
- 2
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
node-specialist- Source
- github.com/jshsakura/awesome-opencode-skills