Merge dev to main#481
Merged
zbigniewsobiecki merged 2 commits intomainfrom Feb 22, 2026
Merged
Conversation
…ithout plan edits (#479) The planning comment agent previously assumed every comment required plan modifications, wasting iterations on unnecessary UpdateWorkItem calls when users just asked questions like "Why this approach?" or "Can you explain step 3?". Mirror the pattern from respond-to-pr-comment: classify the comment as a question (PostComment only), a plan update (existing behavior), or both, and act accordingly. - Add Comment Classification section (Category A/B/C) to the prompt template - Soften CRITICAL rules: "ONLY job" → "primary role", remove unconditional UpdateWorkItem mandate - Add branching task flow: questions get PostComment-only, updates get plan edits + summary, mixed gets both - Add question-only response format ("Re: [topic]") alongside existing "Plan Updated" format - Update taskPrompts.ts buildCommentResponsePrompt with classification instruction matching buildPRCommentResponsePrompt pattern - Add tests for new classification behavior and template rendering Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
…env vars directly (#480) Credentials are immutable during a worker run. The previous three-mechanism approach (JSON blob env var → parse + spread to process.env → populate cache module → credential functions check env + cache + DB guards) is replaced by a single mechanism: router sets individual env vars, credential functions read from process.env. - Router sets individual env vars + CASCADE_CREDENTIAL_KEYS sentinel - Delete loadRouterCredentials() from worker-entry (env vars set by Docker) - Credential functions use CASCADE_CREDENTIAL_KEYS as worker-context guard - getAllProjectCredentials reconstructs map from env var key list - Remove legacy GITHUB_TOKEN fallback in resolveGitHubToken - Remove dead CASCADE_CREDENTIALS/CASCADE_CREDENTIALS_PROJECT_ID from scrub list Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
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
Routine dev → main promotion.