feat(compat): OpenHands listing and daily-seeded agent order#203
Open
piyushbag wants to merge 1 commit into
Open
feat(compat): OpenHands listing and daily-seeded agent order#203piyushbag wants to merge 1 commit into
piyushbag wants to merge 1 commit into
Conversation
|
Someone is attempting to deploy a commit to the openai Team on Vercel. A member of the Team first needs to authorize it. |
Pjrich1313
reviewed
Jun 11, 2026
Pjrich1313
left a comment
There was a problem hiding this comment.
Load diff rerun debug and merge it the batch.
Add OpenHands to the compatibility section with light/dark logos. Replace per-load Math.random shuffle with a date-seeded order so the marquee and expanded grid stay stable through the day. Fixes agentsmd#7 Fixes agentsmd#26
0868f34 to
5f66644
Compare
Author
|
Thanks for the review. I batched the two compatibility changes into this PR:
Local verification on the updated branch: I will close #202 as superseded by this branch. Let me know if you want the seed cadence changed (daily vs hourly) or any tweak to the OpenHands docs link before merge. |
4 tasks
Author
|
Following up after re-checking this branch against current Status
Review notes
CI
This PR fixes #7 and #26 and is ready for maintainer review/merge when convenient. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Batched compatibility updates (supersedes #202):
Math.randomshuffle with a date-seeded order so the marquee and expanded grid stay stable through the dayBoth views now use the same
shuffledAgentslist, so the carousel and expanded grid do not drift apart.OpenHands (#26)
Adds OpenHands to the compatibility section now that support for root-level
AGENTS.mdis documented and implemented in the OpenHands SDK.Evidence
When #26 was opened, OpenHands did not document AGENTS.md support. That has since changed:
AGENTS.mdas always-on context injected at conversation start.load_project_skills()in OpenHands/software-agent-sdk loads third-party files includingAGENTS.mdfrom the git repo root viaPATH_TO_THIRD_PARTY_SKILL_NAMEandfind_third_party_files(). Loaded withtrigger=None, so content is always active in the system prompt.Changes
components/CompatibilitySection.tsx— add OpenHands entry linking to official skills docspublic/logos/openhands-light.svg— logo from OpenHands branding assetspublic/logos/openhands-dark.svg— dark-mode variantScreenshots
Scope notes
@-style file imports or optional spec extensions beyond rootAGENTS.mdloadingDaily-seeded order (#7)
Issue #7 asked for a stable compatibility order instead of reshuffling on every page load.
Approach
getDailySeed()derives a numeric seed from the current UTC date (YYYYMMDD)seededShuffle()applies Fisher–Yates with a deterministic PRNG from that seedshuffledAgents, so order stays consistent through the dayWhy this shape
How verified
pnpm exec next build— compiled successfully, static pages generatednpx tsc --noEmit— passAGENTS.mdis loaded from repo root (case-insensitive filename match)