Create and debug modern JavaScript code with ES6+, async patterns, and Node.js APIs. Use when working on runtime behavior, promises, or browser and Node compatibility.
62
73%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./Skills/agent-ops/javascript-pro/SKILL.mdconst by default, let only when reassignment is required.Await every promise that affects correctness.
Use Promise.all only for truly independent operations.
Surface actionable errors with context.
Redact secrets, tokens, credentials, and sensitive data by default.
export async function loadJson(url) {
const response = await fetch(url)
if (!response.ok) throw new Error(`Fetch failed: ${response.status}`)
return response.json()
}| Skill | When to use |
|---|---|
| [[typescript]] | Typed JavaScript superset when strict contracts and module boundaries are needed |
| [[biome-linting]] | Enforce JavaScript/TypeScript lint and format rules with Biome |
Topic map: [[agent-ops]]
Infrastructure/references/deep-guidance.mdf1f2f21
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.