Skip to content

Yc/fix macos#2255

Closed
yichulau wants to merge 4 commits into
dimensionalOS:mainfrom
CeciliaZ030:yc/fix-macos
Closed

Yc/fix macos#2255
yichulau wants to merge 4 commits into
dimensionalOS:mainfrom
CeciliaZ030:yc/fix-macos

Conversation

@yichulau
Copy link
Copy Markdown

remove cude relevant pkgs

@yichulau yichulau closed this May 26, 2026
Copy link
Copy Markdown

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

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: 1985fb6ad3

ℹ️ 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".

Comment on lines +129 to 130
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Avoid PIPEing MuJoCo stdout without draining it

This change sets the MuJoCo child process stdout/stderr to PIPE but the parent does not read either stream while waiting for readiness. If the child emits enough logs during startup, the OS pipe buffer can fill and block the child before shared memory is marked ready, causing startup to hang or time out. Use inherited stdout/stderr, a file sink, or concurrent readers instead of leaving both pipes undrained.

Useful? React with 👍 / 👎.

Comment thread ops/dimos.service
Type=simple
WorkingDirectory=/opt/dimos
EnvironmentFile=/opt/dimos/.env
ExecStart=/opt/dimos/.venv/bin/dimos run unitree-go2-agentic
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Start the guide service with the guide blueprint

The unit file is labeled as the guide-robot service, but ExecStart runs unitree-go2-agentic rather than the new guide stack. That blueprint does not include the guide-specific modules (e.g., blind-assistant skills and agent_state stream), so deploying this service will boot a stack incompatible with the new phone/web flow.

Useful? React with 👍 / 👎.

Comment thread webapp/.env.local
@@ -0,0 +1,2 @@
NEXT_PUBLIC_DIMOS_API=https://cecilia-apple-m3-max.ratfish-drum.ts.net:8443
NEXT_PUBLIC_DIMOS_TOKEN=42c7d88186fe9ee5364585f018d2d18e
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Remove committed API token from tracked local env

This commit checks in a concrete backend URL and bearer token in a tracked .env.local. Because this token is used to authorize command/query endpoints, publishing it in-repo creates immediate credential exposure and also bakes environment-specific secrets into generated client artifacts committed in the same change. Replace with placeholders and rotate the leaked token.

Useful? React with 👍 / 👎.

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.

2 participants