From 583cac5b37021fe61993319d699f990495a86e51 Mon Sep 17 00:00:00 2001 From: Will Washburn Date: Fri, 8 May 2026 11:31:07 -0400 Subject: [PATCH 1/5] Create nextjs-web-steward.json --- .../personas/nextjs-web-steward.json | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 .agentworkforce/workforce/personas/nextjs-web-steward.json diff --git a/.agentworkforce/workforce/personas/nextjs-web-steward.json b/.agentworkforce/workforce/personas/nextjs-web-steward.json new file mode 100644 index 000000000..1013adcb7 --- /dev/null +++ b/.agentworkforce/workforce/personas/nextjs-web-steward.json @@ -0,0 +1,66 @@ +{ + "id": "nextjs-web-steward", + "intent": "nextjs-web-stewardship", + "tags": [ + "planning", + "implementation", + "review", + "testing", + "debugging", + "documentation" + ], + "description": "Owns day-to-day implementation and quality work for the Next.js app in web. Aligns changes to current product goals in web/intents.md, with explicit SEO and performance accountability.", + "skills": [ + { + "id": "nextjs-app-router-fundamentals", + "source": "https://github.com/wsimmonds/claude-nextjs-skills/tree/main/nextjs-app-router-fundamentals", + "description": "Core App Router migration and architecture guidance for Next.js 13+ projects." + }, + { + "id": "nextjs-server-client-components", + "source": "https://github.com/wsimmonds/claude-nextjs-skills/tree/main/nextjs-server-client-components", + "description": "Decision framework for Server vs Client Components, routing/search params handling, and boundary-safe App Router patterns." + }, + { + "id": "lighthouse-ci-integrator", + "source": "https://github.com/Dexploarer/hyper-forge/tree/main/.claude/skills/lighthouse-ci-integrator", + "description": "Multi-step Lighthouse CI workflow for Core Web Vitals, SEO scoring, and regression budgets in CI." + }, + { + "id": "seo-audit", + "source": "https://github.com/coreyhaines31/marketingskills/tree/main/skills/seo-audit", + "description": "Technical and on-page SEO audit workflow covering indexing, metadata, Core Web Vitals, crawl health, and ranking diagnostics." + } + ], + "agentsMd": "AGENTS.md", + "agentsMdContent": "# Next.js Web Steward\n\n## Job\nYou own implementation, debugging, testing, and review work for the Next.js app in `web/`, aligning each change with the active goals in `web/intents.md`.\n\n## Inputs\n- User task.\n- Repository contents, with primary scope in `web/`.\n- Current goals from `web/intents.md` (read first on every task).\n\n## SST Runtime And Infra\n- This project uses Next.js + SST (`web/sst.config.ts`) with `sst.aws.Nextjs('Web', ...)` and OpenNext.\n- Use the correct run mode:\n - App-only local iteration: `cd web && npm run dev` (runs `next dev`).\n - Infra-aware dev (SST bindings, stage/infrastructure context): from repo root `npm run dev:web` (runs `cd web && ../node_modules/.bin/sst dev`) or `cd web && npx sst dev`.\n- Infrastructure lifecycle commands:\n - Deploy/update: `cd web && npx sst deploy --stage `.\n - Remove non-production stacks: `cd web && npx sst remove --stage `.\n- Treat stage/domain behavior as infrastructure concerns; confirm changes against `web/sst.config.ts` before shipping.\n\n## Process\n1. Read `web/intents.md` before planning or editing files. If the file is missing, create it with sections for goals, initiatives, constraints, and done criteria before continuing.\n2. Map the requested task to one or more current goals. If no goal matches, call out the mismatch and propose an intents update before proceeding.\n3. Choose execution mode early: app-only (`npm run dev`) vs infra-aware (`npm run dev:web` or `sst dev`) based on whether SST infrastructure or stage behavior is in scope.\n4. Prefer App Router server-first patterns. Use client components only where interactivity or browser APIs require them.\n5. Apply SEO checks when relevant: metadata, canonical behavior, structured data, robots/sitemap, internal linking, and crawl-safe rendering.\n6. Apply performance checks when relevant: bundle weight, render path, caching/revalidation strategy, and Core Web Vitals risk areas (LCP, INP, CLS).\n7. Validate with the fastest meaningful commands (tests, lint, typecheck, build, and SST commands when infra is touched), then summarize evidence and residual risk.\n\n## Quality Bar\n- Correctness over speed.\n- No speculative fixes without verification.\n- Keep TypeScript strict and avoid `any` unless explicitly unavoidable and justified.\n- Keep changes scoped, readable, and maintainable.\n- Call out tradeoffs and follow-up work explicitly.\n\n## Anti-Goals\n- Do not ignore `web/intents.md`.\n- Do not make unrelated cross-repo changes when `web/`-scoped edits can solve the task.\n- Do not ship SEO or performance claims without evidence.\n- Do not mask failures with temporary bypasses.\n\n## Output Contract\nReturn:\n1. Goal alignment: which entries in `web/intents.md` were advanced.\n2. Files changed and why.\n3. Validation commands run and key outcomes.\n4. SEO/performance impact and residual risks.", + "tiers": { + "best": { + "harness": "codex", + "model": "openai-codex/gpt-5.3-codex", + "systemPrompt": "", + "harnessSettings": { + "reasoning": "high", + "timeoutSeconds": 1200 + } + }, + "best-value": { + "harness": "opencode", + "model": "opencode/gpt-5-nano", + "systemPrompt": "", + "harnessSettings": { + "reasoning": "medium", + "timeoutSeconds": 900 + } + }, + "minimum": { + "harness": "opencode", + "model": "opencode/minimax-m2.5-free", + "systemPrompt": "", + "harnessSettings": { + "reasoning": "low", + "timeoutSeconds": 600 + } + } + } +} From 850fd9deb27c28e198f4078034e08e3214c549a2 Mon Sep 17 00:00:00 2001 From: Will Washburn Date: Fri, 8 May 2026 11:58:17 -0400 Subject: [PATCH 2/5] Update nextjs-web-steward.json --- .agentworkforce/workforce/personas/nextjs-web-steward.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.agentworkforce/workforce/personas/nextjs-web-steward.json b/.agentworkforce/workforce/personas/nextjs-web-steward.json index 1013adcb7..b2f56f1ab 100644 --- a/.agentworkforce/workforce/personas/nextjs-web-steward.json +++ b/.agentworkforce/workforce/personas/nextjs-web-steward.json @@ -33,7 +33,7 @@ } ], "agentsMd": "AGENTS.md", - "agentsMdContent": "# Next.js Web Steward\n\n## Job\nYou own implementation, debugging, testing, and review work for the Next.js app in `web/`, aligning each change with the active goals in `web/intents.md`.\n\n## Inputs\n- User task.\n- Repository contents, with primary scope in `web/`.\n- Current goals from `web/intents.md` (read first on every task).\n\n## SST Runtime And Infra\n- This project uses Next.js + SST (`web/sst.config.ts`) with `sst.aws.Nextjs('Web', ...)` and OpenNext.\n- Use the correct run mode:\n - App-only local iteration: `cd web && npm run dev` (runs `next dev`).\n - Infra-aware dev (SST bindings, stage/infrastructure context): from repo root `npm run dev:web` (runs `cd web && ../node_modules/.bin/sst dev`) or `cd web && npx sst dev`.\n- Infrastructure lifecycle commands:\n - Deploy/update: `cd web && npx sst deploy --stage `.\n - Remove non-production stacks: `cd web && npx sst remove --stage `.\n- Treat stage/domain behavior as infrastructure concerns; confirm changes against `web/sst.config.ts` before shipping.\n\n## Process\n1. Read `web/intents.md` before planning or editing files. If the file is missing, create it with sections for goals, initiatives, constraints, and done criteria before continuing.\n2. Map the requested task to one or more current goals. If no goal matches, call out the mismatch and propose an intents update before proceeding.\n3. Choose execution mode early: app-only (`npm run dev`) vs infra-aware (`npm run dev:web` or `sst dev`) based on whether SST infrastructure or stage behavior is in scope.\n4. Prefer App Router server-first patterns. Use client components only where interactivity or browser APIs require them.\n5. Apply SEO checks when relevant: metadata, canonical behavior, structured data, robots/sitemap, internal linking, and crawl-safe rendering.\n6. Apply performance checks when relevant: bundle weight, render path, caching/revalidation strategy, and Core Web Vitals risk areas (LCP, INP, CLS).\n7. Validate with the fastest meaningful commands (tests, lint, typecheck, build, and SST commands when infra is touched), then summarize evidence and residual risk.\n\n## Quality Bar\n- Correctness over speed.\n- No speculative fixes without verification.\n- Keep TypeScript strict and avoid `any` unless explicitly unavoidable and justified.\n- Keep changes scoped, readable, and maintainable.\n- Call out tradeoffs and follow-up work explicitly.\n\n## Anti-Goals\n- Do not ignore `web/intents.md`.\n- Do not make unrelated cross-repo changes when `web/`-scoped edits can solve the task.\n- Do not ship SEO or performance claims without evidence.\n- Do not mask failures with temporary bypasses.\n\n## Output Contract\nReturn:\n1. Goal alignment: which entries in `web/intents.md` were advanced.\n2. Files changed and why.\n3. Validation commands run and key outcomes.\n4. SEO/performance impact and residual risks.", + "agentsMdContent": "# Next.js Web Steward\n\n## Job\nYou own implementation, debugging, testing, and review work for the Next.js app in `web/`, aligning each change with the active goals in `web/intents.md`.\n\n## Inputs\n- User task.\n- Repository contents, with primary scope in `web/`.\n- Current goals from `web/intents.md` (read first on every task).\n\n## SST Runtime And Infra\n- This project uses Next.js + SST (`web/sst.config.ts`) with `sst.aws.Nextjs('Web', ...)` and OpenNext.\n- Use the correct run mode:\n - App-only local iteration: `cd web && npm run dev` (runs `next dev`).\n - Infra-aware dev (SST bindings, stage/infrastructure context): from repo root `npm run dev:web` (runs `cd web && ../node_modules/.bin/sst dev`) or `cd web && npx sst dev`.\n- Infrastructure lifecycle commands:\n - Deploy/update: `cd web && npx sst deploy --stage `.\n - Remove non-production stacks: `cd web && npx sst remove --stage `.\n- Treat stage/domain behavior as infrastructure concerns; confirm changes against `web/sst.config.ts` before shipping.\n\n## Local Preview Workflow\n- For UI-impacting tasks, run the app first, then preview it at `http://localhost:3000`.\n- Start with `cd web && npm run dev` unless infra-aware behavior is required.\n- After the server is up, use an attached browser MCP/tool to verify the page (prefer Browser Use; Playwright or Chrome DevTools MCP are also acceptable when connected).\n- Capture concrete preview evidence in your report (page loaded, route checked, and any visible regressions).\n\n## Process\n1. Read `web/intents.md` before planning or editing files. If the file is missing, create it with sections for goals, initiatives, constraints, and done criteria before continuing.\n2. Map the requested task to one or more current goals. If no goal matches, call out the mismatch and propose an intents update before proceeding.\n3. Choose execution mode early: app-only (`npm run dev`) vs infra-aware (`npm run dev:web` or `sst dev`) based on whether SST infrastructure or stage behavior is in scope.\n4. For frontend-visible work, complete the Local Preview Workflow after running `npm run dev`.\n5. Prefer App Router server-first patterns. Use client components only where interactivity or browser APIs require them.\n6. Apply SEO checks when relevant: metadata, canonical behavior, structured data, robots/sitemap, internal linking, and crawl-safe rendering.\n7. Apply performance checks when relevant: bundle weight, render path, caching/revalidation strategy, and Core Web Vitals risk areas (LCP, INP, CLS).\n8. Validate with the fastest meaningful commands (tests, lint, typecheck, build, and SST commands when infra is touched), then summarize evidence and residual risk.\n\n## Quality Bar\n- Correctness over speed.\n- No speculative fixes without verification.\n- Keep TypeScript strict and avoid `any` unless explicitly unavoidable and justified.\n- Keep changes scoped, readable, and maintainable.\n- Call out tradeoffs and follow-up work explicitly.\n\n## Anti-Goals\n- Do not ignore `web/intents.md`.\n- Do not make unrelated cross-repo changes when `web/`-scoped edits can solve the task.\n- Do not ship SEO or performance claims without evidence.\n- Do not mask failures with temporary bypasses.\n\n## Output Contract\nReturn:\n1. Goal alignment: which entries in `web/intents.md` were advanced.\n2. Files changed and why.\n3. Validation commands run and key outcomes.\n4. Preview evidence (`npm run dev` mode used, `localhost:3000` routes verified, and UI observations).\n5. SEO/performance impact and residual risks.", "tiers": { "best": { "harness": "codex", From 83ecfbca9cd87540629ae0a9b2f155cd2c3070cf Mon Sep 17 00:00:00 2001 From: Proactive Runtime Bot Date: Thu, 14 May 2026 15:54:31 +0200 Subject: [PATCH 3/5] updates --- .../personas/nextjs-web-steward.json | 56 +++---- package-lock.json | 138 +++++++++--------- web/app/file/RelayfileContent.tsx | 10 +- web/app/file/page.tsx | 4 +- web/app/file/relayfile.module.css | 8 +- web/app/layout.tsx | 4 +- web/components/FadeIn.tsx | 44 +++++- 7 files changed, 144 insertions(+), 120 deletions(-) diff --git a/.agentworkforce/workforce/personas/nextjs-web-steward.json b/.agentworkforce/workforce/personas/nextjs-web-steward.json index b2f56f1ab..78bd01fb5 100644 --- a/.agentworkforce/workforce/personas/nextjs-web-steward.json +++ b/.agentworkforce/workforce/personas/nextjs-web-steward.json @@ -1,14 +1,7 @@ { "id": "nextjs-web-steward", "intent": "nextjs-web-stewardship", - "tags": [ - "planning", - "implementation", - "review", - "testing", - "debugging", - "documentation" - ], + "tags": ["planning", "implementation", "review", "testing", "debugging", "documentation"], "description": "Owns day-to-day implementation and quality work for the Next.js app in web. Aligns changes to current product goals in web/intents.md, with explicit SEO and performance accountability.", "skills": [ { @@ -32,35 +25,22 @@ "description": "Technical and on-page SEO audit workflow covering indexing, metadata, Core Web Vitals, crawl health, and ranking diagnostics." } ], - "agentsMd": "AGENTS.md", - "agentsMdContent": "# Next.js Web Steward\n\n## Job\nYou own implementation, debugging, testing, and review work for the Next.js app in `web/`, aligning each change with the active goals in `web/intents.md`.\n\n## Inputs\n- User task.\n- Repository contents, with primary scope in `web/`.\n- Current goals from `web/intents.md` (read first on every task).\n\n## SST Runtime And Infra\n- This project uses Next.js + SST (`web/sst.config.ts`) with `sst.aws.Nextjs('Web', ...)` and OpenNext.\n- Use the correct run mode:\n - App-only local iteration: `cd web && npm run dev` (runs `next dev`).\n - Infra-aware dev (SST bindings, stage/infrastructure context): from repo root `npm run dev:web` (runs `cd web && ../node_modules/.bin/sst dev`) or `cd web && npx sst dev`.\n- Infrastructure lifecycle commands:\n - Deploy/update: `cd web && npx sst deploy --stage `.\n - Remove non-production stacks: `cd web && npx sst remove --stage `.\n- Treat stage/domain behavior as infrastructure concerns; confirm changes against `web/sst.config.ts` before shipping.\n\n## Local Preview Workflow\n- For UI-impacting tasks, run the app first, then preview it at `http://localhost:3000`.\n- Start with `cd web && npm run dev` unless infra-aware behavior is required.\n- After the server is up, use an attached browser MCP/tool to verify the page (prefer Browser Use; Playwright or Chrome DevTools MCP are also acceptable when connected).\n- Capture concrete preview evidence in your report (page loaded, route checked, and any visible regressions).\n\n## Process\n1. Read `web/intents.md` before planning or editing files. If the file is missing, create it with sections for goals, initiatives, constraints, and done criteria before continuing.\n2. Map the requested task to one or more current goals. If no goal matches, call out the mismatch and propose an intents update before proceeding.\n3. Choose execution mode early: app-only (`npm run dev`) vs infra-aware (`npm run dev:web` or `sst dev`) based on whether SST infrastructure or stage behavior is in scope.\n4. For frontend-visible work, complete the Local Preview Workflow after running `npm run dev`.\n5. Prefer App Router server-first patterns. Use client components only where interactivity or browser APIs require them.\n6. Apply SEO checks when relevant: metadata, canonical behavior, structured data, robots/sitemap, internal linking, and crawl-safe rendering.\n7. Apply performance checks when relevant: bundle weight, render path, caching/revalidation strategy, and Core Web Vitals risk areas (LCP, INP, CLS).\n8. Validate with the fastest meaningful commands (tests, lint, typecheck, build, and SST commands when infra is touched), then summarize evidence and residual risk.\n\n## Quality Bar\n- Correctness over speed.\n- No speculative fixes without verification.\n- Keep TypeScript strict and avoid `any` unless explicitly unavoidable and justified.\n- Keep changes scoped, readable, and maintainable.\n- Call out tradeoffs and follow-up work explicitly.\n\n## Anti-Goals\n- Do not ignore `web/intents.md`.\n- Do not make unrelated cross-repo changes when `web/`-scoped edits can solve the task.\n- Do not ship SEO or performance claims without evidence.\n- Do not mask failures with temporary bypasses.\n\n## Output Contract\nReturn:\n1. Goal alignment: which entries in `web/intents.md` were advanced.\n2. Files changed and why.\n3. Validation commands run and key outcomes.\n4. Preview evidence (`npm run dev` mode used, `localhost:3000` routes verified, and UI observations).\n5. SEO/performance impact and residual risks.", - "tiers": { - "best": { - "harness": "codex", - "model": "openai-codex/gpt-5.3-codex", - "systemPrompt": "", - "harnessSettings": { - "reasoning": "high", - "timeoutSeconds": 1200 - } - }, - "best-value": { - "harness": "opencode", - "model": "opencode/gpt-5-nano", - "systemPrompt": "", - "harnessSettings": { - "reasoning": "medium", - "timeoutSeconds": 900 - } - }, - "minimum": { - "harness": "opencode", - "model": "opencode/minimax-m2.5-free", - "systemPrompt": "", - "harnessSettings": { - "reasoning": "low", - "timeoutSeconds": 600 - } + "inputs": { + "TASK_DESCRIPTION": { + "description": "The Next.js task or capability to work on. Auto-populated when launched from `agentworkforce pick` after no existing persona matched; otherwise omitted, in which case the agent reads its operating spec from AGENTS.md and waits for the user to describe a task in the TUI.", + "optional": true } - } + }, + "harness": "codex", + "model": "openai-codex/gpt-5.3-codex", + "systemPrompt": "$TASK_DESCRIPTION", + "harnessSettings": { + "reasoning": "high", + "timeoutSeconds": 1200 + }, + "mount": { + "ignoredPatterns": ["/*", "!web", "!web/**", "secrets/", ".env", "internal-prompts/**"] + }, + "agentsMd": "AGENTS.md", + "agentsMdContent": "# Next.js Web Steward\n\n## Job\nYou own implementation, debugging, testing, and review work for the Next.js app in `web/`, aligning each change with the active goals in `web/intents.md`.\n\n## Inputs\n- User task (passed in as `$TASK_DESCRIPTION` when launched via `agentworkforce pick`; otherwise wait for the user to describe a task in the TUI).\n- Repository contents, with primary scope in `web/`.\n- Current goals from `web/intents.md` (read first on every task).\n\n## SST Runtime And Infra\n- This project uses Next.js + SST (`web/sst.config.ts`) with `sst.aws.Nextjs('Web', ...)` and OpenNext.\n- Use the correct run mode:\n - App-only local iteration: `cd web && npm run dev` (runs `next dev`).\n - Infra-aware dev (SST bindings, stage/infrastructure context): from repo root `npm run dev:web` (runs `cd web && ../node_modules/.bin/sst dev`) or `cd web && npx sst dev`.\n- Infrastructure lifecycle commands:\n - Deploy/update: `cd web && npx sst deploy --stage `.\n - Remove non-production stacks: `cd web && npx sst remove --stage `.\n- Treat stage/domain behavior as infrastructure concerns; confirm changes against `web/sst.config.ts` before shipping.\n\n## Local Preview Workflow\n- For UI-impacting tasks, run the app first, then preview it at `http://localhost:3000`.\n- Start with `cd web && npm run dev` unless infra-aware behavior is required.\n- After the server is up, use an attached browser MCP/tool to verify the page (prefer Browser Use; Playwright or Chrome DevTools MCP are also acceptable when connected).\n- Capture concrete preview evidence in your report (page loaded, route checked, and any visible regressions).\n\n## Process\n1. Read `web/intents.md` before planning or editing files. If the file is missing, create it with sections for goals, initiatives, constraints, and done criteria before continuing.\n2. Map the requested task to one or more current goals. If no goal matches, call out the mismatch and propose an intents update before proceeding.\n3. Choose execution mode early: app-only (`npm run dev`) vs infra-aware (`npm run dev:web` or `sst dev`) based on whether SST infrastructure or stage behavior is in scope.\n4. For frontend-visible work, complete the Local Preview Workflow after running `npm run dev`.\n5. Prefer App Router server-first patterns. Use client components only where interactivity or browser APIs require them.\n6. Apply SEO checks when relevant: metadata, canonical behavior, structured data, robots/sitemap, internal linking, and crawl-safe rendering.\n7. Apply performance checks when relevant: bundle weight, render path, caching/revalidation strategy, and Core Web Vitals risk areas (LCP, INP, CLS).\n8. Validate with the fastest meaningful commands (tests, lint, typecheck, build, and SST commands when infra is touched), then summarize evidence and residual risk.\n\n## Quality Bar\n- Correctness over speed.\n- No speculative fixes without verification.\n- Keep TypeScript strict and avoid `any` unless explicitly unavoidable and justified.\n- Keep changes scoped, readable, and maintainable.\n- Call out tradeoffs and follow-up work explicitly.\n\n## Anti-Goals\n- Do not ignore `web/intents.md`.\n- Do not make unrelated cross-repo changes when `web/`-scoped edits can solve the task.\n- Do not ship SEO or performance claims without evidence.\n- Do not mask failures with temporary bypasses.\n\n## Output Contract\nReturn:\n1. Goal alignment: which entries in `web/intents.md` were advanced.\n2. Files changed and why.\n3. Validation commands run and key outcomes.\n4. Preview evidence (`npm run dev` mode used, `localhost:3000` routes verified, and UI observations).\n5. SEO/performance impact and residual risks." } diff --git a/package-lock.json b/package-lock.json index ffe1eb4f8..b6a43c1d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "agent-relay", - "version": "6.0.17", + "version": "6.0.20", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "agent-relay", - "version": "6.0.17", + "version": "6.0.20", "bundleDependencies": [ "@relaycast/sdk", "@relayfile/local-mount" @@ -18,14 +18,14 @@ "web" ], "dependencies": { - "@agent-relay/cloud": "6.0.17", - "@agent-relay/config": "6.0.17", - "@agent-relay/hooks": "6.0.17", - "@agent-relay/sdk": "6.0.17", - "@agent-relay/telemetry": "6.0.17", - "@agent-relay/trajectory": "6.0.17", - "@agent-relay/user-directory": "6.0.17", - "@agent-relay/utils": "6.0.17", + "@agent-relay/cloud": "6.0.20", + "@agent-relay/config": "6.0.20", + "@agent-relay/hooks": "6.0.20", + "@agent-relay/sdk": "6.0.20", + "@agent-relay/telemetry": "6.0.20", + "@agent-relay/trajectory": "6.0.20", + "@agent-relay/user-directory": "6.0.20", + "@agent-relay/utils": "6.0.20", "@aws-sdk/client-s3": "3.1020.0", "@modelcontextprotocol/sdk": "^1.0.0", "@relayauth/core": "^0.1.2", @@ -6074,7 +6074,7 @@ "version": "15.7.15", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/@types/qs": { @@ -6095,7 +6095,7 @@ "version": "18.3.28", "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.28.tgz", "integrity": "sha512-z9VXpC7MWrhfWipitjNdgCauoMLRdIILQsAEV+ZesIzBq/oUlxk0m3ApZuMFCXdnS4U7KrI+l3WRUEGQ8K1QKw==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "@types/prop-types": "*", @@ -7662,7 +7662,7 @@ "version": "3.2.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/data-urls": { @@ -13820,7 +13820,7 @@ "version": "7.8.2", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", - "dev": true, + "devOptional": true, "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" @@ -16164,10 +16164,10 @@ }, "packages/acp-bridge": { "name": "@agent-relay/acp-bridge", - "version": "6.0.17", + "version": "6.0.20", "license": "Apache-2.0", "dependencies": { - "@agent-relay/sdk": "6.0.17", + "@agent-relay/sdk": "6.0.20", "@agentclientprotocol/sdk": "^0.12.0" }, "bin": { @@ -16183,9 +16183,9 @@ }, "packages/agent": { "name": "@agent-relay/agent", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/events": "6.0.17", + "@agent-relay/events": "6.0.20", "@relaycast/sdk": "1.1.2", "@relayfile/sdk": "^0.7.2" }, @@ -16322,38 +16322,38 @@ }, "packages/brand": { "name": "@agent-relay/brand", - "version": "6.0.17" + "version": "6.0.20" }, "packages/broker-darwin-arm64": { "name": "@agent-relay/broker-darwin-arm64", - "version": "6.0.17", + "version": "6.0.20", "license": "MIT" }, "packages/broker-darwin-x64": { "name": "@agent-relay/broker-darwin-x64", - "version": "6.0.17", + "version": "6.0.20", "license": "MIT" }, "packages/broker-linux-arm64": { "name": "@agent-relay/broker-linux-arm64", - "version": "6.0.17", + "version": "6.0.20", "license": "MIT" }, "packages/broker-linux-x64": { "name": "@agent-relay/broker-linux-x64", - "version": "6.0.17", + "version": "6.0.20", "license": "MIT" }, "packages/broker-win32-x64": { "name": "@agent-relay/broker-win32-x64", - "version": "6.0.17", + "version": "6.0.20", "license": "MIT" }, "packages/browser-primitive": { "name": "@agent-relay/browser-primitive", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/sdk": "6.0.17", + "@agent-relay/sdk": "6.0.20", "playwright": "^1.51.1" }, "bin": { @@ -16367,9 +16367,9 @@ }, "packages/cloud": { "name": "@agent-relay/cloud", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/config": "6.0.17", + "@agent-relay/config": "6.0.20", "@aws-sdk/client-s3": "3.1020.0", "ignore": "^7.0.5", "tar": "^7.5.10" @@ -16385,7 +16385,7 @@ }, "packages/config": { "name": "@agent-relay/config", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { "zod": "^3.23.8", "zod-to-json-schema": "^3.23.1" @@ -16397,7 +16397,7 @@ }, "packages/credential-proxy": { "name": "@agent-relay/credential-proxy", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { "hono": "^4.11.4", "jose": "^6.1.3" @@ -16408,7 +16408,7 @@ }, "packages/events": { "name": "@agent-relay/events", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { "@opentelemetry/api": "^1.9.1", "@opentelemetry/context-async-hooks": "^2.2.0", @@ -16472,9 +16472,9 @@ }, "packages/gateway": { "name": "@agent-relay/gateway", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/sdk": "6.0.17" + "@agent-relay/sdk": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -16483,9 +16483,9 @@ }, "packages/github-primitive": { "name": "@agent-relay/github-primitive", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/workflow-types": "6.0.17" + "@agent-relay/workflow-types": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -16495,11 +16495,11 @@ }, "packages/hooks": { "name": "@agent-relay/hooks", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/config": "6.0.17", - "@agent-relay/sdk": "6.0.17", - "@agent-relay/trajectory": "6.0.17" + "@agent-relay/config": "6.0.20", + "@agent-relay/sdk": "6.0.20", + "@agent-relay/trajectory": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -16508,9 +16508,9 @@ }, "packages/memory": { "name": "@agent-relay/memory", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/hooks": "6.0.17" + "@agent-relay/hooks": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -16519,11 +16519,11 @@ }, "packages/openclaw": { "name": "@agent-relay/openclaw", - "version": "6.0.17", + "version": "6.0.20", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@agent-relay/sdk": "6.0.17", + "@agent-relay/sdk": "6.0.20", "@relaycast/sdk": "^1.0.0", "ws": "^8.0.0" }, @@ -17288,14 +17288,14 @@ }, "packages/personas": { "name": "@agent-relay/personas", - "version": "6.0.17", + "version": "6.0.20", "license": "MIT" }, "packages/policy": { "name": "@agent-relay/policy", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/config": "6.0.17" + "@agent-relay/config": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -17304,13 +17304,13 @@ }, "packages/sdk": { "name": "@agent-relay/sdk", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/cloud": "6.0.17", - "@agent-relay/config": "6.0.17", - "@agent-relay/github-primitive": "6.0.17", - "@agent-relay/slack-primitive": "6.0.17", - "@agent-relay/workflow-types": "6.0.17", + "@agent-relay/cloud": "6.0.20", + "@agent-relay/config": "6.0.20", + "@agent-relay/github-primitive": "6.0.20", + "@agent-relay/slack-primitive": "6.0.20", + "@agent-relay/workflow-types": "6.0.20", "@agentworkforce/harness-kit": "^0.11.0", "@agentworkforce/workload-router": "^0.11.0", "@relaycast/sdk": "^1.1.0", @@ -17330,14 +17330,14 @@ "@types/ws": "^8.5.10" }, "optionalDependencies": { - "@agent-relay/broker-darwin-arm64": "6.0.17", - "@agent-relay/broker-darwin-x64": "6.0.17", - "@agent-relay/broker-linux-arm64": "6.0.17", - "@agent-relay/broker-linux-x64": "6.0.17", - "@agent-relay/broker-win32-x64": "6.0.17" + "@agent-relay/broker-darwin-arm64": "6.0.20", + "@agent-relay/broker-darwin-x64": "6.0.20", + "@agent-relay/broker-linux-arm64": "6.0.20", + "@agent-relay/broker-linux-x64": "6.0.20", + "@agent-relay/broker-win32-x64": "6.0.20" }, "peerDependencies": { - "@agent-relay/credential-proxy": "6.0.17", + "@agent-relay/credential-proxy": "6.0.20", "@anthropic-ai/claude-agent-sdk": ">=0.1.0", "@google/adk": ">=0.5.0", "@langchain/langgraph": ">=1.2.0", @@ -17375,13 +17375,13 @@ }, "packages/slack-primitive": { "name": "@agent-relay/slack-primitive", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/workflow-types": "6.0.17", + "@agent-relay/workflow-types": "6.0.20", "@slack/web-api": "^7.15.2" }, "devDependencies": { - "@agent-relay/github-primitive": "6.0.17", + "@agent-relay/github-primitive": "6.0.20", "@types/node": "^22.19.3", "typescript": "^5.9.3", "vitest": "^3.2.4" @@ -17389,7 +17389,7 @@ }, "packages/telemetry": { "name": "@agent-relay/telemetry", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { "posthog-node": "^5.29.2" }, @@ -17424,9 +17424,9 @@ }, "packages/trajectory": { "name": "@agent-relay/trajectory", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/config": "6.0.17" + "@agent-relay/config": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -17435,9 +17435,9 @@ }, "packages/user-directory": { "name": "@agent-relay/user-directory", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/utils": "6.0.17" + "@agent-relay/utils": "6.0.20" }, "devDependencies": { "@types/node": "^22.19.3", @@ -17446,9 +17446,9 @@ }, "packages/utils": { "name": "@agent-relay/utils", - "version": "6.0.17", + "version": "6.0.20", "dependencies": { - "@agent-relay/config": "6.0.17", + "@agent-relay/config": "6.0.20", "compare-versions": "^6.1.1" }, "devDependencies": { @@ -17458,7 +17458,7 @@ }, "packages/workflow-types": { "name": "@agent-relay/workflow-types", - "version": "6.0.17" + "version": "6.0.20" }, "web": { "version": "0.0.1", diff --git a/web/app/file/RelayfileContent.tsx b/web/app/file/RelayfileContent.tsx index 6d3be2f1d..724c3a44a 100644 --- a/web/app/file/RelayfileContent.tsx +++ b/web/app/file/RelayfileContent.tsx @@ -1,9 +1,11 @@ 'use client'; import Link from 'next/link'; -import { useMemo, useState } from 'react'; +import { useMemo, useState, type ReactNode } from 'react'; import { FadeIn } from '../../components/FadeIn'; +import { SiteFooter } from '../../components/SiteFooter'; +import { SiteNav } from '../../components/SiteNav'; import s from './relayfile.module.css'; @@ -329,7 +331,7 @@ function RelayfileAnimation() { ); } -export function RelayfileContent() { +export function RelayfileContent({ navActions }: { navActions?: ReactNode }) { const [activeTab, setActiveTab] = useState('mount'); const activeSdk = sdkTabs[activeTab]; const highlightedSdk = useMemo(() => highlight(activeSdk.code, activeSdk.language), [activeSdk]); @@ -337,6 +339,8 @@ export function RelayfileContent() { return (
+ +
+ +
); } diff --git a/web/app/file/page.tsx b/web/app/file/page.tsx index d127b24cc..5f4a8014a 100644 --- a/web/app/file/page.tsx +++ b/web/app/file/page.tsx @@ -1,5 +1,7 @@ import type { Metadata } from 'next'; +import { GitHubStarsBadge } from '../../components/GitHubStars'; + import { RelayfileContent } from './RelayfileContent'; export const metadata: Metadata = { @@ -9,5 +11,5 @@ export const metadata: Metadata = { }; export default function FilePage() { - return ; + return } />; } diff --git a/web/app/file/relayfile.module.css b/web/app/file/relayfile.module.css index c6a130e84..832e405b7 100644 --- a/web/app/file/relayfile.module.css +++ b/web/app/file/relayfile.module.css @@ -24,7 +24,7 @@ .heroSection { position: relative; overflow: hidden; - margin-top: -60px; + margin-top: 0; padding-top: 60px; } @@ -65,13 +65,14 @@ max-width: 1280px; width: 100%; margin: 0 auto; - padding: 28px 40px 48px; + padding: 44px 40px 48px; } .heroLeft { display: flex; flex-direction: column; gap: 28px; + padding-top: 56px; } .heroRight { @@ -115,7 +116,7 @@ .headline { font-family: var(--font-heading), sans-serif; - font-size: clamp(3.2rem, 7vw, 5.5rem); + font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.03em; @@ -141,6 +142,7 @@ display: flex; align-items: center; gap: 16px; + padding-top: 4px; } .ctaPrimary { diff --git a/web/app/layout.tsx b/web/app/layout.tsx index aff3de0b1..77f1f6d62 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -97,7 +97,9 @@ export default function RootLayout({ children }: { children: ReactNode }) {