Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9005336
docs: 1.7.0 release updates
stevensacks Jun 25, 2026
6008823
docs: address pre-1.7.0 doc gaps
stevensacks Jun 25, 2026
6011ccc
docs: frame spec-close as automatic, manual as backstop (gaia#438)
stevensacks Jun 25, 2026
c8dc8e3
docs: sync gaia-init/setup-gaia-ci CI flow with gaia#439
stevensacks Jun 25, 2026
6eeda32
chore: bump astro 6.3.0 -> 7.0.2, starlight 0.39.1 -> 0.41.1
stevensacks Jun 25, 2026
a6b4592
chore: bump sharp 0.34.5 -> 0.35.2
stevensacks Jun 25, 2026
307d2df
docs: add Working in GAIA workflow walkthrough
stevensacks Jun 25, 2026
9955a51
docs: add Working in GAIA walkthrough page
stevensacks Jun 25, 2026
721ad5b
docs: document running concurrent /gaia-spec and /gaia-plan
stevensacks Jun 25, 2026
ff01109
docs: rewrite /gaia-init page for accuracy
stevensacks Jun 25, 2026
dc6759a
style: theme callouts to the GAIA palette
stevensacks Jun 25, 2026
e5e3a2b
chore: refresh source-state snapshot for docs accuracy pass
stevensacks Jun 26, 2026
8517d0a
docs: accuracy pass on getting-started pages
stevensacks Jun 26, 2026
c84fba1
docs: accuracy pass on commands pages
stevensacks Jun 26, 2026
0871bff
docs: accuracy pass on maintenance pages
stevensacks Jun 26, 2026
f06f592
docs: accuracy pass on skills pages
stevensacks Jun 26, 2026
9f6816c
docs: accuracy pass on reference pages
stevensacks Jun 26, 2026
7f3fc71
docs: accuracy pass on contributors pages
stevensacks Jun 26, 2026
b35e659
docs: promote React Code heading, fix spec concurrency wording
stevensacks Jun 26, 2026
5b0d05e
docs: restructure command pages into Workflow and Maintenance groups
stevensacks Jun 26, 2026
6c52e15
docs: clarify react-performance intro and workflow command lead-in
stevensacks Jun 26, 2026
25feff0
docs: cut over-technical detail from adopter pages
stevensacks Jun 26, 2026
7d22713
docs: update handoff/pickup to delete-on-done lifecycle
stevensacks Jun 26, 2026
74fe4ee
docs: add palette callouts for key warnings and gotchas
stevensacks Jun 26, 2026
f287602
docs: add Maintenance > GAIA CI explainer page
stevensacks Jun 27, 2026
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
886 changes: 592 additions & 294 deletions .claude/audit/source-state.json

Large diffs are not rendered by default.

28 changes: 16 additions & 12 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,27 @@ export default defineConfig({
],
},
{
label: 'Commands',
label: 'Workflow',
items: [
{ label: 'Overview', slug: 'commands' },
{ label: '/gaia-plan', slug: 'commands/plan' },
{ label: '/gaia-spec', slug: 'commands/spec' },
{ label: '/gaia-handoff and pickup', slug: 'commands/handoff-pickup' },
{ label: '/gaia-forensics', slug: 'commands/forensics' },
{ label: '/update-deps', slug: 'commands/update-deps' },
{ label: '/update-gaia', slug: 'commands/update-gaia' },
{ label: 'Overview', slug: 'workflow' },
{ label: '/gaia-spec', slug: 'workflow/spec' },
{ label: '/gaia-plan', slug: 'workflow/plan' },
{ label: '/gaia-handoff', slug: 'workflow/handoff' },
{ label: '/gaia-pickup', slug: 'workflow/pickup' },
{ label: '/gaia-forensics', slug: 'workflow/forensics' },
],
},
{
label: 'Maintenance',
items: [
{ label: 'Overview', slug: 'maintenance' },
{ label: '/gaia-fitness', slug: 'commands/fitness' },
{ label: '/gaia-audit', slug: 'commands/audit' },
{ label: '/gaia-harden', slug: 'commands/harden' },
{ label: '/gaia-wiki', slug: 'commands/wiki' },
{ label: 'GAIA CI', slug: 'maintenance/gaia-ci' },
{ label: '/gaia-fitness', slug: 'maintenance/fitness' },
{ label: '/gaia-audit', slug: 'maintenance/audit' },
{ label: '/gaia-harden', slug: 'maintenance/harden' },
{ label: '/gaia-wiki', slug: 'maintenance/wiki' },
{ label: '/update-deps', slug: 'maintenance/update-deps' },
{ label: '/update-gaia', slug: 'maintenance/update-gaia' },
],
},
{
Expand All @@ -66,6 +68,7 @@ export default defineConfig({
{ label: 'Overview', slug: 'skills' },
{ label: 'Code skills', slug: 'skills/code' },
{ label: 'Scaffolders', slug: 'skills/scaffolders' },
{ label: 'React performance', slug: 'skills/react-performance' },
],
},
{
Expand All @@ -78,6 +81,7 @@ export default defineConfig({
},
{
label: 'Contributors',
collapsed: true,
items: [
{ label: 'Overview', slug: 'contributors' },
{ label: 'CI workflows', slug: 'contributors/ci' },
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.39.1",
"astro": "^6.2.2",
"sharp": "^0.34.5"
"@astrojs/starlight": "^0.41.1",
"astro": "^7.0.2",
"sharp": "^0.35.2"
},
"pnpm": {
"onlyBuiltDependencies": [
Expand Down
Loading