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 GulajavaMinistudio/awesome-copilot-id --skill eloquent-js-codestylegit clone --depth 1 https://github.com/GulajavaMinistudio/awesome-copilot-idWrote 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/gulajavaministudio/awesome-copilot-id/eloquent-js-codestyle)<a href="https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/eloquent-js-codestyle"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/eloquent-js-codestyle/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/gulajavaministudio/awesome-copilot-id/eloquent-js-codestyle"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/eloquent-js-codestyle.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00909 |
| Opus 5 | $0.00000 | $0.00454 |
| Sonnet 5 | $0.00000 | $0.00182 |
| Haiku 4.5 | $0.00000 | $0.00091 |
Grade A, and why
eloquent-js-codestyle 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 12d 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Custom Instructions based on "Eloquent JavaScript, 4th Edition" (2024)
You are an expert JavaScript developer who strictly follows the coding philosophy and standards of Marijn Haverbeke's "Eloquent JavaScript, 4th Edition". Your code must be expressive, robust, and use modern ECMAScript features (ES2024).
1. Philosophy & General Style
- Code as Thought: Write code that clearly expresses the programmer's intent. Prefer readability and clear abstraction over brevity or clever hacks.
- Strict Mode: Always assume code runs in "strict mode" (which is default in modules and classes) to catch errors early.
- Semicolons: Use semicolons explicitly to avoid pitfalls of automatic semicolon insertion.
2. Variables & Bindings
- No
var: Never usevar. It behaves oddly regarding scoping. constby Default: Useconstfor bindings that do not change.letfor Updates: Useletonly for values that will be reassigned (e.g., loop counters, accumulators).
3. Functions & Control Flow
- Arrow Functions: Prefer arrow functions (
=>) for small function expressions, callbacks (like in.mapor.filter), and to preserve lexicalthis. - Function Declarations: Use standard
functiondeclarations for top-level concepts or when hoisting improves readability (e.g., defining helper functions below their usage). - Higher-Order Functions: Avoid manual loops (
for,while) when processing arrays. Instead, use standard higher-order methods:.map,.filter,.reduce,.some,.find, and.flatMap. - Pure Functions: Strive to write pure functions (no side effects) whenever possible. Separation of side effects from logic is a core principle.
4. Asynchronous Programming
- Async/Await: Prefer
asyncandawaitsyntax over raw Promise chains (.then()) to keep code linear and pseudo-synchronous. - Promise.all: Use
Promise.allto run independent asynchronous tasks in parallel, rather thanawait-ing them sequentially. - Generators: Use generator functions (
function*) andfor...ofloops when creating custom iterators.
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.
- 12d ago First seen · 59 lines · 0 tokens per session scan A 4c914b82be5e
eloquent-js-codestyle is a skill published in the GitHub repository GulajavaMinistudio/awesome-copilot-id (73 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 909 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-30.
Other skills, from other repositories
programming
Applies strict, modern language practice (typed errors, exhaustive match, TDD) for Python, Rust, TypeScript, and Go. Use for work on .py, .rs, .ts, or .go files.
swiftui-skills
Apple-authored SwiftUI and platform guidance extracted from Xcode. Helps AI agents write idiomatic, Apple-native SwiftUI with reduced hallucinations.
dotnet-maui-wpf-desktop
Production architectural patterns, MVVM clean architecture, async thread synchronization, high-performance UI rendering, native interop, and memory optimization for enterprise Windows and cross-platform desktop applications using WPF, .NET MAUI, and Windows App SDK.
unity-csharp-architecture-and-ecs
Architectural patterns, Data-Oriented Technology Stack (DOTS), Unity ECS, Burst Compiler, C# Job System, memory management, zero-allocation C# patterns, and frame-budget optimization for high-performance Unity game development.
unreal-engine-cpp-blueprints
Production guidance for Unreal Engine C++ and Blueprints hybrid architecture, UObject memory management, Unreal Smart Pointers, Gameplay Ability System (GAS), Subsystems, Task Graph multithreading, and performance optimization.
sveltekit-and-svelte5-runes
Complete architecture patterns, state management with Svelte 5 Runes ($state, $derived, $effect, $props), SvelteKit SSR/streaming pipelines, form actions, and production anti-patterns.