proactive agents update#29
Conversation
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
📝 WalkthroughWalkthroughThe Agents documentation is reorganized around gallery quickstarts, cloud-persona development, and the ChangesAgents documentation workflow
Estimated code review effort: 3 (Moderate) | ~20 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 7cefe1d170
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| { | ||
| title: 'Run', | ||
| items: [{ title: 'Deploy and operate', slug: 'deploy' }], | ||
| items: [{ title: 'CLI', slug: 'cli' }], |
There was a problem hiding this comment.
Preserve redirects for the removed agent-doc URLs
Removing the deploy and patterns slugs also removes their MDX files, so existing /docs/agents/deploy and /docs/agents/patterns links now reach the dynamic docs page with no content and return notFound; there is no redirect for either path in the route tree. This breaks previously published navigation targets (the parent quickstart and introduction pages themselves linked to both), as well as any bookmarked or indexed URLs. Add redirects to the appropriate replacement pages (for example, deploy → cli) before deleting the old routes.
Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Fixed in 0c2dc1e — added permanent redirects in next.config.mjs: /docs/agents/deploy → /docs/agents/cli (its direct successor) and /docs/agents/patterns → /docs/agents/build, since patterns has no direct replacement and build is the nearest page still covering agent shape. Verified both return 308 to the right destination and that the targets resolve 200.
|
Preview deployed!
This is a Cloudflare Workers preview version of this PR's build. |
Replace the 3-up card grid on /agents with a horizontal list. The card artwork was carrying most of the vertical space while saying little, so rows now lead with name + tagline and show which providers each agent touches as logo marks. - Vendor provider logos from Nango's template logos (the same source pear resolves icons from) via scripts/sync-integration-logos.sh, rather than hotlinking on every render. Nango answers 200 with its SPA shell for slugs it has no logo for, so the script sniffs for an SVG root; daytona, gcp, hacker-news, neon, and npm have none and fall back to text chips. granola's logo is a ~525KB SVG wrapping a base64 PNG, so it is unwrapped and downscaled. - Logos sit on a light chip — several marks are solid black and would disappear on the dark surface. - Trigger detail moves to its own reserved line that fades in on hover, so the tagline stays visible and the row never shifts. - Show logos on the agent detail page too, labeled with the provider name. - hn-monitor and spotify-releases declare telegram as an optional transport gated by enabledByInput; reflect that in their integrations and inputs. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
/docs/agents/deploy and /docs/agents/patterns were deleted in this branch without redirects, so bookmarked and indexed links hit notFound. Point deploy at its successor (cli) and patterns at build, which is the nearest page still covering agent shape. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Summary by cubic
Reorganizes the proactive agents docs around the
persona.json+agent.tsmodel, adds a fullCLIpage, and simplifies Quickstart to one‑click deploy or a single terminal command. Also rebuilds the Agents gallery as a dense list with provider logos, and adds optional Telegram delivery to select agents.New Features
IntegrationLogoscomponent; vendored assets and async-integration-logos.shscript (no hotlinking).CLIdocs foragentworkforcecovering deploy (--mode,--dry-run,--on-exists), local run (invoke, fixtures, scaffolds), logs, triggers, and teardown.@agent-relay/creating-cloud-persona) and typed triggers vs. behavior.hn-monitorandspotify-releases: added Telegram as an optional transport (TELEGRAM_CHAT); updated integrations and inputs.Refactors
CLI./docs/agents/deploy→/docs/agents/cli,/docs/agents/patterns→/docs/agents/build.compile,invoke,deploy --dry-run).Written for commit 0c2dc1e. Summary will update on new commits.