fix: WCAG-compliant theme token system with extended color tokens#592
Open
openasocket wants to merge 209 commits intoRunMaestro:rcfrom
Open
fix: WCAG-compliant theme token system with extended color tokens#592openasocket wants to merge 209 commits intoRunMaestro:rcfrom
openasocket wants to merge 209 commits intoRunMaestro:rcfrom
Conversation
Introduce maestro:// URL scheme support for navigating to agents, tabs, and groups from external apps and OS notification clicks. - Add deep-links module with URL parsing, protocol registration, single-instance locking, and cross-platform event handling - Wire notification click handlers to navigate to the originating agent/tab via deep link dispatch - Thread sessionId/tabId context through notification preload bridge - Add onDeepLink listener in renderer with routing to existing navigation handlers - Register maestro:// protocol in electron-builder config - Add 18 tests covering URL parsing and notification click wiring
- URI-encode sessionId/tabId when constructing deep link URLs in notification click handler to prevent malformed URLs with special chars - Add process.exit(0) after app.quit() so secondary instances exit immediately without running further module-level setup - Use useRef for sessions in deep link effect to avoid tearing down and re-registering the IPC listener on every sessions change - Guard against navigating to non-existent session IDs in deep link handler to prevent invalid UI state - Add cross-reference comment in global.d.ts linking to canonical ParsedDeepLink type (can't import in ambient declaration file) - Add test for URI-encoding round-trip in notification click handler
- Add shared deep-link-urls.ts with buildSessionDeepLink(),
buildGroupDeepLink(), and buildFocusDeepLink() utilities
- Add {{AGENT_DEEP_LINK}}, {{TAB_DEEP_LINK}}, {{GROUP_DEEP_LINK}}
template variables available in system prompts, custom AI commands,
and Auto Run documents
- Wire activeTabId and groupId into TemplateContext at all call sites
(agentStore, useInputProcessing, useRemoteHandlers,
useDocumentProcessor, useMergeTransferHandlers, batch-processor)
- Refactor notifications.ts to use shared buildSessionDeepLink()
- Add sessionId/tabId to notifyToast callers where context is available
(merge, transfer, summarize, PR creation)
- Add docs/deep-links.md documentation page with URL format, usage
examples, template variables, and platform behavior
- Add 8 tests for URL builders, 6 tests for template variable
substitution including URI encoding
…e activity indicators Broadcast new history entries via IPC when they are added, subscribe in the UnifiedHistoryTab with RAF batching and deduplication, and extend the HistoryStatsBar with spinning Active agent count and Queued message count indicators derived from the Zustand session store.
…orrect types - Replace unstable sessionNameMap Zustand selector (new Map per render) with a stable ref + subscribe pattern to avoid streaming effect re-subscription - Dedupe within batch before merging; compute setTotalEntries and setHistoryStats from deduplicated entries only (not raw batch) - Clear pendingEntriesRef on cleanup to prevent stale replay after resubscribe - Use HistoryEntry (not UnifiedHistoryEntry) in preload callback type since the wire payload lacks sourceSessionId - Use canonical UsageStats interface in global.d.ts (fixes pre-existing cacheReadTokens/cacheWriteTokens field name mismatch)
…URL registry support - Add `symphony: boolean` (default true) to EncoreFeatureFlags - Gate Symphony modal, menu item, keyboard shortcut (⇧⌘Y), and command palette entry - Add `symphonyRegistryUrls` setting for user-configured additional registry URLs - Replace single `fetchRegistry()` with `fetchRegistries()` that fetches default + custom URLs in parallel - Merge repositories by slug (default registry wins on conflicts), isolated per-URL error handling - Add Symphony toggle + Registry Sources UI in Settings > Encore tab - Update tests for new symphony flag across all encore feature assertions
- Redact registry URLs before logging to prevent credential leakage - Skip registry cache when custom source URLs are configured (stale cache fix) - Runtime-validate symphonyRegistryUrls from settings store - Reset modal-open flags when Encore Feature toggles are disabled - Normalize registry URLs before duplicate/default checks - Add aria-label to icon-only registry URL remove button - Expose setSymphonyRegistryUrls in getSettingsActions() - Validate persisted symphonyRegistryUrls with Array.isArray guard
…r, and Encore feature flag - Register maestroCue as an Encore Feature flag (EncoreFeatureFlags, DEFAULT_ENCORE_FEATURES) - Create src/main/cue/cue-types.ts with CueEventType, CueSubscription, CueSettings, CueConfig, CueEvent, CueRunStatus, CueRunResult, CueSessionStatus, and related constants - Add 'CUE' to HistoryEntryType across shared types, global.d.ts, preload, IPC handlers, and hooks - Add cueTriggerName, cueEventType, cueSourceSession optional fields to HistoryEntry - Add 'cue' log level to MainLogLevel, LOG_LEVEL_PRIORITY, logger switch/case, and LogViewer with teal color (#06b6d4), always-enabled filter, and agent name pill - Add 10 Cue-specific template variables (CUE_EVENT_TYPE, CUE_TRIGGER_NAME, etc.) with cueOnly flag - Extend TemplateContext with cue? field and substituteTemplateVariables with Cue replacements - Update TEMPLATE_VARIABLES_GENERAL filter to exclude cueOnly variables
…ovider Implements the three core modules for the Cue event-driven automation engine: - cue-yaml-loader.ts: Discovers and parses maestro-cue.yaml files with js-yaml, validates config structure, watches for file changes via chokidar with 1-second debounce - cue-file-watcher.ts: Wraps chokidar for file.changed subscriptions with per-file debouncing (5s default), constructs CueEvent instances with full file metadata payloads - cue-engine.ts: Main coordinator class with dependency injection, manages time.interval timers (fires immediately then on interval), file watchers, agent.completed listeners with fan-in tracking, activity log ring buffer (max 500), and run lifecycle management Added js-yaml and @types/js-yaml dependencies. 57 tests across 3 test files.
…story recording Implements the Cue executor module that spawns background agent processes when Cue triggers fire, following the same spawn pattern as Auto Run's process:spawn IPC handler. Key exports: - executeCuePrompt(): Full 10-step pipeline (prompt resolution, template substitution, agent arg building, SSH wrapping, process spawn with stdout/stderr capture, timeout enforcement with SIGTERM→SIGKILL) - stopCueRun(): Graceful process termination by runId - recordCueHistoryEntry(): Constructs HistoryEntry with type 'CUE' and all Cue-specific fields (trigger name, event type, source session) - getActiveProcesses(): Monitor running Cue processes Test coverage: 31 tests in cue-executor.test.ts covering execution paths, SSH remote, timeout escalation, history entry construction, and edge cases. Full suite: 21,635 tests passing across 512 files, zero regressions.
…zation for Maestro Cue
Add CUE entry support across all History components: - HistoryFilterToggle: CUE filter button with teal (#06b6d4) color and Zap icon - HistoryEntryItem: CUE pill, success/failure badges, and trigger metadata subtitle - HistoryPanel & UnifiedHistoryTab: CUE included in default activeFilters - HistoryDetailModal: CUE pill color, icon, success/failure indicator, trigger metadata display - Comprehensive test coverage for all CUE rendering paths (205 new/updated tests pass)
…nd activity log Add the Maestro Cue dashboard modal with full Encore Feature gating: - CueModal component with sessions table, active runs list, and activity log - useCue hook for state management, event subscriptions, and 10s polling - Settings toggle in Encore tab, command palette entry, keyboard shortcut (Cmd+Shift+U) - SessionList hamburger menu entry, modal store integration, lazy loading - 30 tests covering hook behavior and modal rendering
Add CueYamlEditor component for creating and editing maestro-cue.yaml files. Features split-view layout with AI assist (left panel for description + clipboard copy) and YAML editor (right panel with line numbers, debounced validation, Tab indentation). Integrates into CueModal via Edit YAML button on each session row.
…yaml Task 1: CueHelpModal component with 7 content sections (What is Maestro Cue, Getting Started, Event Types, Template Variables, Multi-Agent Orchestration, Timeouts & Failure Handling, AI YAML Editor). Wired to CueModal ? button. Registered with layer stack at MODAL_PRIORITIES.CUE_HELP (465). Task 2: useCueAutoDiscovery hook that calls cue:refreshSession when sessions are created/restored/removed, gated by encoreFeatures.maestroCue. Full scan on feature enable, engine disable on feature off. Tests: 38 CueHelpModal tests + 10 useCueAutoDiscovery tests, all passing. Lint clean. No existing test regressions (21,778 tests pass).
… session bridging Implement agent completion event chaining in the Cue engine: - Fan-out: subscriptions dispatch prompts to multiple target sessions simultaneously - Fan-in: subscriptions wait for all source sessions to complete before firing, with timeout handling (break clears tracker, continue fires with partial data) - Session bridging: user session completions trigger Cue subscriptions via exit listener - Add AgentCompletionData type for rich completion event payloads - Add hasCompletionSubscribers() optimization to skip unneeded notifications - Wire getCueEngine/isCueEnabled into ProcessListenerDependencies
…ure gated) Add teal Zap icon next to session names in the Left Bar for sessions with active Maestro Cue subscriptions. The indicator is gated behind the maestroCue Encore Feature flag and shows a tooltip with the subscription count on hover. - Add cueSubscriptionCount prop to SessionItem with Zap icon rendering - Add lightweight Cue status fetching in SessionListInner via cue:getStatus IPC, refreshed on cue:activityUpdate events - Add cue namespace to global test setup mock - 6 unit tests + 3 integration tests; all 21,815 tests pass; lint clean
Add Maestro Cue entries across all developer documentation: - CLAUDE.md: Key Files table (4 entries), Architecture tree (cue/ dir), Standardized Vernacular (Cue + Cue Modal terms) - CLAUDE-PATTERNS.md: Encore Feature section lists maestroCue as second reference implementation alongside directorNotes - CLAUDE-IPC.md: cue namespace in Automation section, full Cue API reference with all endpoints and event documentation
…t journal - Add cue-db.ts: SQLite-backed event journal (cue_events table) and single-row heartbeat table (cue_heartbeat) using better-sqlite3 with WAL mode - Add cue-reconciler.ts: time event catch-up logic that fires exactly one reconciliation event per missed subscription (no flooding), with payload.reconciled and payload.missedCount metadata - Update cue-engine.ts: heartbeat writer (30s interval), sleep detection (2-minute gap threshold), database pruning (7 days), and clean shutdown - Update CueHelpModal: new "Sleep & Recovery" section with Moon icon - Update CueModal: amber "catch-up" badge on reconciled activity log entries - Tests: 41 new tests across cue-db (17), cue-reconciler (11), cue-sleep-wake (13)
Add filter field to CueSubscription for narrowing when subscriptions fire. Supports exact match, negation (!), numeric comparison (>/</>=/<=), glob patterns (picomatch), and boolean matching with AND logic. Filter checks integrated at all three dispatch points (file.changed, time.interval, agent.completed). Includes help modal docs, AI prompt updates, and 80 new tests (43 filter engine + 37 YAML loader).
… awareness Add pattern presets (Scheduled Task, File Enrichment, Reactive, Research Swarm, Sequential Chain, Debate) to the YAML editor as clickable cards. Enhance the AI system prompt with pattern recognition guidance. Add a Coordination Patterns section with ASCII flow diagrams to the help modal.
Add github.pull_request and github.issue event types to CueEventType union. Add repo and poll_minutes fields to CueSubscription interface. Add cue_github_seen SQLite table with 5 CRUD functions for tracking seen GitHub items (isGitHubItemSeen, markGitHubItemSeen, hasAnyGitHubSeen, pruneGitHubSeen, clearGitHubSeenForSubscription). Create cue-github-poller.ts module that polls GitHub CLI for new PRs/issues, seeds existing items on first run, and fires CueEvents for new items. Comprehensive test suite with 17 test cases covering all polling behaviors. All 264 Cue tests pass, lint clean.
…ge) to Cue patterns
Add GitHub Pull Request and GitHub Issue event type blocks with descriptions, YAML configuration examples, and seven new GitHub template variables (CUE_GH_*) to the Cue Help Modal documentation.
Worktree and wizard sessions now start with only an AI tab. Users can launch terminal tabs on demand. Removes unnecessary createTerminalTab calls and imports from worktreeSession.ts and useWizardHandlers.ts. Claude ID: c57f388f-2e03-48f6-b055-bfb0510fd774 Maestro ID: 373c50f0-14a3-45b7-833f-ccc086211379
The worktree children filter in SessionList was hiding the active session when it had no unread tabs and wasn't busy. Added activeSessionId exemption so the user's current worktree always appears in the left bar.
…pdate tests - Fix DEFAULT_SHORTCUTS.maestroCue → openCue in CueHelpModal (runtime crash) - Remove orphaned auto-scroll toggle JSX and state refs in TerminalOutput - Remove orphaned CueYamlEditor import/state in CueModal (replaced by pipeline editor) - Remove orphaned stats/WakaTime settings and effects in EncoreTab - Remove duplicate filterUnreadAgents branch in useMainKeyboardHandler - Add missing imports in DocumentGenerationView (MermaidRenderer, useClickOutside, etc.) - Prefix unused readOnlyMode param in agent-spawner - Remove unnecessary eslint-disable comment in MainPanel - Update CueModal test: YAML editor assertion → stub no-throw check - Update keyboard handler test: Cmd+T in terminal mode correctly blocked (AI mode only)
SSH Group Chat participants crashed immediately (exit code 1) because large prompts were embedded in bash -c CLI args via buildSshCommand(), where ProcessManager couldn't detect --input-format stream-json flags to enable stdin delivery. Switched to buildSshCommandWithStdin() for large prompts, matching the proven pattern in process:spawn IPC handler. Also added missing SSH wrapping to spawnModeratorSynthesis().
Added a useEffect in App.tsx that tracks inputMode transitions via a ref. When switching from terminal back to AI mode (via tab click, Cmd+J, or any other path), the input textarea is automatically focused so the user can immediately start typing. Claude ID: 3ce1f013-9673-40ec-ac0c-5cf1eaca0198 Maestro ID: 373c50f0-14a3-45b7-833f-ccc086211379
- Session cleanup now kills AI, legacy terminal, and tab PTYs reliably 🔥 - Terminal tabs get proper per-tab process IDs via `getTerminalSessionId` 🧩 - Closing sessions now iterates all `terminalTabs` to terminate each PTY ✅ - Deleting sessions also shuts down every terminal tab process cleanly 🧹 - Improved test coverage for multi-tab PTY termination on close 🧪 - More resilient error handling around terminal-tab process kills 🛡️ - Sentry captures tab-kill failures with session and tab context 🕵️ - Clearer lifecycle comments and intent: “kill all processes” upfront 📝
Cmd+0 was previously consumed by font size reset, blocking the goToLastTab shortcut. Now Cmd+0 goes to the last tab (consistent with Cmd+1-9 tab navigation) and Cmd+Shift+0 resets font size. Font size reset is now customizable in Settings → Shortcuts (moved from FIXED_SHORTCUTS to DEFAULT_SHORTCUTS).
- Splash screen now waits for initial file tree readiness before dismissing 🎬 - Added `initialFileTreeReady` gate to session store initialization flow 🧱 - New splash progress stage highlights file indexing at 80% 🗂️ - UI rendering stage bumped to 90% once file tree finishes loading 📈 - File tree manager signals readiness exactly once on success or error 🔔 - Session restoration unblocks splash immediately when no sessions exist 🧹 - Session-load failures now mark file tree ready to prevent startup hangs 🧯 - App initialization reacts to settings, sessions, and file tree readiness 🔄 - Improved startup messaging: “Indexing the score...” during file discovery 🎻 - Updated tests to cover new three-gate splash behavior and progress ✅
The scroll-into-view logic used full container bounds but didn't subtract the widths of the sticky left (search/filter) and right (+) elements, causing the active tab's close button to be hidden behind them when jumping to a tab or after auto-rename.
Session rows and process rows now show a hover-visible ExternalLink button that navigates to the agent (session) or specific tab and closes the modal. Group chat processes get a similar button that navigates to the group chat.
Show a confirmation modal when closing AI tabs that have draft text or staged images. Applies to single tab close (Cmd+W, click X), and bulk operations (close all, close other, close left, close right).
… retarget Resolved 13 merge conflicts from squash-merging the theme integration branch onto 0.16.0-RC. Core WCAG-compliant theme token system preserved (ThemeColors expanded to 30 required fields with sectioned CustomThemeBuilder). Fixed 4 test expectations where tests expected theme tokens but components retained RC's hardcoded color values (LogViewer info/warn/error levels, PromptComposerModal backdrop). All 563 test files pass (23018 tests). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
spawnAgent was dropping the readOnly flag when calling spawnJsonLineAgent, and spawnJsonLineAgent ignored it entirely. Now readOnlyArgs and readOnlyEnvOverrides from agent definitions are applied for all JSON line agents (Codex, OpenCode, Factory Droid) in read-only/plan mode. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
… in CLI Three fixes for CLI batch/send agent spawning: 1. Pass readOnly flag to spawnJsonLineAgent (was silently dropped) 2. Skip YOLO/bypass args in read-only mode for all agents — they were overriding read-only flags (--dangerously-skip-permissions for Claude, --dangerously-bypass-approvals-and-sandbox for Codex, -y for Gemini) 3. Read customModel from agent session config and pass it via modelArgs so CLI-spawned agents use the model configured in the desktop UI Also fixes OpenCode read-only env overrides to keep blanket permission grants (prevents stdin hangs in batch mode) since --agent plan handles read-only enforcement at the CLI level. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Invert stale test asserting --dangerously-skip-permissions is present in read-only mode; add coverage for its presence in normal mode - Skip yolo-arg filtering for agents without CLI-level read-only enforcement (Gemini CLI needs -y to avoid interactive prompt hang with closed stdin) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…utoRun (RunMaestro#579) * MAESTRO: fix subdirectory document path resolution in CLI auto-run handler The configureAutoRun event handler was stripping absolute paths to basenames, losing subdirectory components. Documents in subfolders of the Auto Run folder (e.g., "2026-03-16-Feature/PHASE-01.md") would resolve to just "PHASE-01", causing the batch processor to fail silently with "No unchecked tasks found". Now computes the path relative to autoRunFolderPath, preserving subdirectory structure (e.g., "2026-03-16-Feature/PHASE-01"). Falls back to basename-only for paths not under the folder. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * MAESTRO: add --agent flag to auto-run CLI command Add -a/--agent option that resolves agent by UUID (with partial ID matching via resolveAgentId). Takes precedence over --session when both are provided. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * MAESTRO: add {{AGENT_ID}} template variable and update system prompt with --agent flag Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * MAESTRO: deprecate --session flag in auto-run CLI, prefer --agent --session now prints a deprecation warning and routes through resolveAgentId (same as --agent). Tests updated to use --agent as the primary targeting method. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * MAESTRO: fix CLI auto-run review feedback - Wrap resolveAgentId in try-catch to handle invalid agent IDs gracefully - Remove false-positive path prefix match branch in document path resolution - Use console.warn instead of console.error for deprecation warning Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: export unused DocumentSelector/DocumentEditor to resolve TS6133 Pre-existing lint failures — these components are reserved for upcoming multi-document UI but were flagged by noUnusedLocals. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: update deprecation test for console.warn and format system prompt Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: format auto-run test with prettier Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: address second round of review feedback - Fix system prompt: "picks an arbitrary agent" → "selects the first available agent" - Add case-insensitive path prefix check for Windows drive-letter compatibility - Add regression test for resolveAgentId throwing with clean error handling Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: break long line in App.tsx for prettier compliance Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
…ng test assertion - Add `return` before process.exit(1) in the resolveAgentId catch block to prevent continued execution with uninitialized sessionId in test environments - Assert deprecation warning fires in "prefer --agent over --session" test - Clean up unused `msg` parameter (TS6133)
…adonly-mode fix: enforce read-only mode for JSON line agents and pass customModel in CLI
The task-execution call forwards customModel but the synopsis call did not, causing synopsis generation to use the default model instead of the user's configured custom model.
…custom-model Fix: Forward customModel to batch synopsis call
RunMaestro#518) * feat: add auto-follow toggle to batch progress banner (RunMaestro#347) Add "Follow active task" checkbox to the Auto Run batch progress banner that auto-selects the currently running document when the batch document index changes. Includes state tracking refs for detecting batch start and document transitions. * feat: add scroll-to-active-task and focus-safe auto-follow in AutoRun (RunMaestro#347) - Add autoFollowEnabled prop to AutoRunProps interface - Guard both focus-stealing useEffects (mode change + document selection) to skip .focus() when autoFollowEnabled && batchRunState.isRunning - Add useEffect that scrolls to first unchecked checkbox in preview mode using scrollIntoView (focus-safe) with 150ms render delay - Pass autoFollowEnabled through RightPanel autoRunSharedProps - Add autoFollowEnabled to React.memo comparison function * feat: auto-switch Right Bar to autorun tab and preview mode on batch start (RunMaestro#347) When auto-follow is enabled and a batch run starts, automatically: - Switch the Right Bar to the Auto Run tab - Open the right panel if it was closed - Switch to preview mode if currently in edit mode This only triggers on batch START (not on subsequent document transitions), so users can freely switch tabs mid-run without being overridden. * refactor: extract auto-follow logic into useAutoRunAutoFollow hook (RunMaestro#347) Move auto-follow state, refs, and useEffect from RightPanel.tsx into a dedicated hook for testability. Add 8 test cases covering document auto-selection, tab switching, panel opening, and ref reset behavior. * feat: add Follow active task toggle to Auto Run config modal (RunMaestro#347) - Lift autoFollowEnabled state from local useState to zustand uiStore - Add checkbox in BatchRunnerModal footer, applied on Go - Immediately jump to active task when toggling on during a running batch * fix: add isRunning guard to auto-follow and remove unused toggleRightPanel (RunMaestro#347) - Gate auto-select on isRunning to prevent spurious document navigation when toggling auto-follow after a batch ends - Remove unused toggleRightPanel from UseAutoRunAutoFollowDeps interface - Early-return in scroll-to-task effect when preview has no checkboxes * fix: address PR review comments for auto-follow (RunMaestro#347) - Remove local autoFollowEnabled state in BatchRunnerModal to prevent stale overwrite of store value on Go action - Wrap scroll-to-task setTimeout with requestAnimationFrame for more reliable DOM targeting after React render - Add test for enabling auto-follow during an already-running batch * fix: prevent focus-stealing on batch run stop by reading isRunning from ref (RunMaestro#347)
…after merge
ProcessMonitor: Re-add SSH remote badges (Local/SSH indicators on session
and process rows) that were present in the RC but missing from the theme
branch's non-conflicting version.
QuickActionsModal: Re-add agent switcher mode ('agents' initialMode) with
dedicated agentActions list, sorting, placeholder, and aria-label that were
present in the RC.
Both source files needed these RC additions to match their RC test files
(Category 7 merge conflict resolution).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Auto-formatted 8 files that had style inconsistencies after merging runmaestro/0.16.0-RC into the theme branch. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…ility - UIStore: Add autoFollowEnabled state and setAutoFollowEnabled action (used by useAutoRunAutoFollow hook from RC) - SessionInfo: Add customModel field (used by CLI send command) - AgentCapabilities: Add supportsWizard, supportsGroupChatModeration, usesJsonLineOutput, usesCombinedContextWindow fields + accept full RC capabilities.ts (used by agent-spawner) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Accept RC versions for files that kept the theme branch's version during the non-conflicting merge resolution but caused test failures: Source files updated to RC: - cue-engine.ts, cue-types.ts, cue-file-watcher.ts, cue-github-poller.ts - agentConstants.ts, cue-pipeline-types.ts, pipelineToYaml.ts Test files updated to RC: - capabilities.test.ts, session-storage.test.ts - cue-completion-chains.test.ts, cue-concurrency.test.ts - cue-engine.test.ts, cue-github-poller.test.ts - pipelineToYaml.test.ts, useInputProcessing.test.ts - useRemoteHandlers.test.ts All 581 test files now pass (23,301 tests, 0 failures). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Important Review skippedToo many files! This PR contains 186 files, which is 36 over the limit of 150. ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (186)
You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment Tip You can enable review details to help with troubleshooting, context usage and more.Enable the |
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
Retarget of #370 and successor to #551 — now fully merged with RC (75 conflicts resolved, all 23,301 tests passing).
successForeground,warningForeground,errorForeground), dimmed status backgrounds (successDim,warningDim,errorDim,infoDim),infocolor, overlays (overlay,overlayHeavy), hover/active states (hoverBg,activeBg), git diff colors (diffAddition,diffAdditionBg,diffDeletion,diffDeletionBg), andshadowWhat Changed from #551
Test Plan
npm run lint— all 3 tsconfig targets passnpm run test— 23,301 tests pass, 107 skipped, 0 failures🤖 Generated with Claude Code