blog: land codex reviewer fixes for OpenClaw first-week post#565
Merged
blog: land codex reviewer fixes for OpenClaw first-week post#565
Conversation
…ew-fixes [codex] fix OpenClaw dry-run rollout guidance
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
Lands the codex/external-reviewer fixes from PR #564 into
main. These were merged into the blog branch after #563 was already merged into main, so the published post still has the older claims.What's in this PR
A second-round technical pass on
blog/openclaw-budget-guard-first-week-dry-run-to-production.md. Six edits, all verified against the integration guide andblog/openclaw-plugin-lessons-learned.md:simulated dry-run,canary cutover decision).analyticsWebhookUrlso readers can copy-and-run a setup that actually delivers the fullSessionSummary.enableEventLogbullet corrected —eventLogis a field insideSessionSummary, and the practical way to retrieve the full summary is viaanalyticsWebhookUrlor a wrapper readingctx.metadata, not log scraping.BudgetExhaustedError/ToolBudgetDeniedErrorclass names with the observable forms (model block, tool reservation denial, call-limit block, access-list block). Per Lesson 2 of the lessons-learned post,BudgetExhaustedErrordoesn't surface as such in OpenClaw logs — the plugin redirects to__cycles_budget_exhausted__and the reader sees a provider "Unknown model" error.dryRunBudget: 1000000000, you're intentionally avoiding the wall. Original framing implied dry-run gives you a comparable denial rate; it doesn't.__cycles_budget_exhausted__model failure rather thanBudgetExhaustedError).Test plan
npm run dev) and confirm the post renders without VitePress errors./blog/listings and OG metadata.analyticsWebhookUrladdition.Related