gaia-react

57 mods across 1 repository, 22 stars between them.

PostToolUse

25

gaia-react/gaia

Hook Claude Code

Runs after a tool call finishes for EnterWorktree and Bash tool calls, executing provision-worktree.sh, wiki-commit-nudge.sh, token-rollup-merge.sh, token-tally-review.sh, capture-red-observations.sh, debt-sentinel-touch.sh, issue-claim-release.sh and capture-gh-artifact.sh (8 commands). From gaia-react/gaia.

22 yesterday A tokens not measured original MIT

gaia

26

gaia-react/gaia

Settings file Claude Code

Agent settings declaring 6 hook events (SessionStart, Stop, UserPromptSubmit, PostCompact) and 60 allowed tools.

22 yesterday C tokens not measured original MIT

a11y-fixes

27

gaia-react/gaia

Skill Claude CodeCodex

Resolve axe-core accessibility violations reported by Vitest (test/a11y.ts), Playwright (.playwright/a11y.ts), or the code-audit-frontend agent's a11y bucket. Trigger on any axe rule id appearing in test output, not only the ones named here. Contains fix patterns for the most common violations (color-contrast, label…

22 yesterday A 171 tokens original MIT

eslint-fixes

28

gaia-react/gaia

Skill Claude CodeCodex

Resolve specific ESLint errors and warnings that appear in this project. Use when fixing lint failures, ESLint reported issues, or autofix conflicts (e.g. no-void, canonical/export-specifier-newline vs prettier, no-shadow trailing underscores, sonarjs/deprecation, you-dont-need-lodash-underscore…

22 yesterday A 92 tokens original MIT

file-tech-debt

29

gaia-react/gaia

Skill Claude CodeCodex

File a new tech-debt GitHub issue for an out-of-scope code-review finding, building the dedup key, checking for an existing open or declined-closed match, and only if none exists, creating the issue with the right labels and touching the debt-count staleness sentinel. Trigger on natural-language asks like "file a…

22 yesterday A 158 tokens original MIT

gaia-handoff

30

gaia-react/gaia

Skill Claude CodeCodex

Generate a comprehensive GAIA session handoff document, accomplishments, decisions, current state, open questions, so context can be cleared or compacted without losing anything. Trigger on /gaia-handoff or natural-language asks like "write a handoff", "hand off this session", or "document where we are before I clear…

22 yesterday A 73 tokens original MIT

gaia-pickup

31

gaia-react/gaia

Skill Claude CodeCodex

Restore context from the most recent GAIA session handoff and suggest the next action. Trigger on /gaia-pickup or natural-language asks like "pick up where we left off", "resume from the handoff", or "continue the last session".

22 yesterday A 59 tokens original MIT

gaia-react-perf

32

gaia-react/gaia

Skill Claude CodeCodex

Diagnose React render performance by driving a micro-interaction, capturing real renders, and surfacing memo-defeating reference instability with a recommended structural fix. Measure-only: it emits a diagnosis, it does not auto-fix. Trigger on /gaia-react-perf or natural-language asks like "profile renders", "measure…

22 yesterday A 110 tokens original MIT

gaia-wiki

33

gaia-react/gaia

Skill Claude CodeCodex

GAIA wiki maintenance, sync, consolidate, lint. Runs the full chain with no sub-arg, or a single stage when named (sync | consolidate | lint); append --force to override drift gating. Trigger on /gaia-wiki or natural-language asks like "sync the wiki", "run the wiki maintenance chain", "consolidate the wiki", or "lint…

22 yesterday A 87 tokens original MIT

new-component

34

gaia-react/gaia

Skill Claude CodeCodex

Scaffold a new React component with optional Storybook story and Vitest test files. Use this skill whenever the user asks to "create a component", "make a button", "scaffold a card", "add a new component", or asks for a new file under app/components/ following the project's component pattern (PascalCase folder…

22 yesterday A 80 tokens original MIT

new-hook

35

gaia-react/gaia

Skill Claude CodeCodex

Scaffold a new custom React hook with a Vitest test file. Use this skill whenever the user asks to "create a hook", "make a useFoo hook", "scaffold a custom React hook", "add a hook under app/hooks", or describes a piece of reusable React state/effect logic that warrants extraction into a named use hook.

22 yesterday A 76 tokens original MIT

new-route

36

gaia-react/gaia

Skill Claude CodeCodex

Scaffold a new route with its page component, test, story, and optional i18n keys. Use this skill whenever the user asks to "create a route", "add a new page", "scaffold /dashboard", "wire up a new route under public+ or session+", or anything that implies adding a file under app/routes/ with a matching…

22 yesterday A 94 tokens original MIT

new-service

37

gaia-react/gaia

Skill Claude CodeCodex

Scaffold a new API service with request functions, Zod schemas, URL constants, and optional MSW mock handlers. Use this skill whenever the user asks to "add a service", "create the projects API", "scaffold a new GAIA service", "wire up CRUD for users", or anything implying a new folder under app/services/gaia/{name}/…

22 yesterday A 97 tokens original MIT

playwright-cli

38

gaia-react/gaia

Skill Claude CodeCodex

Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

22 yesterday A 52 tokens copy · 81% MIT

react-code

39

gaia-react/gaia

Skill Claude CodeCodex

Patterns and conventions for writing and editing React code, including components and hooks. Use this skill whenever writing or reviewing React components, hooks (useEffect, useCallback, useState), event handlers, or component extraction decisions. Also trigger when debugging stale closures, infinite re-renders, or…

22 yesterday A 176 tokens original MIT

release-notes

40

gaia-react/gaia

Skill Claude CodeCodex

Maintainer-only. Translate a version's GAIA CHANGELOG entries into plain-language public release notes for the marketing site (gaiareact.com). Writes a release-data .ts file under ../website/src/pages/changelog/releases/ plus an editorial-decisions report for human review. Use whenever the maintainer wants the…

22 yesterday A 207 tokens original MIT

skeleton-loaders

41

gaia-react/gaia

Skill Claude CodeCodex

For building skeleton loading states that are pixel-perfect matches of real content. Use this skill whenever adding loading states to components, building skeletons for async data, handling pending loader states in route transitions, or implementing the shimmer animation pattern. Also trigger when the user asks about…

22 yesterday A 65 tokens original MIT

tailwind

42

gaia-react/gaia

Skill Claude CodeCodex

Patterns and conventions for all Tailwind styling. Use this skill whenever writing Tailwind class names, combining conditional classes, building component variants, or choosing between twJoin and twMerge. Also trigger when the user asks about custom values, defining @theme tokens or CSS variables, naming color/spacing…

22 yesterday A 78 tokens original MIT

tdd

43

gaia-react/gaia

Skill Claude CodeCodex

Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.

22 yesterday A 45 tokens original MIT

typescript

44

gaia-react/gaia

Skill Claude CodeCodex

Patterns and conventions for all TypeScript code. Use this skill whenever writing or reviewing TypeScript, naming identifiers, typing exports, choosing between type and interface, using Zod schemas, structuring function parameters, or enforcing code patterns like avoiding switch statements and enums.

22 yesterday A 54 tokens original MIT

update-deps

45

gaia-react/gaia

Skill Claude CodeCodex

Autonomous Dependabot, auto-discover outdated packages, audit overrides, apply migrations for major bumps, resolve conflicts, run quality gate. Trigger when the user clicks the statusline Run /update-deps indicator or asks "update dependencies", "bump deps", "run dependabot".

22 yesterday A 63 tokens original MIT

update-gaia

46

gaia-react/gaia

Skill Claude CodeCodex

Pull the latest GAIA release into this project without clobbering customizations. Three-way merge per file using .gaia/manifest.json classes. Trigger when the user clicks the statusline Run /update-gaia indicator or asks "update GAIA", "pull the latest GAIA", "apply the new GAIA release".

22 yesterday C 73 tokens original MIT

constitution-check

47

gaia-react/gaia

Command

GAIA beforespecify hook: constitution placeholder check + spec-kit version-pin drift detection.

22 yesterday A 18 tokens original MIT

lint

48

gaia-react/gaia

Command

GAIA afterspecify hook: immutability lint over the just-written SPEC artifact.

22 yesterday A 18 tokens original MIT