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 jxoesneon/Ciel --skill modern-js-runtimesgit clone --depth 1 https://github.com/jxoesneon/CielWrote 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/jxoesneon/ciel/modern-js-runtimes)<a href="https://agentmods.dev/skills/jxoesneon/ciel/modern-js-runtimes"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/modern-js-runtimes/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/jxoesneon/ciel/modern-js-runtimes"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/modern-js-runtimes.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.00020 | $0.00529 |
| Opus 5 | $0.00010 | $0.00264 |
| Sonnet 5 | $0.00004 | $0.00106 |
| Haiku 4.5 | $0.00002 | $0.00053 |
Grade A, and why
modern-js-runtimes 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.
What it actually says
CIEL ADAPTATION: Modern JS Runtimes (Bun & Keccak)
This skill manages high-speed JS/TS development using Bun and enforces cryptographic correctness for specialized domains (Ethereum).
The Bun Stack
- All-in-One: Use Bun as the Runtime, Package Manager (
bun install), and Test Runner (bun test). - Natiive TS: Run
.tsfiles directly without a separate transpilation step. - Performance: Prefer Bun's native APIs (e.g.,
Bun.file(),Bun.serve()) over Node equivalents for hot paths.
Hashing Integrity (Ethereum)
- Hard Gate: For Ethereum contexts (selectors, signatures, storage slots), NEVER use Node's
crypto.createHash('sha3-256')(NIST SHA3). - Mandate: Use
keccak256fromethers,viem, orweb3. - Audit: Grep for
createHash.*sha3in Ethereum-related packages to find silent bugs.
Operational Standards
- Lockfiles: ALWAYS commit
bun.lock(text) orbun.lockb(binary) for reproducible installs. - Vercel: Explicitly set the runtime to Bun in project settings for 2x deployment speed.
Anti-Patterns
- Mixing Managers: Using
npmoryarnin a Bun-initialized project (corrupts lockfiles). - Amnesiac Hashing: Assuming "SHA3" means "Keccak" in JS (NIST SHA3 != Keccak-256).
- Silent Bun Failure: Ignoring Bun-specific dependency issues; fallback to Node if compatibility is broken.
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 · 49 lines · 20 tokens per session scan A 21bdf31102bd
modern-js-runtimes is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 20 tokens to every session and 529 once invoked, about $0.0001 per session on Opus 5. 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-09-03.
Other skills, from other repositories
nodejs-keccak256
Prevent Ethereum hashing bugs in JavaScript and TypeScript. Node's sha3-256 is NIST SHA3, not Ethereum Keccak-256, and silently breaks selectors, signatures, storage slots, and address derivation.
build-error-resolver
Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur. Fixes build/type errors only with minimal diffs, no architectural edits. Focuses on getting the build green quickly.
starknet-js
Use when writing or debugging JavaScript/TypeScript that interacts with Starknet through the starknet.js SDK — building Call objects or calldata, encoding/decoding Cairo types (felt252, u256, structs, arrays, spans, ByteArray, Option/Result/custom enums), or working with contracts, accounts, providers, transactions…
viem-integration
Integrate EVM blockchains using viem. Use when user says "read blockchain data", "send transaction", "interact with smart contract", "connect to Ethereum", "use viem", "use wagmi", "wallet integration", "viem setup", or mentions blockchain/EVM development with TypeScript.
solana
Use when working on Solana software, including one or more of: Solana client code using TypeScript, Rust libraries that use Solana crates, Anchor programs, Quasar programs, LiteSVM tests, including Rust program files, TypeScript tests, and Anchor.toml or Quasar.toml configuration. Designed to create minimal, reusable…
neo4j-driver-javascript-skill
Neo4j JavaScript/TypeScript Driver v6 — driver lifecycle, executeQuery, managed transactions (executeRead/executeWrite), session.run, Integer handling, JSON serialization, record access, async/await patterns, TypeScript types, error handling, and connection setup for Node.js and browser. Use when writing JS/TS code…