javascript-development

javascript-development is a skill for Claude Code, Codex from PracticalSwan/agent-skills. It costs 52 tokens per session (6,888 once invoked), scanned A, original, MIT.

A guide to modern JavaScript and TypeScript development for browsers and Node.js, including asynchronous code, page interaction, and web APIs.

In plain words
What is it for?
Use it when building frontend logic, REST or fetch integrations, Node.js code, or JavaScript and TypeScript build setups.
Why use it?
It helps avoid outdated patterns and common failures in network code, browser behavior, accessibility, and asynchronous operations.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/practicalswan/agent-skills/javascript-development
Any agent
npx skills add PracticalSwan/agent-skills --skill javascript-development
Clone the repo
git clone --depth 1 https://github.com/PracticalSwan/agent-skills

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 javascript-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/practicalswan/agent-skills/javascript-development.svg)](https://agentmods.dev/skills/practicalswan/agent-skills/javascript-development)
Your own site
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/javascript-development"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/javascript-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,888 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00052 $0.06888
Opus 5 $0.00026 $0.03444
Sonnet 5 $0.00010 $0.01378
Haiku 4.5 $0.00005 $0.00689

Measured yesterday against content hash bedf1b64f163, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

javascript-development scanned grade A with 1 finding 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 yesterday.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

endpoints.map(url => fetch(url).then(r => r.json()))
javascript-development/SKILL.md · 1,043 lines

How it starts

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

JavaScript Development

Optimized for ECMAScript 2024+, Node.js 22+, TypeScript 5.5+, and modern browser or server-first JavaScript runtimes.

Expert guidance for writing modern JavaScript code with ES2024+ features, async programming patterns, DOM manipulation, API integration, and best practices following official JavaScript resources at https://developer.mozilla.org/en-US/docs/Web/JavaScript.

  • Leverage native parallel subagent dispatch and 200k+ context windows where available.

Anti-Patterns

  • Copying outdated browser or framework patterns: Deprecated APIs and old workarounds add complexity immediately.
  • Skipping abort, timeout, or response checks in async code: Network paths fail at the edges first, not on the happy path.
  • Treating accessibility as a final polish pass: Markup and state shape are harder to fix after the component contract is set.

Verification Protocol

Before claiming "skill applied successfully":

  1. Pass/fail: The Javascript Development implementation names the target runtime, framework version, and affected files.
  2. Pass/fail: Build, lint, test, or equivalent local validation is run for the changed surface.
  3. Pass/fail: Edge cases for errors, dependency drift, and environment differences are addressed or explicitly out of scope.
  4. Pressure-test scenario: Apply the workflow to a change that passes happy-path tests but fails one boundary condition.
  5. Success metric: Zero untested success claims; every implementation claim maps to a command or artifact.

Before and After Example

// Before
async function loadProfile() {
  const response = await fetch('/api/profile');
  return response.json();
}

// After
export async function loadProfile(signal) {
  const response = await fetch('/api/profile', { signal });
  if (!response.ok) {
    throw new Error(`Profile request failed: ${response.status}`);
  }
  return response.json();
}

Adds cancellation and explicit response validation so network failures do not masquerade as parsing bugs.

Read the full file on GitHub · 1,043 lines

Files

What ships with it

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

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. yesterday First seen · 1,043 lines · 52 tokens per session scan A bedf1b64f163

Subscribe to this mod's changes

javascript-development is a skill published in the GitHub repository PracticalSwan/agent-skills (13 stars, last pushed 4d ago), licensed MIT. It adds 52 tokens to every session and 6,888 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.