Correct README framing to match actual OpenCode behavior#28
Merged
standardnguyen merged 1 commit intomainfrom Apr 17, 2026
Merged
Correct README framing to match actual OpenCode behavior#28standardnguyen merged 1 commit intomainfrom
standardnguyen merged 1 commit intomainfrom
Conversation
After r/LocalLLaMA feedback (credit: u/Spotty_Weldah, who authored the original source-code audit post and walked back their own framing), walked the upstream sst/opencode source and confirmed that PostHog lives in a GitHub Actions download-stats cron, Honeycomb lives in a cloud-console Lambda, and most of the other endpoints are opt-in or permission-gated. Only models.dev (startup fetch) and app.opencode.ai (web-UI fallback proxy) are genuinely default-on in the CLI. The strip commits themselves remain justified as defense-in-depth against config drift or future upstream changes, but the "silently transmits data" framing was overstated and has been corrected in the README. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
standardnguyen
approved these changes
Apr 17, 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.
Summary
After a comment on r/LocalLLaMA from u/Spotty_Weldah — who authored the original source-code-audit post and then walked back their own framing — walked the upstream
sst/opencodesource and confirmed:script/stats.ts+.github/workflows/stats.yml(a daily GitHub Actions cron for download stats). Not in the CLI binary.packages/console/function/src/log-processor.ts(cloud-side Lambda log processor). Not in the CLI binary.opncd.ai/api.opencode.ai) is opt-in — only fires after/share,share: autoin config, orOPENCODE_AUTO_SHARE=1.opencode.ai/zen/v1) is a hosted provider users opt into by signing up.mcp.exa.ai) is permission-gated — the websearch tool prompts before every call.The genuinely default-on, in-CLI phone-homes are
models.dev(startup model-catalog fetch) andapp.opencode.ai(web-UI fallback proxy). Those are the real reasons the fork exists.What changed
> Correction (2026-04-17)block near the top naming the overclaim, linking to the Reddit comment, and crediting Spotty_Weldah.What stays the same
The strip commits themselves (
strip-posthog,strip-honeycomb, etc.) remain. They're defense-in-depth against config drift or future upstream changes dropping domain references into the CLI. Only the marketing was wrong.Test plan