Skip to content

Promote main → release - #5242

Merged
M3gA-Mind merged 101 commits into
releasefrom
main
Jul 28, 2026
Merged

Promote main → release#5242
M3gA-Mind merged 101 commits into
releasefrom
main

Conversation

@M3gA-Mind

Copy link
Copy Markdown
Collaborator

Promotes main into release.

  • 100 commits ahead, 0 behind release; 232 files changed.
  • Standard promotion of accumulated work from main onto the long-lived release branch (staging & production builds cut from release).

Recent highlights:

Merge only after CI Full Gate passes and with maintainer approval — do not merge unattended.

YellowSnnowmann and others added 30 commits July 21, 2026 19:01
…eature (#5049) (#5061)

Co-authored-by: Steven Enamakel <31011319+senamakel@users.noreply.github.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Sami Rusani <14844597+samrusani@users.noreply.github.com>
…4772)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: binyangzhu000-sudo <224954946+binyangzhu000-sudo@users.noreply.github.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
Co-authored-by: Sami Rusani <14844597+samrusani@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Steven Enamakel <31011319+senamakel@users.noreply.github.com>
Co-authored-by: Cyrus Gray <144336577+graycyrus@users.noreply.github.com>
Co-authored-by: oxoxDev <164490987+oxoxDev@users.noreply.github.com>
Co-authored-by: YellowSnnowmann <167776381+YellowSnnowmann@users.noreply.github.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
Co-authored-by: CodeGhost21 <164498022+CodeGhost21@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: sanil-23 <sanil@tinyhumans.ai>
Co-authored-by: M3gA-Mind <elvin@mahadao.com>
Co-authored-by: oxoxDev <oxoxdev@users.noreply.github.com>
Co-authored-by: Sami Rusani <14844597+samrusani@users.noreply.github.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
…roval prompt (#5094)

Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
#4795 (#5029)

Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
graycyrus and others added 23 commits July 27, 2026 18:09
…seam (#4922) (#5192)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…tion (#5138) (#5215)

Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
@github-advanced-security

Copy link
Copy Markdown
Contributor

You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool.

What Enabling Code Scanning Means:

  • The 'Security' tab will display more code scanning analysis results (e.g., for the default branch).
  • Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results.
  • You will be able to see the analysis results for the pull request's branch on this overview once the scans have completed and the checks have passed.

For more information about GitHub Code Scanning, check out the documentation.

@greptile-apps

greptile-apps Bot commented Jul 28, 2026

Copy link
Copy Markdown

Too many files changed for review. (233 files found, 100 file limit)

Bypass the limit by tagging @greptile-apps to review.

@coderabbitai

coderabbitai Bot commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 72c799dc-8087-4449-8d1d-97bc1d4bb5f9

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Comment @coderabbitai help to get the list of available commands.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: fe33726702

ℹ️ About Codex in GitHub

Codex has been enabled to automatically 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 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment on lines +110 to +111
async fn send<T: DeserializeOwned>(&self, req: reqwest::RequestBuilder) -> Result<T> {
let resp = req.send().await?;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Route Medulla backend calls through the SDK

When Medulla uses the normal configuration, resolve.rs points it at the same api_url deployment as the OpenHuman backend, but this new shared sender executes every /medulla/v1 request via a raw reqwest::RequestBuilder. That bypasses the TinyHumans SDK boundary (and its route/session/TLS/observability policy) for the new managed-backend surface and duplicates envelope/wire handling in OpenHuman; these Medulla routes should be added to tinyhumans-sdk or called through an SDK adapter instead.

AGENTS.md reference: AGENTS.md:L180-L184

Useful? React with 👍 / 👎.

Comment on lines +972 to +973
<p className="text-xs text-content-muted">
Listing a handle for sale and accepting offers happens on tiny.place.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Localize the new seller CTA copy

In non-English locales, this newly added seller card will still render English because the copy is hard-coded instead of going through useT() and the locale files; the same applies to the new button label in this card. Please add i18n keys/translations for the new UI text so the Agent World page remains localized.

AGENTS.md reference: AGENTS.md:L372-L372

Useful? React with 👍 / 👎.

@M3gA-Mind
M3gA-Mind merged commit a40fbb7 into release Jul 28, 2026
122 of 145 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.