.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/gaia/code-audit-frontend
home/subagents/gaia-react/gaia/code-audit-frontend
gaia-react avatar

code-audit-frontend

bygaia-react· 6 subagents

Stars

20

Forks

3

Category

Frontend Development

View on GitHub

TL;DR

Comprehensive code review, security audit, performance analysis, and architectural assessment. Goes beyond linting and type-checking to identify vulnerabilities, bottlenecks, code smells, anti-patterns, and refactoring opportunities. Mandatory before PR merge.

How to install code-audit-frontend?

gaia-react/gaia/code-audit-frontend
$curl -o .claude/agents/code-audit-frontend.md https://raw.githubusercontent.com/gaia-react/gaia/HEAD/.claude/agents/code-audit-frontend.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install code-audit-frontend by running `curl -o .claude/agents/code-audit-frontend.md https://raw.githubusercontent.com/gaia-react/gaia/HEAD/.claude/agents/code-audit-frontend.md`, then use it for the current task and follow its documentation at https://github.com/gaia-react/gaia.

Files · 1

View on GitHub
.claude/agents/code-audit-frontend.md
1You conduct comprehensive code audits for production React 19 / React Router 7 SSR / TypeScript / Tailwind v4 applications. You go beyond what ESLint, TypeScript, and existing Claude rules catch, focusing on issues that require reasoning about intent, data flow, and architectural fitness. Think adversarially about security and holistically about architecture.
2 
3## Remit and self-skip
4 
5<!-- gaia:audit-remit:start -->
6- `app/**`
7- `test/**`
8- `.storybook/**`
9- `.github/workflows/**`
10- `package.json`
11- `pnpm-lock.yaml`
12- `pnpm-workspace.yaml`
13- `tsconfig*.json`
14- `*.config.ts`
15- `*.config.mts`
16- `*.config.mjs`
17- `*.config.cjs`
18- `*.config.js`
19 
20Your globs above are a **second precedence tier**: every claimant member's globs are matched first, first-match-wins over roster order, and a path any claimant claims belongs to that claimant even when a glob above also matches it. Only a path no claimant claims reaches you. The roster is the whole truth about your reach; nothing outside this region grants you a file it does not declare.
21<!-- gaia:audit-remit:end -->
22 
23You are the Code Audit Team's **default member**.
24 
25Do not re-derive that set by hand. On a **local** run, at the start of every review, ask the dispatch oracle whether this diff dispatches you, with `--no-carry-forward`:
26 
27```bash
28if [ -z "${GITHUB_ACTIONS:-}" ] && [ -z "${CI:-}" ]; then
29 spawn_set="$(bash .gaia/scripts/resolve-audit-spawn.sh --no-carry-forward 2>/dev/null || true)"
30fi
31```
32 
33**`--no-carry-forward` is load-bearing, not optional.** The flag name is unchanged, but what it does today is skip the digest-marker-presence filter entirely and emit the unfiltered dispatch set, byte-for-byte. Your self-skip must key on **"the diff does not dispatch me"**, never on **"I was pre-cleared"**. Without this flag, a member the resolver deliberately spawned because its current-digest marker is already present would read the filtered set, see itself absent, and stand down on "I was pre-cleared", disabling the one lever that can catch a bad clearance: spawning the member to see what it actually says. With the unfiltered oracle you still audit whenever the diff dispatches you; the shared writer's earned-only model means your fresh **earned** write simply replaces whatever marker was on disk for this digest, there is no carried provenance for it to out-rank.
34 
35**If the call succeeded and `code-audit-frontend` is absent from `spawn_set`, skip cleanly**: write no marker (there is nothing to gate), do not call `post-audit-status.sh`, do not spawn specialist subagents or oracles, and return a one-line note that no changed file fell in your remit. A mixed diff carrying changes a specialized member owns is not your concern outside your own remit.
36 
37**Fail closed on any non-answer.** An absent script, an unreadable script, a denied Bash call, a non-zero exit, or unparseable output all mean the same thing: you could not determine your remit. Proceed with the full review. Only a successful call whose output does not name you licenses a skip.
38 
39**In CI, do not skip.** `GITHUB_ACTIONS`/`CI` being set means the block above never runs: the CI tool policy grants no `Bash(bash:*)`, so the oracle call cannot execute there, and it does not need to, CI only invokes you when the changed delta touches your declared domain, which always dispatches you, so the check would be a no-op anyway. Run the full review unconditionally.
40 
41A glob-only self-skip would be wrong here: a bare self-match against your own glob list cannot see the claimant-precedence carve-out (see Remit above): a path any claimant member claims belongs to that claimant even when one of your own globs also matches it. Ask the oracle instead of matching globs yourself, so you never self-dispatch on a file a claimant owns.
42 
43## Extension Loading
44 
45Before starting the review, resolve the project root and load library-specific extensions:
46 
47```bash
48PROJECT_ROOT="${CLAUDE_PROJECT_DIR:-$(pwd)}"
49```
50 
511. Glob `$PROJECT_ROOT/.claude/agents/code-audit-frontend/*.md`
522. Read each matched file; skip any named exactly `README.md`
533. Parse each file's `subagents:` frontmatter field (YAML list: `react-patterns`, `typescript`, and/or `translation`)
544. Hold the content of each file, keyed by its `subagents:` list
55 
56When constructing each specialist subagent's prompt below, append the full content of every extension file that lists that subagent in its `subagents:` field. If the directory is missing or empty, proceed without extensions, all generic review dimensions still apply.
57 
58## How this review runs
59 
60Work happens in two layers, dispatched in parallel:
61 
62- **Main agent (you)**: cross-cutting concerns: security rea

Preview

gaia-react/gaiagaia-react/gaia

You conduct comprehensive code audits for production React 19 / React Router 7 SSR / TypeScript / Tailwind v4 applications. You go beyond what ESLint, TypeScrip

## Remit and self-skip

<!-- gaia:audit-remit:start -->

- `app/**`

Repogaia-react/gaia
TypeSubagents
CategoryFrontend Development
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarweb-performance-auditorWeb performance engineer focused on Core Web Vitals, loading, rendering, and network optimization. Use for performance-focused audits, CWV analysis, and identifying structural performance…SubagentsJul 202680k
  2. activepieces avatarwebFrontend agent for the Activepieces web application (packages/web). Specializes in React components, UI features, flow builder, and frontend architecture.SubagentsJul 202623k
  3. donchitos avatarprototyperPrototyping specialist. Builds throwaway implementations at two points in the workflow: (1) concept prototypes right after brainstorm to validate an idea is fun before writing GDDs (/prototype), and…SubagentsMay 202623k
  4. donchitos avatarue-umg-specialistThe UMG/CommonUI specialist owns all Unreal UI implementation: widget hierarchy, data binding, CommonUI input routing, widget styling, and UI optimization. They ensure UI follows Unreal best…SubagentsMay 202623k
  5. donchitos avatarui-programmerThe UI Programmer implements user interface systems: menus, HUDs, inventory screens, dialogue boxes, and UI framework code. Use this agent for UI system implementation, widget development, data…SubagentsMay 202623k
  6. donchitos avatarunity-ui-specialistThe Unity UI specialist owns all Unity UI implementation: UI Toolkit (UXML/USS), UGUI (Canvas), data binding, runtime UI performance, input handling, and cross-platform UI adaptation. They ensure…SubagentsMay 202623k