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 DauQuangThanh/hanoi-rainbow --skill frontend-codinggit clone --depth 1 https://github.com/DauQuangThanh/hanoi-rainbowWrote 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/dauquangthanh/hanoi-rainbow/frontend-coding)<a href="https://agentmods.dev/skills/dauquangthanh/hanoi-rainbow/frontend-coding"><img src="https://agentmods.dev/badge/skills/dauquangthanh/hanoi-rainbow/frontend-coding/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/dauquangthanh/hanoi-rainbow/frontend-coding"><img src="https://agentmods.dev/badge/skills/dauquangthanh/hanoi-rainbow/frontend-coding.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.00093 | $0.01018 |
| Opus 5 | $0.00046 | $0.00509 |
| Sonnet 5 | $0.00019 | $0.00204 |
| Haiku 4.5 | $0.00009 | $0.00102 |
Grade A, and why
frontend-coding 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.
How it starts
The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend Coding
Overview
Expert frontend development guidance covering React, Vue, Angular, TypeScript, state management, component architecture, performance optimization, accessibility, testing, and modern web APIs.
Core Capabilities
- Framework Expertise - React, Vue, Angular, Svelte
- TypeScript - Type-safe development
- State Management - Redux, Vuex, Pinia, Context API
- Component Patterns - Composition, hooks, composables
- Performance - Code splitting, lazy loading, optimization
- Accessibility - WCAG compliance, ARIA
- Testing - Jest, Testing Library, Cypress
Quick Start
React Component Example:
import React, { useState, useEffect } from 'react';
interface User {
id: number;
name: string;
}
export const UserList: React.FC = () => {
const [users, setUsers] = useState<User[]>([]);
const [loading, setLoading] = useState(true);
useEffect(() => {
fetch('/api/users')
.then(res => res.json())
.then(data => {
setUsers(data);
setLoading(false);
});
}, []);
if (loading) return <div>Loading...</div>;
return (
<ul>
{users.map(user => (
<li key={user.id}>{user.name}</li>
))}
</ul>
);
};
Critical Tips
- Use TypeScript - Type safety prevents runtime errors
- Component composition - Build reusable, composable components
- Performance matters - Memoization, lazy loading, code splitting
- Accessibility first - WCAG compliance from the start
- Test thoroughly - Unit, integration, E2E testing
Framework-Specific Guidance
React Development - See react-development.md for:
- Functional components and hooks (useState, useEffect, useCallback, useMemo)
- Custom hooks and composition patterns
- Context API and prop drilling solutions
- React Server Components and Next.js
React Advanced Patterns - See react-patterns.md for:
What ships with it
9 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.
- references/best-practices.md 1.1 KB
- references/component-patterns.md 3.3 KB
- references/performance-testing.md 29 KB
- references/react-development.md 10.0 KB
- references/react-patterns.md 29 KB
- references/state-management.md 4.8 KB
- references/typescript-best-practices.md 3.3 KB
- references/vue-patterns.md 30 KB
- references/vuejs-development.md 6.0 KB
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 · 134 lines · 93 tokens per session scan A 656bef85a229
frontend-coding is a skill published in the GitHub repository DauQuangThanh/hanoi-rainbow (16 stars, last pushed 7mo ago), licensed MIT. It adds 93 tokens to every session and 1,018 once invoked, about $0.0005 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-08-31.
Other skills, from other repositories
frontend-typescript-rules
Applies React/TypeScript type safety, component design, and state management rules. Use when implementing React components.
angular
Use when building, refactoring, or debugging Angular (v20/21+): standalone components, signals, zoneless change detection, @if/@for/@defer control flow, inject() DI, resource()/httpResource(), RxJS interop, NgRx SignalStore, ng CLI. NOT React (that is react), NOT Next.js (that is nextjs), NOT a TypeScript language…
shared-tooling-biome
Biome v2 unified linter, formatter, and import organizer — single Rust-powered tool replacing ESLint + Prettier with 97% Prettier compatibility and 20x faster performance.
migrate
Code migration assistant — upgrade frameworks, convert languages, modernize patterns.
typescript-expert
Use this skill when writing or reviewing TypeScript/JavaScript code. Covers modern TS patterns, React best practices, Node.js patterns, type system mastery, bundler config, testing, and production-...
react-dev
This skill should be used when building React components with TypeScript, typing hooks, handling events, or when React TypeScript, React 19, Server Components are mentioned. Covers type-safe patterns for React 18-19 including generic components, proper event typing, and routing integration (TanStack Router, React…