Merge dev to main#317
Merged
zbigniewsobiecki merged 10 commits intomainfrom Feb 16, 2026
Merged
Conversation
Adds the ability to manually trigger agent runs and retry failed runs via both CLI and web UI (future PR). Core changes: - New manual-runner.ts with triggerManualRun() and triggerRetryRun() - In-memory duplicate prevention via trigger tracking - Two new tRPC mutations: runs.trigger and runs.retry - CLI commands: cascade runs trigger and cascade runs retry - Added 'manual' to triggerType union in AgentInput - Comprehensive unit tests (9 tests, all passing) Implementation follows the debug-runner.ts pattern: - Fire-and-forget execution (no await on runAgent) - Org access validation in tRPC layer - Error handling with logger - Status tracking to prevent concurrent duplicates Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
The router was dropping all commentCard webhook events with "Ignoring Trello: commentCard", preventing the trello-comment-mention trigger from firing when users @mention the bot on PLANNING cards. Add commentCard to the shouldProcess condition in parseTrelloWebhook(). No router-level pre-filtering is needed — the worker-side TrelloCommentMentionTrigger already validates mention presence, card list membership, and self-authorship, matching the pattern used for JIRA comment events. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ent-card-events fix: forward commentCard events in Trello router
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
commentCardevents in Trello router (fix: forward commentCard events in Trello router #316)commentCardtoshouldProcessinparseTrelloWebhook()so thetrello-comment-mentiontrigger fires on @mentions in PLANNING card commentsruns retry,runs triggerAll CI checks passing on
dev.🤖 Generated with Claude Code