Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dist
!.env.example
.idea
.claude
.codex
.playwright-cli
.review
.impeccable
Expand Down
38 changes: 22 additions & 16 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
import {
base,
betterTailwind,
guardrails,
ignores,
prettier,
react,
styleHygiene,
} from '@gaia-react/lint';
import gaiaLint from '@gaia-react/lint';
import {defineConfig} from 'eslint/config';

const lint = gaiaLint({sourceDir: 'src'});

export default defineConfig([
...ignores({gitignore: '.gitignore'}),
...base,
...react,
...styleHygiene,
...guardrails,
...betterTailwind({
...lint.ignores({gitignore: '.gitignore'}),
...lint.base,
...lint.react,
...lint.styleHygiene,
...lint.guardrails,
...lint.betterTailwind({
entryPoint: './src/styles.css',
}),
...prettier,
...lint.prettier,
{
rules: {
'unicorn/prevent-abbreviations': [
Expand All @@ -34,4 +28,16 @@ export default defineConfig([
],
},
},
{
// GAIA's file/folder naming conventions target the GAIA app layout
// (index.tsx components inside PascalCase folders). This marketing site is a
// multi-entry Vite app with a different structure (per-page main.tsx + App.tsx
// entries, PascalCase section components, a lowercase components/icons folder),
// so these conventions don't apply here.
name: 'gaia-website/disable-check-file-conventions',
rules: {
'check-file/filename-naming-convention': 'off',
'check-file/folder-naming-convention': 'off',
},
},
]);
13 changes: 11 additions & 2 deletions features/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
{"@type": "ListItem", "position": 3, "name": "Obsidian wiki for token-efficient context"},
{"@type": "ListItem", "position": 4, "name": "Durable state on disk"},
{"@type": "ListItem", "position": 5, "name": "Automated CI maintenance"},
{"@type": "ListItem", "position": 6, "name": "Modern React stack"}
{"@type": "ListItem", "position": 6, "name": "Modern React stack"},
{"@type": "ListItem", "position": 7, "name": "React render-performance diagnostics"}
]
},
{
Expand Down Expand Up @@ -113,12 +114,20 @@
"text": "Run /gaia-fitness. It audits your entire Claude integration, including hooks, rules, skills, CLAUDE.md, settings, and GAIA install fitness, then grades each area A+ to F and heals what it can on a branch. You review the diff and commit when satisfied. The check protocol survives /update-gaia."
}
},
{
"@type": "Question",
"name": "How does GAIA diagnose slow React renders?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Run /gaia-react-perf. It drives a micro-interaction you point it at, captures real per-render attribution with a bippy harness, and reduces the raw capture to a small ranked summary so it never enters Claude's context. It flags a React.memo that re-renders anyway because a prop or context value is a new object or callback every render, plus any component whose render crosses a 16 ms frame budget. It ranks findings by how costly each wasted render is and how widely it ripples, then names the structural fix. v1 is measure-only: GAIA diagnoses, Claude applies the fix you approve."
}
},
{
"@type": "Question",
"name": "How does GAIA automate project maintenance?",
"acceptedAnswer": {
"@type": "Answer",
"text": "GAIA CI handles dependency updates (patch and minor auto-merge with codemods, major routes to a review PR), daily security audits with pnpm audit, wiki sync whenever app code changes, and monthly stale branch cleanup. Claude handles the safe cases automatically. Humans only see what it cannot safely recover from, with a hard $5 cost cap per run."
"text": "GAIA CI handles dependency updates (patch and minor auto-merge with codemods, major routes to a review PR), daily security audits with pnpm audit, wiki sync whenever app code changes, and monthly stale branch cleanup. Claude handles the safe cases automatically. Humans only see what it cannot safely recover from. GAIA CI runs against your Claude Code Pro/Max subscription or your Anthropic API key, and a fixed turn limit caps every scheduled run, so no run loops without end."
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion get-started/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"name": "Install GAIA: Set Up Claude Code for React",
"description": "One command scaffolds a React 19 project with the Claude Code workflow built in.",
"totalTime": "PT5M",
"supply": [{"@type": "HowToSupply", "name": "Node.js >= 22.19.0"}],
"supply": [{"@type": "HowToSupply", "name": "Node.js >= 22.22.0"}],
"step": [
{
"@type": "HowToStep",
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"Obsidian wiki for token-efficient context management",
"Automated GAIA CI with code-review audit",
"Token economics controls and trust scaffolding",
"React render-performance diagnostics via /gaia-react-perf",
"One-command React 19 project scaffolding via create-gaia"
],
"offers": {
Expand Down
28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@
"dependencies": {
"@calcom/embed-react": "^1.5.3",
"@fontsource-variable/fraunces": "^5.2.9",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.5.0"
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@gaia-react/lint": "^1.1.1",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@gaia-react/lint": "^1.8.0",
"@tailwindcss/vite": "^4.3.2",
"@types/node": "^25.9.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"puppeteer": "^24.43.0",
"tailwindcss": "^4.3.0",
"puppeteer": "^24.43.1",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.11"
"typescript-eslint": "^8.62.1",
"vite": "^8.0.16"
},
"engines": {
"node": ">=22.19.0"
Expand All @@ -48,6 +48,8 @@
"puppeteer"
],
"overrides": {
"@babel/core": "^7.29.6",
"esbuild": ">=0.28.1",
"fast-uri": ">=3.1.2"
}
}
Expand Down
Loading