Add MiniMax + harness announcements and a scheduled Discord auto-poster#2
Merged
Rod-Christensen merged 7 commits intoJun 9, 2026
Conversation
…ncements Adds three info announcements (valid 2026-06-04 → 2026-06-11): - rocketride-minimax-m3-2026: RocketRide × MiniMax partnership; M3 open-weights model live as an open-source pipeline node - rocketride-cloud-launch-rho-2026: RocketRide Cloud launch June 18 at SHACK15 with Rho as official Launch Night partner - rocketride-harness-engineering-demo-2026: Joe Maionchi's SCALE Demo Day live demo — sub-30s offline pipeline, C++ runtime, 64 threads Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- Drop rocketride-cloud-launch-rho-2026 entry - Add discord_post_at to the remaining four (MiniMax posts tomorrow 9am PT, the rest backdated to 2026-06-03 9am PT) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
GitHub Action that posts announcements.json entries to a Discord channel on an hourly schedule, gated by discord_post_at / valid_from / valid_until and deduped via a committed-back ledger (.discord/posted.json). - discord-post.yml: hourly cron + manual workflow_dispatch - post-to-discord.sh: rich-embed default, or verbatim plain message via optional discord_content (@everyone, custom emoji, raw URLs) - DISCORD_SETUP.md: setup + scheduling/formatting docs - requires repo secret DISCORD_ANNOUNCEMENT_WEBHOOK_URL Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Removes the MiniMax id from the posted ledger so the hourly poster sends it at its discord_post_at (2026-06-05T16:00:00Z / 9am PT). The other three stay seeded so enabling the workflow won't re-post them. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Switches the MiniMax Discord post from the default embed to a plain @everyone message with the RocketRideiconWhite custom emoji and bullet highlights. Extension copy (title/body) is unchanged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Rod-Christensen
left a comment
Contributor
There was a problem hiding this comment.
Please combine update this PR with the fix you included in the next PR so they are one unit of work. Also, if you are going to add fields to the schema, update README.md documenting the fields added or changed.
Try to limit the body text to 2 sentences and don't use emojis -- that really cheapens the product. If you want a graphic, but it in assets and reference it in the markdown code.
The check piped .announcements[].id into a comparison, then referenced .announcements again on the right of the pipe — but after the pipe jq has rebound . to the id array, so the second .announcements indexed an array with a string and aborted: jq: error: Cannot index array with string "announcements" It failed for every valid announcements.json since the scaffold, so id uniqueness was never actually enforced. Bind the id list once with `as $ids` and compare its length to its deduped length so the filter parses and the check works. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- Drop the Discord auto-poster entirely: discord-post.yml, the poster script, the ledger, DISCORD_SETUP.md, and the discord_post_at / discord_content fields on announcements - Rewrite MiniMax and harness bodies to <=2 sentences with no emoji; give the harness entry the RocketRide logo - Document body/title conventions (<=2 sentences, no emoji, graphics via assets referenced in Markdown) in README Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Collaborator
Author
|
@Rod-Christensen, Thanks for the review! Made the changes:
|
Rod-Christensen
approved these changes
Jun 9, 2026
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.
Announcements-feed update, in three parts:
1. New announcements (announcements.json)
rocketride-minimax-m3-2026 — RocketRide × MiniMax partnership; M3 open-weights model live as an open-source pipeline node.
rocketride-harness-engineering-demo-2026 — SCALE Demo Day demo (sub-30s offline pipeline, 64-thread C++ runtime).
Both bodies are kept to ≤2 sentences with no emoji, and both use the RocketRide logo from assets/.
2. CI fix (validate.yml)
Fixed the unique-id check, which errored on every run since the scaffold
3. Docs (README.md)
Documented the title/body authoring conventions: bodies ≤2 sentences, no emoji, and visuals committed to assets/ and referenced via Markdown image syntax rather than inline emoji.
Notes
No schema changes — the field set is unchanged.
Discord auto-poster removed for now. It needs more brainstorming, so it'll come back as its own focused PR rather than riding along here.