framework-expert

framework-expert is a skill for Claude Code, Codex from nguyenthienthanh/aura-frog. It costs 48 tokens per session (660 once invoked), scanned A, original, MIT.

A collection of guidance for common software frameworks, including React, Vue, Angular, Next.js, Node.js, Python, Laravel, Go, Flutter, React Native, and TypeScript.

In plain words
What is it for?
It detects the project's stack from files such as package.json, requirements.txt, composer.json, go.mod, pubspec.yaml, and tsconfig.json, then loads relevant framework guidance when needed.
Why use it?
It helps an agent use advice that matches the technologies already present in a project instead of applying unrelated framework rules.

Skill for Claude CodeCodex

Part of the aura-frog plugin — 43 skills, 24 commands, 15 agents, 10 hooks, 6 MCP servers shipped together

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/nguyenthienthanh/aura-frog/framework-expert
Any agent
npx skills add nguyenthienthanh/aura-frog --skill framework-expert
Clone the repo
git clone --depth 1 https://github.com/nguyenthienthanh/aura-frog

Made for: Claude Code, Codex.

Or install aura-frog, the plugin that ships this one along with the rest of its 43 skills, 24 commands, 15 agents, 10 hooks, 6 MCP servers.

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 framework-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/nguyenthienthanh/aura-frog/framework-expert.svg)](https://agentmods.dev/skills/nguyenthienthanh/aura-frog/framework-expert)
Your own site
<a href="https://agentmods.dev/skills/nguyenthienthanh/aura-frog/framework-expert"><img src="https://agentmods.dev/badge/skills/nguyenthienthanh/aura-frog/framework-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 660 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.1 $0.00048 $0.00660
Opus 5 $0.00024 $0.00330
Sonnet 5 $0.00010 $0.00132
Haiku 4.5 $0.00005 $0.00066

Measured 5d ago against content hash ca74441c672d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

framework-expert 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 5d 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.

aura-frog/skills/framework-expert/SKILL.md · 82 lines

How it starts

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

AI-consumed reference. Optimized for Claude to read during execution. Human-readable explanation: see docs/architecture/HIERARCHICAL_PLANNING.md or docs/getting-started/ depending on topic.

Framework Expert (Bundle)

Lazy-loads detected framework patterns. Per-framework depth (gotchas, decision criteria, code examples) lives in refs/<framework>.md — this bundle no longer delegates to separate <name>-expert skills; Read the matching ref file on demand once you detect the stack. Use Context7 for full library docs.

Detection

bundles[4]{bundle,frameworks,detect_by}:
  web-frontend,"react vue angular nextjs","package.json deps"
  web-backend,"nodejs python laravel go","package.json/requirements.txt/composer.json/go.mod"
  mobile,"react-native flutter","app.json (expo) or pubspec.yaml"
  typescript,typescript,"tsconfig.json or .ts files"

Svelte and Godot used to be listed here and had no reference of their own, so detecting either sent the model looking for depth that does not exist — reach for Context7 for those instead.

Framework References (Read on demand)

Once a framework is detected, Read its ref file for the gotchas and decision tables:

refs[11]{framework,ref}:
  React,refs/react.md
  Vue,refs/vue.md
  Angular,refs/angular.md
  Next.js,refs/nextjs.md
  Node.js,refs/nodejs.md
  Python,refs/python.md
  Laravel,refs/laravel.md
  Go,refs/go.md
  Flutter,refs/flutter.md
  React Native,refs/react-native.md
  TypeScript,refs/typescript.md

Core Patterns (All Frameworks)

core[8]{pattern,rule}:
  File organization,Group by feature not type
  Naming,PascalCase components camelCase functions
  Error handling,Graceful degradation + user feedback
  State,Minimize global state
  API design,RESTful or GraphQL conventions
  Testing,Unit + integration + e2e
  Performance,Lazy loading + code splitting
  Security,Input validation + sanitization

Read the full file on GitHub · 82 lines

Files

What ships with it

11 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. 5d ago First seen · 82 lines · 48 tokens per session scan A ca74441c672d

Subscribe to this mod's changes

framework-expert is a skill published in the GitHub repository nguyenthienthanh/aura-frog (24 stars, last pushed yesterday), licensed MIT. It adds 48 tokens to every session and 660 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

next-cache-components

Next.js 16 Cache Components guidance. Use when refactoring React Server Components for performance, debugging Partial Prerendering (PPR) issues, or applying the use cache directive, cacheLife, cacheTag, updateTag, and revalidateTag. Also use when deciding whether data should be static, cached, or dynamic, or when…

neverinfamous/memory-journal-mcp · 99 tokens

vercel-ai-sdk

Vercel AI SDK best practices and patterns. Use when building AI applications with React/Next.js and @ai-sdk/react, @ai-sdk/core, or @ai-sdk/ui. Covers useChat, streamText, generateObject, tool calling, and streaming architectures. SECURITY: Never pass raw user inputs to executable tools without strict Zod schema…

neverinfamous/memory-journal-mcp · 82 tokens

next-best-practices

Next.js and React performance optimization best practices - file conventions, RSC boundaries, data patterns, async APIs, Core Web Vitals, and bundle size. NOT for granular component caching strategies (use next-cache-components).

neverinfamous/memory-journal-mcp · 49 tokens

next-upgrade

Upgrade Next.js to a specific target version using safe dependency bumps, codemods, and diff reviews. Use when you need to execute major version bumps, resolve breaking changes, "upgrading Next.js", "migrate to Next.js 15 or 16", or safely "run @next/codemod" against the repository before upgrading.

neverinfamous/memory-journal-mcp · 75 tokens

component-gen

Generates a React/Vue/Svelte component with props, types, tests, and stories.

berkcangumusisik/claude-code-practices · 21 tokens

zoom-meeting-sdk-web-component-view

Zoom Meeting SDK Web - Component View. Embeddable Zoom meeting components with Promise-based API for flexible integration. Ideal for React/Vue/Angular apps and custom layouts. Uses ZoomMtgEmbedded with async/await patterns and embeddable UI containers.

anthropics/knowledge-work-plugins · 61 tokens