Skip to content

Staging - #210

Merged
TradingGoose-Dev merged 12 commits into
mainfrom
staging
Aug 31, 2026
Merged

Staging#210
TradingGoose-Dev merged 12 commits into
mainfrom
staging

Conversation

@BruzWJ

@BruzWJ BruzWJ commented Aug 31, 2026

Copy link
Copy Markdown
Contributor

Summary

  • Promote the 12 staged commits into main.
  • Migrate application primitives from Radix to Base UI, refresh root loading/error/provider handling, and update related docs and README content.
  • Make Copilot a persistent workspace panel with user/workspace-scoped sessions, bounded/redacted page context, refreshed provider model catalogs, an improved model selector, and workspace-aware chat requests.
  • Harden billing tiers, private-tier enrollment, Stripe portal/authorization flows, and durable workflow/Airtable recovery; improve trigger form fields and terminal console finalization.
  • Normalize formatting, imports, Tailwind utility ordering, and redundant rendering code across the monorepo.

Why

Promote the tested staging release to production with its UI-platform, Copilot, billing/execution, workflow, provider, and maintenance improvements.

Affected Areas

  • apps/tradinggoose
  • apps/docs
  • packages/*
  • Workflows / execution
  • Realtime / sockets
  • Market data / charting
  • Dev tooling / CI / infra
  • Documentation only
  • Other: release promotion

Issue Links( if any )

Includes staged PRs #179, #181, #191, #192, #196, #198, #200, #202, #205, #207, #208, and #209.

#191 was intentionally reverted by #192 and superseded by #196.

Validation

bun run check
# Passed — 4,421 files checked; no fixes applied.

bun run type-check
# Passed — 3 tasks successful (local Turborepo cache replay).

bun run test
# Passed — 585 test files / 4,544 tests (local Turborepo cache replay).

git diff --check origin/main...staging
# Passed — no whitespace errors.

CI should run the final merge candidate uncached.

Risk / Rollout Notes

  • This is a broad release touching UI primitives, Copilot, billing, workflow execution, and external-provider behavior.
  • Apply the database migration before deploying the application. Build/deploy environments now target Bun 1.3.14; the application package targets Node 24.x.
  • Smoke test Base UI menus/dialogs, workspace Copilot isolation and model selection, private-tier checkout/portal access, Trigger/local execution recovery, Airtable lifecycle recovery, and Teams callbacks.
  • Backout: redeploy the previous application revision. The migration is additive; use an explicitly reviewed forward migration for database remediation rather than editing or deleting the applied migration.

Config / Data Changes

  • Env vars added or changed: No new required variables. .env.example removes deprecated Copilot default/tuning examples.
  • Database schema or migration impact: Apply packages/db/migrations/0040_lean_chat.sql. It creates private_tier_access, adds billing-tier access-code and workflow-time-limit fields, and adds related foreign keys, indexes, uniqueness, and validation constraints.
  • External services or provider behavior changed: Stripe tier/portal flows, Better Auth mutation restrictions, Trigger/local execution recovery, Airtable lifecycle handling, Microsoft Teams callback validation, and AI provider model catalogs.

Checklist

  • I kept the change focused and reviewed my own diff
  • I validated the change locally and documented the results above
  • I updated docs, examples, or copy if behavior/user-facing flows changed
  • I called out any env, schema, provider, or rollout impact
  • I did not include secrets, tokens, or private credentials in this PR

BruzWJ and others added 12 commits August 1, 2026 20:32
* build(ui): update TradingGoose UI dependencies

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(app): modernize UI and failure-state handling

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs: update project README

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* changelog: add August 01, 2026 entry detailing migration to Base UI components and related updates

---------

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
* fix(folders): serialize folder parent validation

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): harden external callback polling

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(wealthbox): gate dependent fields on credential

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs(changelog): document copilot tool changes

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(listing): separate identity from resolved display data

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(webhooks): remove legacy webhook test endpoint

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): validate Teams notification client state

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

---------

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
…ation (#191)

* refactor(yjs): share dashboard color-pair session logic

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): move workspace copilot to global panel

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): enhance CopilotSidebarToggle and CopilotApp components with improved class handling and user session management

* feat(copilot): propagate current workspace contexts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs(copilot): document persistent workspace panel

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): scope workspace assistant state to authenticated channels

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): bound and redact hydrated context data

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(redaction): enhance token redaction logic and add tests for free-form text

* fix(security): redact credentials in standard URIs

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve internal context aborts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): dispose replaced client tools

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): isolate chat draft and deletion state

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): stabilize localized mention contexts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve duplicate mention context on deletion

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): move widget modules into lib

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): add responsive sheet layout

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): cap merged chat contexts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs: remove obsolete copilot widget category

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): guard non-finite context usage

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): stabilize message rendering lifecycle

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve thinking state semantics

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): make option selection safe during streaming

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): stabilize mention source loading and localization

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): harden mention input interactions

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): simplify model provider menu

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): add error handling for mention loading failures and improve localization messages

* refactor(copilot): centralize context and store ownership

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(security): use shared deep secret redaction

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* test: simplify fixtures and DOM assertions

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* style: format utility type declarations

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>
* refactor(yjs): share dashboard color-pair session logic

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): move workspace copilot to global panel

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): enhance CopilotSidebarToggle and CopilotApp components with improved class handling and user session management

* feat(copilot): propagate current workspace contexts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs(copilot): document persistent workspace panel

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): scope workspace assistant state to authenticated channels

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): bound and redact hydrated context data

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(redaction): enhance token redaction logic and add tests for free-form text

* fix(security): redact credentials in standard URIs

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve internal context aborts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): dispose replaced client tools

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): isolate chat draft and deletion state

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): stabilize localized mention contexts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve duplicate mention context on deletion

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): move widget modules into lib

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): add responsive sheet layout

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): cap merged chat contexts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs: remove obsolete copilot widget category

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): guard non-finite context usage

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): stabilize message rendering lifecycle

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve thinking state semantics

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): make option selection safe during streaming

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): stabilize mention source loading and localization

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): harden mention input interactions

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): simplify model provider menu

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): add error handling for mention loading failures and improve localization messages

* refactor(copilot): centralize context and store ownership

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(security): use shared deep secret redaction

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* test: simplify fixtures and DOM assertions

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* style: format utility type declarations

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): persist dashboard context and simplify runtime ownership

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): support layout-scoped widget color edits

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(copilot): support explicit execution-log context

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs(copilot): clarify layout context behavior

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve color-pair review context

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(widgets): retry failed destination pair loads

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): preserve panel state across visibility changes

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): cache empty mention source results

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(redaction): enhance redaction for signed-URL credentials and update patterns

* fix(redaction): enhance redaction for private key and improve test coverage

* refactor(copilot): remove linkedParamFields from widget contracts and related tests

* docs(changelog): add August 17, 2026 entry for refactor of Copilot to persistent desktop panel

* refactor(copilot): update types and improve rendering logic for null contexts

* refactor(copilot): enhance streaming message handling and reset logic for improved performance

* fix(security): bound and redact Copilot context data

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): correct contextual message and session handling

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): improve localized message feedback

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(copilot): avoid duplicate assistant segment keys

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(ui): preserve horizontal header scroll boundaries

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* test(copilot): isolate browser globals between tests

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs(changelog): update persisted Copilot release scope

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): streamline persistent panel contracts

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(dashboard): simplify widget edit and review state

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* style(knowledge): adjust surface spacing

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* docs(copilot): refresh model and release documentation

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(copilot): add aria-label to widget header and fix progress calculation

* refactor(layout): remove unnecessary padding from copilot layout and knowledge component

* refactor(copilot): update context handling and improve button variant styling
* fix(console): finalize entries on terminal execution events

* fix(console): mark cancelled executions unsuccessful

* fix(console): clear stale stream buffers

* fix(console): improve execution state handling and add tests for workflow events

* fix(console): enhance workflow execution event handling and improve entry state management

---------

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>
…205)

* feat: harden billing and workflow execution

* fix: harden access and execution limits

* fix: surface private access service errors

* build(tradinggoose): pin Trigger dependencies and simplify billing test command

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(billing): consolidate tier access and Stripe portal flows

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(execution): simplify workflow execution and time-limit plumbing

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(i18n): inline request locale resolution

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(ui): render workflow block dropdowns without a portal

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(landing): remove redundant monitor preview timeout

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(execution): move pending work to idempotent Trigger tasks

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(billing): simplify private tier checkout and subscription access

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* style(billing): normalize tier route imports and test formatting

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(billing): archive billing tiers instead of deleting

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(billing): harden tier identity and subscription ownership

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(execution): run pending work through supervised local runtime

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(billing): enforce tier lifecycle invariants

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(organization): support organization plan enrollment

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(execution): coordinate local and Trigger execution modes

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(billing): resolve subscription tiers from Stripe prices

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(billing): support organization plan switching

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(execution): run local pending jobs directly

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(pending-execution): make local execution lifecycle durable

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): run local pending work directly

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(billing): use user Stripe customers for organization subscriptions

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): distinguish Airtable execution ownership

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(billing): secure subscription and portal billing flows

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): acknowledge direct Airtable cursor progress

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(billing): simplify billing portal customer handling

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(worker): recover staged Airtable continuations

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(billing): restrict organization billing changes to owners

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): preserve queued work when dispatching older pending execution fails

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* test(subscription): align organization role fixture with owner access

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(billing): keep activated tier pricing immutable

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): prioritize pending children with active parents

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(monitor-preview): update random entry creation to use crypto UUID and add tests for unique row keys

* Refactor code structure for improved readability and maintainability

* refactor(execution): remove scheduled pending recovery

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(webhooks): remove scheduled Airtable cleanup

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(execution): enhance pending execution handling with wake option and error messaging

* fix(billing): validate Stripe tier mutations

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): recover interrupted Airtable cleanup

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): recover pending dispatch failures

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(auth): disable unsafe Better Auth mutations

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): recover Airtable cleanup before deletion

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): persist local pending ownership

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(auth): disable specific organization management endpoints and clean up subscription created handler

* fix(auth): update disabled endpoints to include organization management mutations

* feat(team-management): add label and input for organization private tier access code

* feat(subscription): refactor user role handling and update related tests for non-owner access

* feat(changelog): add detailed entry for tier settings enhancements and lifecycle improvements

* Refactor code structure for improved readability and maintainability

* feat(billing): harden Stripe billing flows

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(subscription): streamline private tier access

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): harden pending execution lifecycle

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(webhooks): drain Airtable cleanup subscriptions

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* feat(billing): enhance billing tier validation with catalog revision checks

* feat(execution): enhance pending execution handling with max duration support

* feat(nav): integrate current organization access state into navigation components

* feat(pending-execution): enhance wake and retry logic for pending executions

* feat(billing): add email billing portal redirect

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* fix(execution): reconcile pending workflow runs safely

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* Update apps/tradinggoose/background/pending-execution-worker.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Signed-off-by: Bruzzz <149516937+BruzWJ@users.noreply.github.com>

* feat(billing): refactor billing portal handling and update email rendering

* feat(pending-execution): enhance admission failure handling with specific error policies

* feat(pending-execution): improve error handling during finalization of admission failures

---------

Signed-off-by: Bruzzz <149516937+BruzWJ@users.noreply.github.com>
Co-authored-by: agualdron <agualdro@gmail.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* feat(ai): refresh provider model catalogs

* feat(copilot): adopt canonical OpenRouter model ids

* fix(billing): settle Copilot charges from provider costs

* chore(deps): update Bun and Next.js versions

* fix(api): await MCP refresh route params

* fix(copilot): improve error handling and adjust layout styles

* feat(model-selector): enhance model selection UI with icons and improved layout

* fix(package): revert bun version requirement to >=1.3.0

* style(copilot): satisfy formatting checks

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor(models): streamline model handling across AI providers
…209)

* style: format source and configuration files

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* style: normalize source formatting and imports

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>

Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* style: normalize Tailwind utility class ordering

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>

* refactor: simplify redundant rendering and utility code

Co-authored-by: BWJ2310 <brucewj2310@gmail.com>
Co-authored-by: BWJ2310-backup <jun.1216.wei@gmail.com>
@vercel

vercel Bot commented Aug 31, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
studio (staging) Ready Ready Preview Aug 31, 2026 3:17pm

Request Review

@greptile-apps

greptile-apps Bot commented Aug 31, 2026

Copy link
Copy Markdown
Contributor

Too many files changed for review (1335 files, 500 file limit).

@coderabbitai

coderabbitai Bot commented Aug 31, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 1358 files, which is 1258 over the limit of 100.

To get a review, reduce the PR to 100 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: QUIET

Plan: Pro Plus

Run ID: e9579282-2da0-4626-a581-d40cdb3ae70e

📥 Commits

Reviewing files that changed from the base of the PR and between dfbe3d9 and ff825d7.

⛔ Files ignored due to path filters (1)
  • bun.lock is excluded by !**/*.lock
📒 Files selected for processing (1358)
  • .devcontainer/Dockerfile
  • .devcontainer/devcontainer.json
  • .github/workflows_legacy/docs-embeddings.yml
  • .github/workflows_legacy/i18n.yml
  • .github/workflows_legacy/migrations.yml
  • .github/workflows_legacy/publish-cli.yml
  • .github/workflows_legacy/publish-ts-sdk.yml
  • .github/workflows_legacy/test-build.yml
  • .github/workflows_legacy/trigger-deploy.yml
  • README.md
  • apps/docs/app/[lang]/layout.tsx
  • apps/docs/app/global.css
  • apps/docs/app/layout.config.tsx
  • apps/docs/cli.json
  • apps/docs/components/language-toggle.tsx
  • apps/docs/components/layout/docs.tsx
  • apps/docs/components/layout/docs/client.tsx
  • apps/docs/components/layout/docs/index.tsx
  • apps/docs/components/layout/docs/page-client.tsx
  • apps/docs/components/layout/docs/page.tsx
  • apps/docs/components/layout/home/client.tsx
  • apps/docs/components/layout/home/index.tsx
  • apps/docs/components/layout/page.tsx
  • apps/docs/components/layout/shared/client.tsx
  • apps/docs/components/layout/shared/index.tsx
  • apps/docs/components/navigation-menu.tsx
  • apps/docs/components/root-toggle.tsx
  • apps/docs/components/search-toggle.tsx
  • apps/docs/components/sidebar.tsx
  • apps/docs/components/theme-toggle.tsx
  • apps/docs/components/ui/accordion-hash-sync.tsx
  • apps/docs/components/ui/background-ripple-effect.tsx
  • apps/docs/components/ui/block-config-preview.tsx
  • apps/docs/components/ui/block-info-card.tsx
  • apps/docs/components/ui/button.tsx
  • apps/docs/components/ui/collapsible.tsx
  • apps/docs/components/ui/language-dropdown.tsx
  • apps/docs/components/ui/popover.tsx
  • apps/docs/components/ui/schema-tree.tsx
  • apps/docs/components/ui/scroll-area.tsx
  • apps/docs/components/ui/showcase-card.tsx
  • apps/docs/components/ui/toc-clerk.tsx
  • apps/docs/components/ui/toc-thumb.tsx
  • apps/docs/components/ui/toc.tsx
  • apps/docs/content/docs/en/blocks/meta.json
  • apps/docs/content/docs/en/copilot/index.mdx
  • apps/docs/content/docs/en/tools/meta.json
  • apps/docs/content/docs/en/triggers/meta.json
  • apps/docs/content/docs/en/utilities/meta.json
  • apps/docs/content/docs/en/widgets/copilot.mdx
  • apps/docs/content/docs/en/widgets/editor-workflow.mdx
  • apps/docs/content/docs/en/widgets/index.mdx
  • apps/docs/content/docs/en/widgets/meta.json
  • apps/docs/doc-templates/widget.mdx
  • apps/docs/hooks/use-sidebar-resize.ts
  • apps/docs/i18n.json
  • apps/docs/lib/cn.ts
  • apps/docs/lib/is-active.ts
  • apps/docs/lib/merge-refs.ts
  • apps/docs/package.json
  • apps/docs/public/favicon/site.webmanifest
  • apps/docs/tsconfig.json
  • apps/tradinggoose/.env.example
  • apps/tradinggoose/app/(auth)/auth-locale-redirects.test.tsx
  • apps/tradinggoose/app/(auth)/auth-provider-callbacks.test.tsx
  • apps/tradinggoose/app/(auth)/components/auth-background.tsx
  • apps/tradinggoose/app/(auth)/components/auth-waitlist-note.tsx
  • apps/tradinggoose/app/(auth)/components/social-login-buttons.tsx
  • apps/tradinggoose/app/(auth)/login/login-form.tsx
  • apps/tradinggoose/app/(auth)/reset-password/reset-password-form.tsx
  • apps/tradinggoose/app/(auth)/signup/signup-form.tsx
  • apps/tradinggoose/app/(auth)/sso/sso-form.tsx
  • apps/tradinggoose/app/(auth)/verify/use-verification.ts
  • apps/tradinggoose/app/(auth)/verify/verify-content.tsx
  • apps/tradinggoose/app/(auth)/waitlist/waitlist-form.tsx
  • apps/tradinggoose/app/(landing)/blog/components/ai-summarize.tsx
  • apps/tradinggoose/app/(landing)/blog/components/breadcrumb-nav.tsx
  • apps/tradinggoose/app/(landing)/blog/components/filtered-posts.tsx
  • apps/tradinggoose/app/(landing)/blog/components/markdown-content.tsx
  • apps/tradinggoose/app/(landing)/blog/components/markdown-title.tsx
  • apps/tradinggoose/app/(landing)/blog/components/page-heading.tsx
  • apps/tradinggoose/app/(landing)/blog/components/post-card.tsx
  • apps/tradinggoose/app/(landing)/blog/components/social-share.tsx
  • apps/tradinggoose/app/(landing)/blog/components/table-of-contents.tsx
  • apps/tradinggoose/app/(landing)/blog/lib/heading-slugs.ts
  • apps/tradinggoose/app/(landing)/blog/lib/posts.ts
  • apps/tradinggoose/app/(landing)/careers/careers-form.tsx
  • apps/tradinggoose/app/(landing)/components/background/background.tsx
  • apps/tradinggoose/app/(landing)/components/blog-layout.tsx
  • apps/tradinggoose/app/(landing)/components/cta/cta.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/index.ts
  • apps/tradinggoose/app/(landing)/components/feature/components/landing-canvas/landing-edge/landing-edge.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/landing-canvas/landing-flow.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/market-preview/landing-indicator-dropdown.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/market-preview/landing-market-preview-provider.test.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/market-preview/landing-widget-shell.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/market-preview/market-chart.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/market-preview/market-preview.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/workflow-preview/workflow-preview-canvas.test.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/workflow-preview/workflow-preview-canvas.tsx
  • apps/tradinggoose/app/(landing)/components/feature/components/workflow-preview/workflow-preview.tsx
  • apps/tradinggoose/app/(landing)/components/feature/feature.tsx
  • apps/tradinggoose/app/(landing)/components/footer/footer.tsx
  • apps/tradinggoose/app/(landing)/components/hero/components/index.ts
  • apps/tradinggoose/app/(landing)/components/hero/hero.tsx
  • apps/tradinggoose/app/(landing)/components/hero/types.ts
  • apps/tradinggoose/app/(landing)/components/how-it-works/how-it-works.tsx
  • apps/tradinggoose/app/(landing)/components/integrations/integrations.tsx
  • apps/tradinggoose/app/(landing)/components/landing-pricing/landing-pricing.tsx
  • apps/tradinggoose/app/(landing)/components/legal-layout.tsx
  • apps/tradinggoose/app/(landing)/components/legal-markdown.tsx
  • apps/tradinggoose/app/(landing)/components/monitor-preview/fetch-listings.ts
  • apps/tradinggoose/app/(landing)/components/monitor-preview/listing-preference.ts
  • apps/tradinggoose/app/(landing)/components/monitor-preview/monitor-preview.tsx
  • apps/tradinggoose/app/(landing)/components/monitor-preview/monitor-section.tsx
  • apps/tradinggoose/app/(landing)/components/nav/nav.test.tsx
  • apps/tradinggoose/app/(landing)/components/nav/nav.tsx
  • apps/tradinggoose/app/(landing)/components/structured-data.tsx
  • apps/tradinggoose/app/(landing)/landing.tsx
  • apps/tradinggoose/app/[locale]/(auth)/auth-entry-pages.test.tsx
  • apps/tradinggoose/app/[locale]/(auth)/error/[[...callback]]/page.tsx
  • apps/tradinggoose/app/[locale]/(auth)/layout.tsx
  • apps/tradinggoose/app/[locale]/(auth)/login/page.tsx
  • apps/tradinggoose/app/[locale]/(auth)/mcp/authorize/page.tsx
  • apps/tradinggoose/app/[locale]/(auth)/reset-password/page.tsx
  • apps/tradinggoose/app/[locale]/(auth)/signup/page.tsx
  • apps/tradinggoose/app/[locale]/(auth)/sso/page.tsx
  • apps/tradinggoose/app/[locale]/(auth)/waitlist/page.tsx
  • apps/tradinggoose/app/[locale]/(landing)/blog/[slug]/page.tsx
  • apps/tradinggoose/app/[locale]/(landing)/blog/page.tsx
  • apps/tradinggoose/app/[locale]/(landing)/careers/page.tsx
  • apps/tradinggoose/app/[locale]/(landing)/layout.tsx
  • apps/tradinggoose/app/[locale]/(landing)/page.tsx
  • apps/tradinggoose/app/[locale]/(landing)/privacy/page.tsx
  • apps/tradinggoose/app/[locale]/(landing)/terms/page.tsx
  • apps/tradinggoose/app/[locale]/admin/billing/layout.tsx
  • apps/tradinggoose/app/[locale]/admin/page.tsx
  • apps/tradinggoose/app/[locale]/changelog/page.tsx
  • apps/tradinggoose/app/[locale]/layout.tsx
  • apps/tradinggoose/app/[locale]/workspace/[workspaceId]/integrations/page.tsx
  • apps/tradinggoose/app/[locale]/workspace/[workspaceId]/knowledge/[id]/[documentId]/page.tsx
  • apps/tradinggoose/app/[locale]/workspace/[workspaceId]/knowledge/[id]/page.tsx
  • apps/tradinggoose/app/[locale]/workspace/[workspaceId]/page.tsx
  • apps/tradinggoose/app/admin/admin-inline-secret-field.tsx
  • apps/tradinggoose/app/admin/billing/billing-admin.tsx
  • apps/tradinggoose/app/admin/billing/billing-unavailable.tsx
  • apps/tradinggoose/app/admin/billing/tier-detail.tsx
  • apps/tradinggoose/app/admin/billing/tier-editor.tsx
  • apps/tradinggoose/app/admin/errors.ts
  • apps/tradinggoose/app/admin/integrations/integrations-admin.tsx
  • apps/tradinggoose/app/admin/registration/registration-admin.tsx
  • apps/tradinggoose/app/admin/services/services-admin.tsx
  • apps/tradinggoose/app/admin/system-settings-section.tsx
  • apps/tradinggoose/app/api/__test-utils__/utils.ts
  • apps/tradinggoose/app/api/admin/billing/route.ts
  • apps/tradinggoose/app/api/admin/billing/settings/route.ts
  • apps/tradinggoose/app/api/admin/billing/tiers/[id]/route.test.ts
  • apps/tradinggoose/app/api/admin/billing/tiers/[id]/route.ts
  • apps/tradinggoose/app/api/admin/billing/tiers/route.ts
  • apps/tradinggoose/app/api/admin/registration/route.ts
  • apps/tradinggoose/app/api/admin/services/route.ts
  • apps/tradinggoose/app/api/admin/system-settings/route.test.ts
  • apps/tradinggoose/app/api/admin/system-settings/route.ts
  • apps/tradinggoose/app/api/auth/[...all]/route.test.ts
  • apps/tradinggoose/app/api/auth/[...all]/route.ts
  • apps/tradinggoose/app/api/auth/oauth/disconnect/route.test.ts
  • apps/tradinggoose/app/api/auth/oauth/disconnect/route.ts
  • apps/tradinggoose/app/api/auth/sso/providers/route.ts
  • apps/tradinggoose/app/api/auth/sso/register/route.ts
  • apps/tradinggoose/app/api/billing/portal/route.test.ts
  • apps/tradinggoose/app/api/billing/portal/route.ts
  • apps/tradinggoose/app/api/billing/route.test.ts
  • apps/tradinggoose/app/api/billing/update-cost/route.ts
  • apps/tradinggoose/app/api/careers/submit/route.ts
  • apps/tradinggoose/app/api/chat/[identifier]/otp/route.ts
  • apps/tradinggoose/app/api/chat/[identifier]/route.test.ts
  • apps/tradinggoose/app/api/copilot/api-keys/generate/route.ts
  • apps/tradinggoose/app/api/copilot/api-keys/route.ts
  • apps/tradinggoose/app/api/copilot/chat/review-session-post.test.ts
  • apps/tradinggoose/app/api/copilot/chat/review-session.test.ts
  • apps/tradinggoose/app/api/copilot/chat/route.ts
  • apps/tradinggoose/app/api/copilot/chat/update-messages/route.test.ts
  • apps/tradinggoose/app/api/copilot/mcp/route.test.ts
  • apps/tradinggoose/app/api/copilot/proxy.ts
  • apps/tradinggoose/app/api/copilot/stats/route.ts
  • apps/tradinggoose/app/api/copilot/usage/route.test.ts
  • apps/tradinggoose/app/api/copilot/usage/route.ts
  • apps/tradinggoose/app/api/cron/renew-subscriptions/route.ts
  • apps/tradinggoose/app/api/environment/route.ts
  • apps/tradinggoose/app/api/files/multipart/route.ts
  • apps/tradinggoose/app/api/folders/[id]/route.test.ts
  • apps/tradinggoose/app/api/folders/[id]/route.ts
  • apps/tradinggoose/app/api/folders/route.test.ts
  • apps/tradinggoose/app/api/folders/route.ts
  • apps/tradinggoose/app/api/function/e2b-execution.ts
  • apps/tradinggoose/app/api/function/error-formatting.ts
  • apps/tradinggoose/app/api/jobs/[jobId]/route.ts
  • apps/tradinggoose/app/api/knowledge/[id]/documents/[documentId]/chunks/[chunkId]/route.ts
  • apps/tradinggoose/app/api/knowledge/[id]/documents/[documentId]/chunks/route.ts
  • apps/tradinggoose/app/api/knowledge/[id]/documents/[documentId]/route.ts
  • apps/tradinggoose/app/api/knowledge/[id]/documents/route.ts
  • apps/tradinggoose/app/api/knowledge/utils.test.ts
  • apps/tradinggoose/app/api/logs/log-utils.test.ts
  • apps/tradinggoose/app/api/logs/log-utils.ts
  • apps/tradinggoose/app/api/logs/route.test.ts
  • apps/tradinggoose/app/api/logs/route.ts
  • apps/tradinggoose/app/api/market/get/crypto/route.ts
  • apps/tradinggoose/app/api/market/get/currency/route.ts
  • apps/tradinggoose/app/api/market/get/listing/route.ts
  • apps/tradinggoose/app/api/market/get/market-hours/route.ts
  • apps/tradinggoose/app/api/market/get/timezone/route.ts
  • apps/tradinggoose/app/api/market/search/currencies/route.ts
  • apps/tradinggoose/app/api/market/update/crypto-logo/route.ts
  • apps/tradinggoose/app/api/market/update/crypto-rank/decay/route.ts
  • apps/tradinggoose/app/api/market/update/currency-rank/decay/route.ts
  • apps/tradinggoose/app/api/market/update/currency-rank/route.ts
  • apps/tradinggoose/app/api/market/validate-key/delete/route.ts
  • apps/tradinggoose/app/api/market/validate-key/generate/route.ts
  • apps/tradinggoose/app/api/market/validate-key/get-api-keys/route.ts
  • apps/tradinggoose/app/api/mcp/servers/[id]/refresh/route.ts
  • apps/tradinggoose/app/api/monitors/shared.ts
  • apps/tradinggoose/app/api/monitors/update-service.ts
  • apps/tradinggoose/app/api/orders/[orderId]/provider-detail/route.test.ts
  • apps/tradinggoose/app/api/orders/export/route.test.ts
  • apps/tradinggoose/app/api/organizations/[id]/members/route.test.ts
  • apps/tradinggoose/app/api/organizations/[id]/route.ts
  • apps/tradinggoose/app/api/organizations/[id]/seats/route.ts
  • apps/tradinggoose/app/api/organizations/route.test.ts
  • apps/tradinggoose/app/api/organizations/route.ts
  • apps/tradinggoose/app/api/providers/ai/fireworks/models/route.ts
  • apps/tradinggoose/app/api/providers/ai/ollama/models/route.ts
  • apps/tradinggoose/app/api/providers/market/handler.ts
  • apps/tradinggoose/app/api/providers/trading/order/route.test.ts
  • apps/tradinggoose/app/api/providers/trading/order/route.ts
  • apps/tradinggoose/app/api/schedules/route.test.ts
  • apps/tradinggoose/app/api/tools/confluence/page/route.ts
  • apps/tradinggoose/app/api/tools/jira/issue/route.ts
  • apps/tradinggoose/app/api/tools/jira/issues/route.ts
  • apps/tradinggoose/app/api/tools/jira/projects/route.ts
  • apps/tradinggoose/app/api/tools/sharepoint/upload/route.ts
  • apps/tradinggoose/app/api/tools/slack/channels/route.ts
  • apps/tradinggoose/app/api/tools/stagehand/extract/route.ts
  • apps/tradinggoose/app/api/usage/route.ts
  • apps/tradinggoose/app/api/users/me/settings/unsubscribe/route.ts
  • apps/tradinggoose/app/api/v1/middleware.test.ts
  • apps/tradinggoose/app/api/wand-copilot/route.test.ts
  • apps/tradinggoose/app/api/wand-copilot/route.ts
  • apps/tradinggoose/app/api/webhooks/[id]/route.ts
  • apps/tradinggoose/app/api/webhooks/route.ts
  • apps/tradinggoose/app/api/webhooks/test/[id]/route.ts
  • apps/tradinggoose/app/api/webhooks/test/route.ts
  • apps/tradinggoose/app/api/webhooks/trigger/[path]/route.test.ts
  • apps/tradinggoose/app/api/webhooks/trigger/[path]/route.ts
  • apps/tradinggoose/app/api/workflows/[id]/execute/route.test.ts
  • apps/tradinggoose/app/api/workflows/[id]/execute/route.ts
  • apps/tradinggoose/app/api/workflows/[id]/log-webhook/delivery-cancellation.ts
  • apps/tradinggoose/app/api/workflows/yaml/convert/route.ts
  • apps/tradinggoose/app/api/workspaces/[id]/environment/route.ts
  • apps/tradinggoose/app/blog-images/[...path]/route.ts
  • apps/tradinggoose/app/changelog/components/changelog-content.tsx
  • apps/tradinggoose/app/changelog/components/timeline-list.tsx
  • apps/tradinggoose/app/chat/[identifier]/chat.tsx
  • apps/tradinggoose/app/chat/components/auth/email/email-auth.tsx
  • apps/tradinggoose/app/chat/components/auth/password/password-auth.tsx
  • apps/tradinggoose/app/chat/components/auth/sso/sso-auth.tsx
  • apps/tradinggoose/app/chat/components/components/markdown-renderer/markdown-renderer.tsx
  • apps/tradinggoose/app/chat/components/error-state/error-state.tsx
  • apps/tradinggoose/app/chat/components/header/header.tsx
  • apps/tradinggoose/app/chat/components/input/input.tsx
  • apps/tradinggoose/app/chat/components/message-container/message-container.tsx
  • apps/tradinggoose/app/chat/components/message/components/markdown-renderer.tsx
  • apps/tradinggoose/app/chat/components/message/message.tsx
  • apps/tradinggoose/app/chat/components/voice-interface/voice-interface.tsx
  • apps/tradinggoose/app/chat/errors.ts
  • apps/tradinggoose/app/chat/hooks/use-chat-streaming.ts
  • apps/tradinggoose/app/global-error.tsx
  • apps/tradinggoose/app/globals.css
  • apps/tradinggoose/app/invite/[id]/invite.tsx
  • apps/tradinggoose/app/invite/components/status-card.tsx
  • apps/tradinggoose/app/not-found-content.tsx
  • apps/tradinggoose/app/theme-provider.tsx
  • apps/tradinggoose/app/unsubscribe/unsubscribe.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/api-keys/api-keys.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/api-keys/workspace-api-keys-card.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/components/workspace-shell.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/dashboard/dashboard-client.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/dashboard/dashboard-client.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/dashboard/layout-tabs.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/dashboard/layout-tabs.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/environment/components/environment-variables.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/environment/environment.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/error.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/files/files.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/files/files.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/files/hooks/use-workspace-files.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/global-error.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/integrations/integrations.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/components/create-chunk-modal/create-chunk-modal.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/components/document-loading.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/components/edit-chunk-modal/edit-chunk-modal.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/document.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/base.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/components/action-bar/action-bar.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/[id]/components/upload-modal/upload-modal.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/base-overview/base-overview.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/copy-to-workspace/copy-to-workspace.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/create-modal/create-modal.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/document-tag-entry/document-tag-entry.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/empty-state-card/empty-state-card.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/index.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/knowledge-base-tags/components/document-list.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/knowledge-base-tags/knowledge-base-tags.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/knowledge-header/knowledge-header.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/knowledge-tags/knowledge-tags.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/primary-button/primary-button.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/search-input/search-input.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/tag-input/tag-input.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/knowledge.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/loading.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/board/board-state.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/board/board-state.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/board/monitor-board.interaction.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/board/monitor-board.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-card-model.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-domain.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-draft.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-drop.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-filter-values.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-ordering.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/config/config-search.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/data/api.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/data/execution-ordering.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/data/use-monitor-reference-data.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/data/use-monitor-reference-data.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/data/use-monitor-workspace-logs.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/data/use-monitor-workspace-logs.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/indicator-input-fields.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/monitor-editor-form.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/monitor-editor-form.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/monitor-editor-panel.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/portfolio-condition-builder.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/use-monitor-editor-state.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/management/use-monitor-editor-state.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/shared/monitor-ui.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/shared/searchable-dropdown.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/shared/types.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/timeline/gantt.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/timeline/gantt.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/timeline/monitor-timeline.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/timeline/timeline-state.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/timezone-selector/monitor-timezone-menu.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/view/view-config.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/view/view-config.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/view/view-preferences.test.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/view/view-preferences.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/workspace/monitor-config-workspace.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/workspace/monitor-config-workspace.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/workspace/monitor-execution-workspace.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/components/workspace/monitor-execution-workspace.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/copy.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/monitor.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/monitor/monitor.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/providers/providers.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/providers/workspace-permissions-provider.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/log-details/components/execution-snapshot/frozen-canvas-modal.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/log-details/components/execution-snapshot/frozen-canvas.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/log-details/components/markdown-renderer/markdown-renderer.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/log-details/components/tool-calls/tool-calls-display.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/log-details/components/trace-spans/components/trace-span-item.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/log-details/log-details.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-list/logs-list.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/filters/components/folder.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/filters/components/level.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/filters/components/timeline.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/filters/components/trigger.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/filters/components/workflow.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/filters/filters.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/search/search.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/logs-toolbar/components/search/search.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/order-details.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/order-details.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/order-filters.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/order-filters.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/order-formatters.ts
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/order-row-actions.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/orders-table.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/orders/orders-table.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/stats/components/line-chart.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/stats/components/logs-filters/logs-filters.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/stats/components/status-bar.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/stats/components/workflow-details.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/stats/components/workflows-list.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/components/stats/stats.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/records.test.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/records/records.tsx
  • apps/tradinggoose/background/indicator-monitor-execution.test.ts
  • apps/tradinggoose/background/indicator-monitor-execution.ts
  • apps/tradinggoose/background/knowledge-processing.ts
  • apps/tradinggoose/background/logs-webhook-delivery.ts
  • apps/tradinggoose/background/pending-execution-drain.test.ts
  • apps/tradinggoose/background/pending-execution-drain.ts
  • apps/tradinggoose/background/portfolio-monitor-execution.ts
  • apps/tradinggoose/background/webhook-execution.ts
  • apps/tradinggoose/blocks/blocks/agent.ts
  • apps/tradinggoose/blocks/blocks/airtable.ts
  • apps/tradinggoose/blocks/blocks/asana.ts
  • apps/tradinggoose/blocks/blocks/evaluator.ts
  • apps/tradinggoose/blocks/blocks/incidentio.ts
  • apps/tradinggoose/blocks/blocks/jira_service_management.ts
  • apps/tradinggoose/blocks/blocks/router.ts
  • apps/tradinggoose/blocks/blocks/translate.ts
  • apps/tradinggoose/blocks/blocks/wealthbox.ts
  • apps/tradinggoose/blocks/blocks/zoom.ts
  • apps/tradinggoose/components.json
  • apps/tradinggoose/components/emails/careers/careers-submission-email.tsx
  • apps/tradinggoose/components/emails/email-copy.ts
  • apps/tradinggoose/components/emails/footer.tsx
  • apps/tradinggoose/components/emails/header.tsx
  • apps/tradinggoose/components/emails/localized-email.tsx
  • apps/tradinggoose/components/emails/render-email.test.ts
  • apps/tradinggoose/components/emails/render-email.ts
  • apps/tradinggoose/components/icons/icons.tsx
  • apps/tradinggoose/components/icons/provider-icons.tsx
  • apps/tradinggoose/components/json-display/json-display.tsx
  • apps/tradinggoose/components/listing-selector/listing/rank-updates.ts
  • apps/tradinggoose/components/listing-selector/listing/row.tsx
  • apps/tradinggoose/components/listing-selector/search-utils.ts
  • apps/tradinggoose/components/listing-selector/selector/combo.test.tsx
  • apps/tradinggoose/components/listing-selector/selector/combo.tsx
  • apps/tradinggoose/components/listing-selector/selector/dropdown.test.tsx
  • apps/tradinggoose/components/listing-selector/selector/dropdown.tsx
  • apps/tradinggoose/components/listing-selector/selector/input.test.tsx
  • apps/tradinggoose/components/listing-selector/selector/input.tsx
  • apps/tradinggoose/components/listing-selector/selector/resolve-request.ts
  • apps/tradinggoose/components/listing-selector/selector/search-request.ts
  • apps/tradinggoose/components/listing-selector/selector/use-listing-search.test.tsx
  • apps/tradinggoose/components/listing-selector/selector/use-listing-search.ts
  • apps/tradinggoose/components/market-selector/provider-controls.tsx
  • apps/tradinggoose/components/market-selector/provider-selector.test.tsx
  • apps/tradinggoose/components/market-selector/provider-settings-button.test.tsx
  • apps/tradinggoose/components/market-selector/provider-settings-button.tsx
  • apps/tradinggoose/components/monaco-editor/index.ts
  • apps/tradinggoose/components/monaco-editor/monaco-editor-diagnostics.test.ts
  • apps/tradinggoose/components/monaco-editor/monaco-editor-diagnostics.ts
  • apps/tradinggoose/components/monaco-editor/monaco-editor.tsx
  • apps/tradinggoose/components/provider-selector.tsx
  • apps/tradinggoose/components/timezone-selector/fetchers.ts
  • apps/tradinggoose/components/trading-selector/account-selector.test.tsx
  • apps/tradinggoose/components/trading-selector/account-selector.tsx
  • apps/tradinggoose/components/trading-selector/provider-selector.test.tsx
  • apps/tradinggoose/components/ui/alert-dialog.tsx
  • apps/tradinggoose/components/ui/animated-beam.tsx
  • apps/tradinggoose/components/ui/avatar.tsx
  • apps/tradinggoose/components/ui/background-ripple-effect.tsx
  • apps/tradinggoose/components/ui/badge.tsx
  • apps/tradinggoose/components/ui/breadcrumb.tsx
  • apps/tradinggoose/components/ui/button.tsx
  • apps/tradinggoose/components/ui/checkbox.tsx
  • apps/tradinggoose/components/ui/collapsible.tsx
  • apps/tradinggoose/components/ui/color-picker.tsx
  • apps/tradinggoose/components/ui/command.tsx
  • apps/tradinggoose/components/ui/copy-button.tsx
  • apps/tradinggoose/components/ui/datetime-input.tsx
  • apps/tradinggoose/components/ui/datetime-picker.tsx
  • apps/tradinggoose/components/ui/dialog.tsx
  • apps/tradinggoose/components/ui/diff-viewer.tsx
  • apps/tradinggoose/components/ui/dropdown-menu.tsx
  • apps/tradinggoose/components/ui/empty.tsx
  • apps/tradinggoose/components/ui/form.tsx
  • apps/tradinggoose/components/ui/image-upload.tsx
  • apps/tradinggoose/components/ui/index.ts
  • apps/tradinggoose/components/ui/input-otp-form.tsx
  • apps/tradinggoose/components/ui/input-tags.tsx
  • apps/tradinggoose/components/ui/label.tsx
  • apps/tradinggoose/components/ui/loading-agent.tsx
  • apps/tradinggoose/components/ui/marquee.tsx
  • apps/tradinggoose/components/ui/motion-preset.tsx
  • apps/tradinggoose/components/ui/popover.tsx
  • apps/tradinggoose/components/ui/progress.tsx
  • apps/tradinggoose/components/ui/radio-group.tsx
  • apps/tradinggoose/components/ui/scroll-area.test.tsx
  • apps/tradinggoose/components/ui/scroll-area.tsx
  • apps/tradinggoose/components/ui/select.tsx
  • apps/tradinggoose/components/ui/separator.tsx
  • apps/tradinggoose/components/ui/sheet.tsx
  • apps/tradinggoose/components/ui/sidebar-dropdown-menu.tsx
  • apps/tradinggoose/components/ui/sidebar.tsx
  • apps/tradinggoose/components/ui/simple-time-picker.tsx
  • apps/tradinggoose/components/ui/slider.tsx
  • apps/tradinggoose/components/ui/sortable.tsx
  • apps/tradinggoose/components/ui/switch.tsx
  • apps/tradinggoose/components/ui/tabs.tsx
  • apps/tradinggoose/components/ui/tag-dropdown.tsx
  • apps/tradinggoose/components/ui/toggle.tsx
  • apps/tradinggoose/components/ui/tooltip.tsx
  • apps/tradinggoose/components/widget-header-control.ts
  • apps/tradinggoose/executor/handlers/agent/agent-handler.ts
  • apps/tradinggoose/executor/handlers/evaluator/evaluator-handler.ts
  • apps/tradinggoose/executor/handlers/response/response-handler.ts
  • apps/tradinggoose/executor/handlers/router/router-handler.test.ts
  • apps/tradinggoose/executor/handlers/router/router-handler.ts
  • apps/tradinggoose/executor/handlers/trigger/trigger-handler.ts
  • apps/tradinggoose/global-navbar/components/navbar-header.tsx
  • apps/tradinggoose/global-navbar/components/resizable-dropdown.tsx
  • apps/tradinggoose/global-navbar/components/sidebar-nav.tsx
  • apps/tradinggoose/global-navbar/components/user-menu.test.tsx
  • apps/tradinggoose/global-navbar/components/user-menu.tsx
  • apps/tradinggoose/global-navbar/components/workspace-dialogs.tsx
  • apps/tradinggoose/global-navbar/components/workspace-switcher.tsx
  • apps/tradinggoose/global-navbar/global-navbar.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/account/account-settings.test.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/account/account-settings.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/help/help-modal.test.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/help/help-modal.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/hooks/use-profile-picture-upload.ts
  • apps/tradinggoose/global-navbar/settings-modal/components/service/service.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/sso/sso.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/components/usage-limit/usage-limit.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/components/workspace-billing-owner.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/plan-configs.ts
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/subscription-permissions.test.ts
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/subscription-permissions.ts
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/subscription.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/member-invitation-card/member-invitation-card.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/no-organization-view/no-organization-view.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/remove-member-dialog/remove-member-dialog.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/team-members/team-members.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/team-seats-overview/team-seats-overview.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/team-seats/team-seats.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/team-usage/team-usage.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/components/workspace-billing/workspace-billing.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/team-management/team-management.tsx
  • apps/tradinggoose/global-navbar/settings-modal/settings-dialog.tsx
  • apps/tradinggoose/global-navbar/settings-modal/settings-modal.tsx
  • apps/tradinggoose/hooks/queries/admin-billing.ts
  • apps/tradinggoose/hooks/queries/admin-integrations.ts
  • apps/tradinggoose/hooks/queries/admin-registration.ts
  • apps/tradinggoose/hooks/queries/admin-services.ts
  • apps/tradinggoose/hooks/queries/admin-system-settings.ts
  • apps/tradinggoose/hooks/queries/api-keys.ts
  • apps/tradinggoose/hooks/queries/custom-tools.ts
  • apps/tradinggoose/hooks/queries/environment.ts
  • apps/tradinggoose/hooks/queries/folders.ts
  • apps/tradinggoose/hooks/queries/general-settings.ts
  • apps/tradinggoose/hooks/queries/indicators.ts
  • apps/tradinggoose/hooks/queries/knowledge.ts
  • apps/tradinggoose/hooks/queries/listing-resolution.ts
  • apps/tradinggoose/hooks/queries/logs.ts
  • apps/tradinggoose/hooks/queries/market-quote-snapshots.ts
  • apps/tradinggoose/hooks/queries/oauth-connections.ts
  • apps/tradinggoose/hooks/queries/organization.ts
  • apps/tradinggoose/hooks/queries/records-orders.ts
  • apps/tradinggoose/hooks/queries/service-keys.ts
  • apps/tradinggoose/hooks/queries/skills.ts
  • apps/tradinggoose/hooks/queries/subscription.ts
  • apps/tradinggoose/hooks/queries/trading-portfolio.ts
  • apps/tradinggoose/hooks/queries/user-profile.ts
  • apps/tradinggoose/hooks/queries/workflows.ts
  • apps/tradinggoose/hooks/queries/workspace-files.ts
  • apps/tradinggoose/hooks/queries/workspace.ts
  • apps/tradinggoose/hooks/use-knowledge-base-tag-definitions.ts
  • apps/tradinggoose/hooks/use-knowledge.ts
  • apps/tradinggoose/hooks/use-mcp-server-test.ts
  • apps/tradinggoose/hooks/use-mcp-tools.ts
  • apps/tradinggoose/hooks/use-next-available-slot.ts
  • apps/tradinggoose/hooks/use-stream-cleanup.ts
  • apps/tradinggoose/hooks/use-tag-definitions.ts
  • apps/tradinggoose/hooks/use-webhook-management.ts
  • apps/tradinggoose/hooks/use-workspace-permissions.ts
  • apps/tradinggoose/hooks/workflow/use-block-connections.ts
  • apps/tradinggoose/hooks/workflow/use-presence.ts
  • apps/tradinggoose/hooks/workflow/use-wand.ts
  • apps/tradinggoose/hooks/workflow/use-workflow-execution.test.tsx
  • apps/tradinggoose/hooks/workflow/use-workflow-execution.ts
  • apps/tradinggoose/i18n.json
  • apps/tradinggoose/i18n/formatters.ts
  • apps/tradinggoose/i18n/messages/en.json
  • apps/tradinggoose/i18n/messages/es.json
  • apps/tradinggoose/i18n/messages/zh.json
  • apps/tradinggoose/i18n/navigation.ts
  • apps/tradinggoose/i18n/public-copy.test.ts
  • apps/tradinggoose/instrumentation-client.ts
  • apps/tradinggoose/lib/admin/billing/snapshot.ts
  • apps/tradinggoose/lib/admin/billing/tier-mutations.test.ts
  • apps/tradinggoose/lib/admin/billing/tier-mutations.ts
  • apps/tradinggoose/lib/admin/billing/types.ts
  • apps/tradinggoose/lib/admin/system-integrations.ts
  • apps/tradinggoose/lib/admin/system-services.test.ts
  • apps/tradinggoose/lib/admin/system-settings/mutations.ts
  • apps/tradinggoose/lib/auth.ts
  • apps/tradinggoose/lib/auth/internal.test.ts
  • apps/tradinggoose/lib/billing/authorization.ts
  • apps/tradinggoose/lib/billing/billing-portal.ts
  • apps/tradinggoose/lib/billing/catalog.ts
  • apps/tradinggoose/lib/billing/core/organization.test.ts
  • apps/tradinggoose/lib/billing/core/organization.ts
  • apps/tradinggoose/lib/billing/organization.test.ts
  • apps/tradinggoose/lib/billing/organization.ts
  • apps/tradinggoose/lib/billing/plans.test.ts
  • apps/tradinggoose/lib/billing/plans.ts
  • apps/tradinggoose/lib/billing/settings.ts
  • apps/tradinggoose/lib/billing/stripe-client.ts
  • apps/tradinggoose/lib/billing/stripe-customers.ts
  • apps/tradinggoose/lib/billing/threshold-billing.test.ts
  • apps/tradinggoose/lib/billing/threshold-billing.ts
  • apps/tradinggoose/lib/billing/tier-summary.ts
  • apps/tradinggoose/lib/billing/tiers.ts
  • apps/tradinggoose/lib/billing/tiers/persistence.ts
  • apps/tradinggoose/lib/billing/types/index.ts
  • apps/tradinggoose/lib/billing/usage-accrual.ts
  • apps/tradinggoose/lib/billing/validation/seat-management.test.ts
  • apps/tradinggoose/lib/billing/validation/seat-management.ts
  • apps/tradinggoose/lib/billing/webhooks/enterprise.ts
  • apps/tradinggoose/lib/billing/webhooks/invoices.ts
  • apps/tradinggoose/lib/billing/webhooks/subscription.test.ts
  • apps/tradinggoose/lib/billing/webhooks/subscription.ts
  • apps/tradinggoose/lib/branding/metadata.ts
  • apps/tradinggoose/lib/chat/deployment-config.ts
  • apps/tradinggoose/lib/compose-refs.ts
  • apps/tradinggoose/lib/copilot/agent/client.ts
  • apps/tradinggoose/lib/copilot/agent/constants.ts
  • apps/tradinggoose/lib/copilot/agent/utils.test.ts
  • apps/tradinggoose/lib/copilot/agent/utils.ts
  • apps/tradinggoose/lib/copilot/api.ts
  • apps/tradinggoose/lib/copilot/chat-contexts.ts
  • apps/tradinggoose/lib/copilot/chat-replay-safety.ts
  • apps/tradinggoose/lib/copilot/completion-usage-billing.ts
  • apps/tradinggoose/lib/copilot/completion.ts
  • apps/tradinggoose/lib/copilot/config.ts
  • apps/tradinggoose/lib/copilot/entity-documents.test.ts
  • apps/tradinggoose/lib/copilot/entity-documents.ts
  • apps/tradinggoose/lib/copilot/inline-tool-call.test.tsx
  • apps/tradinggoose/lib/copilot/inline-tool-call.tsx
  • apps/tradinggoose/lib/copilot/monitor/monitor-documents.ts
  • apps/tradinggoose/lib/copilot/process-contents.test.ts
  • apps/tradinggoose/lib/copilot/process-contents.ts
  • apps/tradinggoose/lib/copilot/registry.ts
  • apps/tradinggoose/lib/copilot/review-sessions/thread-history.test.ts
  • apps/tradinggoose/lib/copilot/review-sessions/thread-history.ts
  • apps/tradinggoose/lib/copilot/runtime-models.ts
  • apps/tradinggoose/lib/copilot/runtime-provider.server.ts
  • apps/tradinggoose/lib/copilot/runtime-provider.ts
  • apps/tradinggoose/lib/copilot/runtime-tool-manifest.test.ts
  • apps/tradinggoose/lib/copilot/server-tool-errors.ts
  • apps/tradinggoose/lib/copilot/tool-prompt-metadata.ts
  • apps/tradinggoose/lib/copilot/tools/client/base-tool.ts
  • apps/tradinggoose/lib/copilot/tools/client/manager.ts
  • apps/tradinggoose/lib/copilot/tools/client/other/checkoff-todo.ts
  • apps/tradinggoose/lib/copilot/tools/client/other/mark-todo-in-progress.ts
  • apps/tradinggoose/lib/copilot/tools/client/other/plan.ts
  • apps/tradinggoose/lib/copilot/tools/client/server-tool-response.ts
  • apps/tradinggoose/lib/copilot/tools/server/blocks/block-mermaid-catalog.ts
  • apps/tradinggoose/lib/copilot/tools/server/dashboard-layout/edit-layout.ts
  • apps/tradinggoose/lib/copilot/tools/server/dashboard-layout/edit-widget.test.ts
  • apps/tradinggoose/lib/copilot/tools/server/dashboard-layout/edit-widget.ts
  • apps/tradinggoose/lib/copilot/tools/server/dashboard-layout/test-fixtures.ts
  • apps/tradinggoose/lib/copilot/tools/server/docs/search-documentation.test.ts
  • apps/tradinggoose/lib/copilot/tools/server/docs/search-documentation.ts
  • apps/tradinggoose/lib/copilot/tools/server/entities/shared.ts
  • apps/tradinggoose/lib/copilot/tools/server/listing/search-listing.test.ts
  • apps/tradinggoose/lib/copilot/tools/server/listing/search-listing.ts
  • apps/tradinggoose/lib/copilot/tools/server/monitor/edit-monitor.ts
  • apps/tradinggoose/lib/copilot/tools/server/monitor/list-monitors.ts
  • apps/tradinggoose/lib/copilot/tools/server/monitor/read-monitor.ts
  • apps/tradinggoose/lib/copilot/tools/server/monitor/shared.ts
  • apps/tradinggoose/lib/copilot/tools/server/router.test.ts
  • apps/tradinggoose/lib/copilot/tools/server/workflow/read-block-outputs.ts
  • apps/tradinggoose/lib/copilot/tools/server/workflow/read-block-upstream-references.ts
  • apps/tradinggoose/lib/copilot/tools/server/workflow/read-workflow-logs.test.ts
  • apps/tradinggoose/lib/copilot/tools/server/workflow/read-workflow-logs.ts
  • apps/tradinggoose/lib/copilot/tools/server/workflow/workflow-mutation-utils.ts
  • apps/tradinggoose/lib/copilot/tools/shared/schemas.ts
  • apps/tradinggoose/lib/copilot/types.ts
  • apps/tradinggoose/lib/copilot/usage-reservations.ts
  • apps/tradinggoose/lib/copilot/workflow-subblock-semantic-contracts.ts
  • apps/tradinggoose/lib/custom-tools/schema.ts
  • apps/tradinggoose/lib/dashboard-layouts/read-projection.test.ts
  • apps/tradinggoose/lib/dashboard-layouts/read-projection.ts
  • apps/tradinggoose/lib/dashboard-layouts/review-base.test.ts
  • apps/tradinggoose/lib/dashboard-layouts/review-base.ts
  • apps/tradinggoose/lib/email/locale.test.ts
  • apps/tradinggoose/lib/email/mailer.test.ts
  • apps/tradinggoose/lib/email/utils.test.ts
  • apps/tradinggoose/lib/email/validation.test.ts
  • apps/tradinggoose/lib/embeddings/utils.ts
  • apps/tradinggoose/lib/environment/api.ts
  • apps/tradinggoose/lib/environment/utils.ts
  • apps/tradinggoose/lib/execution/e2b.ts
  • apps/tradinggoose/lib/execution/pending-execution-drain-wake.ts
  • apps/tradinggoose/lib/execution/pending-execution.test.ts
  • apps/tradinggoose/lib/execution/pending-execution.ts
  • apps/tradinggoose/lib/execution/workflow-execution-events.ts
  • apps/tradinggoose/lib/execution/workflow-execution-stream.test.ts
  • apps/tradinggoose/lib/file-parsers/csv-parser.ts
  • apps/tradinggoose/lib/file-parsers/pdf-parser.ts
  • apps/tradinggoose/lib/indicators/create-default-indicator.ts
  • apps/tradinggoose/lib/indicators/custom/compile.ts
  • apps/tradinggoose/lib/indicators/default/index.ts
  • apps/tradinggoose/lib/indicators/monitor-config.test.ts
  • apps/tradinggoose/lib/indicators/monitor-config.ts
  • apps/tradinggoose/lib/indicators/run-pinets.ts
  • apps/tradinggoose/lib/indicators/series-data.ts
  • apps/tradinggoose/lib/knowledge/chunks/service.ts
  • apps/tradinggoose/lib/knowledge/chunks/types.ts
  • apps/tradinggoose/lib/knowledge/tags/service.ts
  • apps/tradinggoose/lib/listing/hydrate-ui.ts
  • apps/tradinggoose/lib/listing/identity.test.ts
  • apps/tradinggoose/lib/listing/identity.ts
  • apps/tradinggoose/lib/listing/resolve.test.ts
  • apps/tradinggoose/lib/listing/resolve.ts
  • apps/tradinggoose/lib/listing/search.ts
  • apps/tradinggoose/lib/logs/execution/logger.ts
  • apps/tradinggoose/lib/logs/execution/logging-session.ts
  • apps/tradinggoose/lib/logs/query-parser.ts
  • apps/tradinggoose/lib/logs/query-policy.ts
  • apps/tradinggoose/lib/logs/search-suggestions.test.ts
  • apps/tradinggoose/lib/market/client/constants.ts
  • apps/tradinggoose/lib/market/client/index.ts
  • apps/tradinggoose/lib/mcp/middleware.test.ts
  • apps/tradinggoose/lib/monitors/portfolio-conditions.ts
  • apps/tradinggoose/lib/monitors/portfolio-config.ts
  • apps/tradinggoose/lib/monitors/sources.ts
  • apps/tradinggoose/lib/naming.ts
  • apps/tradinggoose/lib/oauth/oauth.server.ts
  • apps/tradinggoose/lib/oauth/system-managed-config.test.ts
  • apps/tradinggoose/lib/organization/access.test.ts
  • apps/tradinggoose/lib/organization/access.ts
  • apps/tradinggoose/lib/permissions/utils.ts
  • apps/tradinggoose/lib/redis.ts
  • apps/tradinggoose/lib/registration/service.ts
  • apps/tradinggoose/lib/schedules/utils.test.ts
  • apps/tradinggoose/lib/schedules/utils.ts
  • apps/tradinggoose/lib/subscription/upgrade-target.test.ts
  • apps/tradinggoose/lib/subscription/upgrade-target.ts
  • apps/tradinggoose/lib/subscription/upgrade.ts
  • apps/tradinggoose/lib/system-integrations/catalog.test.ts
  • apps/tradinggoose/lib/system-integrations/catalog.ts
  • apps/tradinggoose/lib/system-services/service.ts
  • apps/tradinggoose/lib/system-settings/service.test.ts
  • apps/tradinggoose/lib/system-settings/service.ts
  • apps/tradinggoose/lib/time-format.ts
  • apps/tradinggoose/lib/timezone/timezone-resolver.ts
  • apps/tradinggoose/lib/trading/order-detail.ts
  • apps/tradinggoose/lib/trading/order-history.ts
  • apps/tradinggoose/lib/trading/order-records.ts
  • apps/tradinggoose/lib/trading/order-types.ts
  • apps/tradinggoose/lib/trading/orders.ts
  • apps/tradinggoose/lib/trigger/settings.test.ts
  • apps/tradinggoose/lib/trigger/settings.ts
  • apps/tradinggoose/lib/uploads/contexts/execution/execution-file-manager.ts
  • apps/tradinggoose/lib/uploads/providers/vercel/download-token.ts
  • apps/tradinggoose/lib/uploads/providers/vercel/vercel-client.ts
  • apps/tradinggoose/lib/utils.test.ts
  • apps/tradinggoose/lib/utils.ts
  • apps/tradinggoose/lib/variables/variable-manager.ts
  • apps/tradinggoose/lib/watchlists/document.ts
  • apps/tradinggoose/lib/watchlists/validation.ts
  • apps/tradinggoose/lib/webhooks/gmail-polling-service.ts
  • apps/tradinggoose/lib/webhooks/outlook-polling-service.ts
  • apps/tradinggoose/lib/webhooks/processor.ts
  • apps/tradinggoose/lib/webhooks/utils.ts
  • apps/tradinggoose/lib/webhooks/webhook-helpers.ts
  • apps/tradinggoose/lib/workflows/autolayout/positioning.ts
  • apps/tradinggoose/lib/workflows/block-config-canonicalization.ts
  • apps/tradinggoose/lib/workflows/execution-runner.ts
  • apps/tradinggoose/lib/workflows/import-export.test.ts
  • apps/tradinggoose/lib/workflows/import-export.ts
  • apps/tradinggoose/lib/workflows/import.test.ts
  • apps/tradinggoose/lib/workflows/import.ts
  • apps/tradinggoose/lib/workflows/queued-execution-cancellation.ts
  • apps/tradinggoose/lib/workflows/validation.test.ts
  • apps/tradinggoose/lib/workflows/validation.ts
  • apps/tradinggoose/lib/workflows/variable-utils.ts
  • apps/tradinggoose/lib/yjs/dashboard-layout-session.test.ts
  • apps/tradinggoose/lib/yjs/dashboard-layout-session.ts
  • apps/tradinggoose/lib/yjs/server/snapshot-bridge.ts
  • apps/tradinggoose/lib/yjs/use-entity-fields.ts
  • apps/tradinggoose/lib/yjs/use-yjs-subscription.test.tsx
  • apps/tradinggoose/lib/yjs/workflow-serializers.ts
  • apps/tradinggoose/lib/yjs/workflow-session-host.tsx
  • apps/tradinggoose/next.config.ts
  • apps/tradinggoose/package.json
  • apps/tradinggoose/providers/ai/anthropic/index.ts
  • apps/tradinggoose/providers/ai/azure-openai/index.ts
  • apps/tradinggoose/providers/ai/bedrock/index.ts
  • apps/tradinggoose/providers/ai/fireworks/index.ts
  • apps/tradinggoose/providers/ai/fireworks/utils.ts
  • apps/tradinggoose/providers/ai/gemini/core.ts
  • apps/tradinggoose/providers/ai/google/index.ts
  • apps/tradinggoose/providers/ai/google/utils.ts
  • apps/tradinggoose/providers/ai/groq/index.ts
  • apps/tradinggoose/providers/ai/index.test.ts
  • apps/tradinggoose/providers/ai/models.ts
  • apps/tradinggoose/providers/ai/openai/index.ts
  • apps/tradinggoose/providers/ai/utils.test.ts
  • apps/tradinggoose/providers/ai/vertex/index.ts
  • apps/tradinggoose/providers/ai/vllm/index.ts
  • apps/tradinggoose/providers/ai/xai/index.ts
  • apps/tradinggoose/providers/market/alpaca/config.ts
  • apps/tradinggoose/providers/market/alpaca/index.ts
  • apps/tradinggoose/providers/market/alpaca/series.ts
  • apps/tradinggoose/providers/market/alpha-vantage/config.ts
  • apps/tradinggoose/providers/market/alpha-vantage/index.ts
  • apps/tradinggoose/providers/market/alpha-vantage/series.ts
  • apps/tradinggoose/providers/market/finnhub/index.ts
  • apps/tradinggoose/providers/market/finnhub/live.ts
  • apps/tradinggoose/providers/market/finnhub/series.ts
  • apps/tradinggoose/providers/market/market-hours/date-utils.ts
  • apps/tradinggoose/providers/market/market-hours/sessions.ts
  • apps/tradinggoose/providers/market/series-planner.ts
  • apps/tradinggoose/providers/market/types.ts
  • apps/tradinggoose/providers/market/types/base.ts
  • apps/tradinggoose/providers/market/types/live.ts
  • apps/tradinggoose/providers/market/types/sereis.ts
  • apps/tradinggoose/providers/market/utils.ts
  • apps/tradinggoose/providers/market/yahoo-finance/config.ts
  • apps/tradinggoose/providers/market/yahoo-finance/marketToExchangeCode.json
  • apps/tradinggoose/providers/market/yahoo-finance/rules.ts
  • apps/tradinggoose/providers/market/yahoo-finance/series.ts
  • apps/tradinggoose/providers/trading/alpaca/snapshot.ts
  • apps/tradinggoose/providers/trading/listing-resolution.test.ts
  • apps/tradinggoose/providers/trading/listing-resolution.ts
  • apps/tradinggoose/providers/trading/order-types.test.ts
  • apps/tradinggoose/providers/trading/portfolio-detail.ts
  • apps/tradinggoose/providers/trading/portfolio-selectors.ts
  • apps/tradinggoose/providers/trading/tradier/orders.test.ts
  • apps/tradinggoose/providers/trading/tradier/snapshot.ts
  • apps/tradinggoose/providers/trading/utils.test.ts
  • apps/tradinggoose/providers/trading/utils.ts
  • apps/tradinggoose/proxy.ts
  • apps/tradinggoose/public/favicon/site.webmanifest
  • apps/tradinggoose/scripts/i18n-catalog/catalog.ts
  • apps/tradinggoose/scripts/i18n-catalog/entries.ts
  • apps/tradinggoose/scripts/i18n-catalog/graph.test.ts
  • apps/tradinggoose/scripts/i18n-catalog/index.ts
  • apps/tradinggoose/scripts/i18n-catalog/inventory.test.ts
  • apps/tradinggoose/scripts/i18n-catalog/report.integration.test.ts
  • apps/tradinggoose/scripts/i18n-catalog/runtime.test.ts
  • apps/tradinggoose/scripts/i18n-catalog/scan/runtime/invocation.ts
  • apps/tradinggoose/scripts/i18n-catalog/scan/runtime/jsx.ts
  • apps/tradinggoose/scripts/i18n-catalog/scan/semantics/function-semantics.ts
  • apps/tradinggoose/scripts/process-docs.ts
  • apps/tradinggoose/socket-server/handlers/index.ts
  • apps/tradinggoose/socket-server/handlers/market.ts
  • apps/tradinggoose/socket-server/handlers/trading.ts
  • apps/tradinggoose/socket-server/market/alpaca.ts
  • apps/tradinggoose/socket-server/market/indicator-monitor-runtime.ts
  • apps/tradinggoose/socket-server/market/manager.test.ts
  • apps/tradinggoose/socket-server/market/manager.ts
  • apps/tradinggoose/socket-server/routes/http.test.ts
  • apps/tradinggoose/socket-server/routes/http.ts
  • apps/tradinggoose/socket-server/trading/portfolio-manager.test.ts
  • apps/tradinggoose/socket-server/trading/portfolio-manager.ts
  • apps/tradinggoose/socket-server/yjs/upgrade-routing.test.ts
  • apps/tradinggoose/socket-server/yjs/upgrade-routing.ts
  • apps/tradinggoose/stores/chat/store.ts
  • apps/tradinggoose/stores/chat/types.ts
  • apps/tradinggoose/stores/console/store.test.ts
  • apps/tradinggoose/stores/console/store.ts
  • apps/tradinggoose/stores/copilot/index.ts
  • apps/tradinggoose/stores/copilot/store-access.ts
  • apps/tradinggoose/stores/copilot/store-messages.test.ts
  • apps/tradinggoose/stores/copilot/store-messages.ts
  • apps/tradinggoose/stores/copilot/store-provenance.test.ts
  • apps/tradinggoose/stores/copilot/store-provenance.ts
  • apps/tradinggoose/stores/copilot/store.test.ts
  • apps/tradinggoose/stores/copilot/store.ts
  • apps/tradinggoose/stores/copilot/streaming.ts
  • apps/tradinggoose/stores/copilot/tool-registry.test.ts
  • apps/tradinggoose/stores/copilot/tool-registry.ts
  • apps/tradinggoose/stores/copilot/types.ts
  • apps/tradinggoose/stores/custom-tools/store.ts
  • apps/tradinggoose/stores/folders/store.ts
  • apps/tradinggoose/stores/index.ts
  • apps/tradinggoose/stores/market/selector/store.ts
  • apps/tradinggoose/stores/organization/store.ts
  • apps/tradinggoose/stores/settings/general/store.ts
  • apps/tradinggoose/stores/settings/general/types.ts
  • apps/tradinggoose/stores/subscription/store.ts
  • apps/tradinggoose/stores/workflows/json/importer.ts
  • apps/tradinggoose/stores/workflows/workflow/types.ts
  • apps/tradinggoose/tailwind.config.ts
  • apps/tradinggoose/tools/confluence/retrieve.ts
  • apps/tradinggoose/tools/hubspot/get_company.ts
  • apps/tradinggoose/tools/hubspot/get_contact.ts
  • apps/tradinggoose/tools/intercom/get_ticket.ts
  • apps/tradinggoose/tools/mailchimp/types.ts
  • apps/tradinggoose/tools/market_data/series.ts
  • apps/tradinggoose/tools/params.test.ts
  • apps/tradinggoose/tools/pipedrive/get_files.ts
  • apps/tradinggoose/tools/pipedrive/get_leads.ts
  • apps/tradinggoose/tools/reddit/get_comments.ts
  • apps/tradinggoose/tools/reddit/get_posts.ts
  • apps/tradinggoose/tools/reddit/hot_posts.ts
  • apps/tradinggoose/tools/wordpress/upload_media.ts
  • apps/tradinggoose/tools/zendesk/create_user.ts
  • apps/tradinggoose/tools/zendesk/delete_user.ts
  • apps/tradinggoose/tools/zendesk/get_tickets.ts
  • apps/tradinggoose/tools/zendesk/update_user.ts
  • apps/tradinggoose/trigger.config.ts
  • apps/tradinggoose/triggers/index.ts
  • apps/tradinggoose/triggers/microsoftteams/chat_webhook.ts
  • apps/tradinggoose/triggers/microsoftteams/webhook.ts
  • apps/tradinggoose/triggers/webflow/collection_item_created.ts
  • apps/tradinggoose/triggers/webflow/form_submission.ts
  • apps/tradinggoose/vitest.setup.ts
  • apps/tradinggoose/widgets/color-pairs.test.ts
  • apps/tradinggoose/widgets/color-pairs.ts
  • apps/tradinggoose/widgets/layout-document.ts
  • apps/tradinggoose/widgets/layout.ts
  • apps/tradinggoose/widgets/registry.test.ts
  • apps/tradinggoose/widgets/registry.tsx
  • apps/tradinggoose/widgets/utils/watchlist-yjs.ts
  • apps/tradinggoose/widgets/widget-config-runtime.test.tsx
  • apps/tradinggoose/widgets/widget-config-runtime.tsx
  • apps/tradinggoose/widgets/widget-contract-types.ts
  • apps/tradinggoose/widgets/widget-contracts.test.ts
  • apps/tradinggoose/widgets/widget-contracts.ts
  • apps/tradinggoose/widgets/widget-mutations.test.ts
  • apps/tradinggoose/widgets/widget-mutations.ts
  • apps/tradinggoose/widgets/widget-surface.tsx
  • apps/tradinggoose/widgets/widgets/_shared/custom_tool/components/custom-tool-list-item.tsx
  • apps/tradinggoose/widgets/widgets/_shared/mcp/components/mcp-server-form.tsx
  • apps/tradinggoose/widgets/widgets/_shared/skill/components/skill-list-item.tsx
  • apps/tradinggoose/widgets/widgets/components/custom-tool-dropdown.tsx
  • apps/tradinggoose/widgets/widgets/components/entity-editor-buttons.tsx
  • apps/tradinggoose/widgets/widgets/components/mcp-dropdown.tsx
  • apps/tradinggoose/widgets/widgets/components/pair-color-dropdown.tsx
  • apps/tradinggoose/widgets/widgets/components/pine-indicator-dropdown.tsx
  • apps/tradinggoose/widgets/widgets/components/skill-dropdown.tsx
  • apps/tradinggoose/widgets/widgets/components/widget-action-menu.tsx
  • apps/tradinggoose/widgets/widgets/components/widget-header-refresh-button.tsx
  • apps/tradinggoose/widgets/widgets/components/widget-selector.test.tsx
  • apps/tradinggoose/widgets/widgets/components/widget-selector.tsx
  • apps/tradinggoose/widgets/widgets/components/workflow-dropdown.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/context-usage-pill/context-usage-pill.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-app.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-app.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/assistant-message-segments.test.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/assistant-message-segments.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/file-display.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/index.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/markdown-renderer.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/options-selector.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/smooth-streaming.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/thinking-group.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/components/thinking-group.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/copilot-message.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/copilot-message.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/message-visibility.test.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot-message/message-visibility.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot/copilot-header.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot/copilot.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/copilot/copilot.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/index.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/todo-list/todo-list.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/components/access-level-selector.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/components/attached-files-grid.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/components/copilot-slider.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/components/mention-menu.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/components/model-selector.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/constants.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/hooks/use-user-input-attachments.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/hooks/use-user-input-mention-sources.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/hooks/use-user-input-mention-sources.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/hooks/use-user-input-mentions.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/mention-copy.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/mention-editor-dom.test.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/mention-editor-dom.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/mention-utils.test.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/mention-utils.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/types.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/user-input.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/user-input/workspace-entity-mentions.ts
  • apps/tradinggoose/widgets/widgets/copilot/components/welcome/welcome.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/components/welcome/welcome.tsx
  • apps/tradinggoose/widgets/widgets/copilot/contract.ts
  • apps/tradinggoose/widgets/widgets/copilot/index.test.tsx
  • apps/tradinggoose/widgets/widgets/copilot/index.tsx
  • apps/tradinggoose/widgets/widgets/copilot/live-contexts.test.ts
  • apps/tradinggoose/widgets/widgets/copilot/live-contexts.ts
  • apps/tradinggoose/widgets/widgets/copilot/workspace-entities.test.ts
  • apps/tradinggoose/widgets/widgets/copilot/workspace-entities.ts
  • apps/tradinggoose/widgets/widgets/data_chart/components/chart-body.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/chart-controls.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/chart-copy-render.test.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/chart-legend.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/chart-pane-overlays.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/custom-indicator-document-connections.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/draw-control.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/draw-tools-sidebar.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/footer.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/indicator-control.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/listing-control.test.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/listing-control.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/listing-overlay.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/pane-control.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/components/pane-overlay-portal.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/drawings/adapter-actions.ts
  • apps/tradinggoose/widgets/widgets/data_chart/drawings/adapter-attachment-controller.ts
  • apps/tradinggoose/widgets/widgets/data_chart/drawings/attachment-controller-targets.ts
  • apps/tradinggoose/widgets/widgets/data_chart/drawings/start-manual-tool-for-selection.ts
  • apps/tradinggoose/widgets/widgets/data_chart/drawings/use-adapter.ts
  • apps/tradinggoose/widgets/widgets/data_chart/hooks/use-indicator-controls.ts
  • apps/tradinggoose/widgets/widgets/data_chart/hooks/use-indicator-sync.ts
  • apps/tradinggoose/widgets/widgets/data_chart/hooks/use-listing-state.test.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/hooks/use-listing-state.ts
  • apps/tradinggoose/widgets/widgets/data_chart/hooks/use-manual-draw-tools-controller.ts
  • apps/tradinggoose/widgets/widgets/data_chart/index.tsx
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/arrow/model/LineToolArrow.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/arrow/views/LineToolArrowPaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/brush/model/LineToolBrush.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/brush/views/LineToolBrushPaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/callout/model/LineToolCallout.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/circle/model/LineToolCircle.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/model/base-line-tool.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/model/price-axis-label-stacking-manager.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/rendering/time-axis-view-renderer.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/utils/geometry.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/utils/helpers.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/utils/text-helpers.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/views/line-tool-price-axis-label-view.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/core/views/line-tool-time-axis-label-view.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/cross-line/model/LineToolCrossLine.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/extended-line/model/LineToolExtendedLine.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/extended-line/views/LineToolExtendedLinePaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/fib-retracement/model/LineToolFibRetracement.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/fib-retracement/views/LineToolFibRetracementPaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/highlighter/model/LineToolHighlighter.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/highlighter/views/LineToolHighlighterPaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/horizontal-ray/model/LineToolHorizontalRay.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/horizontal-ray/views/LineToolHorizontalRayPaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/market-depth/model/LineToolMarketDepth.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/market-depth/rendering/MarketDepthRenderer.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/parallel-channel/model/LineToolParallelChannel.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/path/model/LineToolPath.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/price-range/model/LineToolPriceRange.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/price-range/views/LineToolPriceRangePaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/ray/model/LineToolRay.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/ray/views/LineToolRayPaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/rectangle/model/LineToolRectangle.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/rectangle/views/LineToolRectanglePaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/shared/lines/model/LineToolHorizontalLine.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/shared/lines/model/LineToolTrendLine.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/shared/lines/views/LineToolHorizontalLinePaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/shared/lines/views/LineToolTrendLinePaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/text/model/LineToolText.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/triangle/model/LineToolTriangle.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/vertical-line/model/LineToolVerticalLine.ts
  • apps/tradinggoose/widgets/widgets/data_chart/plugins/vertical-line/views/LineToolVerticalLinePaneView.ts
  • apps/tradinggoose/widgets/widgets/data_chart/types.ts
  • apps/tradinggoose/widgets/widgets/data_chart/utils/chart-styles.ts
  • apps/tradinggoose/widgets/widgets/data_chart/utils/listing-utils.ts
  • apps/tradinggoose/widgets/widgets/editor_custom_tool/custom-tool-editor.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_custom_tool/custom-tool-editor.tsx
  • apps/tradinggoose/widgets/widgets/editor_custom_tool/index.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_custom_tool/index.tsx
  • apps/tradinggoose/widgets/widgets/editor_indicator/components/pine-indicator-code-panel.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_indicator/components/pine-indicator-code-panel.tsx
  • apps/tradinggoose/widgets/widgets/editor_indicator/components/widget-state-message.tsx
  • apps/tradinggoose/widgets/widgets/editor_indicator/editor-indicator-body.tsx
  • apps/tradinggoose/widgets/widgets/editor_indicator/index.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_mcp/editor-mcp-body.tsx
  • apps/tradinggoose/widgets/widgets/editor_skill/editor-skill-body.tsx
  • apps/tradinggoose/widgets/widgets/editor_skill/index.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/api-key-selector/api-key-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/components/chat-deploy/chat-deploy.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/components/chat-deploy/components/auth-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/components/chat-deploy/components/identifier-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/components/chat-deploy/hooks/use-identifier-validation.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/components/deploy-form/deploy-form.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/components/deployment-info/components/api-key/api-key.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deploy-modal/deploy-modal.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deployment-controls/components/deployed-workflow-modal.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deployment-controls/deployment-controls.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/deployment-controls/deployment-controls.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/export-controls/export-controls.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/index.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/user-avatar-stack/components/connection-status/connection-status.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/user-avatar-stack/components/user-avatar/user-avatar.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/user-avatar-stack/user-avatar-stack.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/components/webhook-settings/webhook-settings.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/control-bar.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/control-bar/control-bar.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/error/index.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/floating-controls/floating-controls.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/toolbar/toolbar-block/toolbar-block.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/toolbar/toolbar-loop-block/toolbar-loop-block.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/toolbar/toolbar-parallel-block/toolbar-parallel-block.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/trigger-list/trigger-list.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/wand-prompt-bar/wand-prompt-bar.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/action-bar/action-bar.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/action-bar/action-bar.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/channel-selector/components/slack-channel-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/code.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/combobox.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/condition-input.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/condition-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/credential-selector/credential-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/document-selector/document-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/document-tag-entry/document-tag-entry.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/dropdown.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/eval-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/confluence-file-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/google-calendar-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/google-drive-picker.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/jira-issue-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/microsoft-file-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/teams-message-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/components/wealthbox-file-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-selector/file-selector-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/file-upload.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/folder-selector/folder-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/grouped-checkbox-list.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/input-format/input-format.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/input-mapping/input-mapping.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/knowledge-base-selector/knowledge-base-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/knowledge-tag-filters/knowledge-tag-filters.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/listing-selector/listing-selector.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/listing-selector/listing-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/long-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/mcp-dynamic-args/mcp-dynamic-args.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/mcp-server-modal/mcp-server-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/mcp-server-modal/mcp-tool-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/order-id-selector/order-row.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/order-id-selector/order-row.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/project-selector/components/jira-project-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/project-selector/components/linear-project-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/project-selector/components/linear-team-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/project-selector/project-selector-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/short-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/tool-input/components/tool-credential-selector.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/tool-input/tool-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/trigger-save/trigger-save.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/variables-input/variables-input.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/hooks/use-buffered-string-value.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/hooks/use-depends-on-gate.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/hooks/use-sub-block-value.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/sub-block-layout.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/sub-block.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/trigger-editing-layout.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/workflow-block.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/workflow-block.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-controlbar/controlbar.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-edge/workflow-connection-line.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-edge/workflow-edge.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/canvas/derive-canvas-nodes.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/canvas/parenting-manager.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/canvas/selection-manager.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/canvas/workflow-editor-event-bus.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/canvas/workflow-view-fit.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/canvas/workflow-view-fit.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/panel/node-editor-panel.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/preview/preview-import-guard.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/preview/preview-payload-adapter.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/preview/preview-payload-adapter.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/preview/preview-route-context-guard.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/preview/preview-workflow.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-editor/workflow-canvas.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-render/preview-summary.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-render/sub-block-summary-rows.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-toolbar/toolbar-add-block-context.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-toolbar/workflow-toolbar.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-toolbar/workflow-toolbar.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/components/body.test.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/components/body.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/components/header.test.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/components/heatmap-treemap-chart.test.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/components/heatmap-treemap-chart.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/components/shared.ts
  • apps/tradinggoose/widgets/widgets/heatmap/components/source-items.ts
  • apps/tradinggoose/widgets/widgets/heatmap/index.tsx
  • apps/tradinggoose/widgets/widgets/heatmap/utils/treemap-layout.test.ts
  • apps/tradinggoose/widgets/widgets/list_custom_tool/index.test.tsx
  • apps/tradinggoose/widgets/widgets/list_custom_tool/index.tsx
  • apps/tradinggoose/widgets/widgets/list_indicator/components/indicator-create-menu.tsx
  • apps/tradinggoose/widgets/widgets/list_indicator/components/indicator-list/components/indicator-list-item.tsx
  • apps/tradinggoose/widgets/widgets/list_indicator/components/indicator-list/indicator-list.tsx
  • apps/tradinggoose/widgets/widgets/list_indicator/index.test.tsx
  • apps/tradinggoose/widgets/widgets/list_indicator/index.tsx
  • apps/tradinggoose/widgets/widgets/list_mcp/index.tsx
  • apps/tradinggoose/widgets/widgets/list_skill/components/skill-create-menu.tsx
  • apps/tradinggoose/widgets/widgets/list_skill/components/skill-list/skill-list.tsx
  • apps/tradinggoose/widgets/widgets/list_skill/index.test.tsx
  • apps/tradinggoose/widgets/widgets/list_skill/index.tsx
  • apps/tradinggoose/widgets/widgets/list_workflow/components/folder-tree/components/folder-item.tsx
  • apps/tradinggoose/widgets/widgets/list_workflow/components/folder-tree/components/workflow-item.tsx
  • apps/tradinggoose/widgets/widgets/list_workflow/components/folder-tree/folder-tree.tsx
  • apps/tradinggoose/widgets/widgets/list_workflow/components/workflow-create-menu.tsx
  • apps/tradinggoose/widgets/widgets/list_workflow/index.tsx
  • apps/tradinggoose/widgets/widgets/portfolio_snapshot/components/header.test.tsx
  • apps/tradinggoose/widgets/widgets/portfolio_snapshot/components/shared.ts
  • apps/tradinggoose/widgets/widgets/portfolio_snapshot/index.tsx
  • apps/tradinggoose/widgets/widgets/quick_order/components/body.test.tsx
  • apps/tradinggoose/widgets/widgets/quick_order/components/body.tsx
  • apps/tradinggoose/widgets/widgets/quick_order/components/header.test.tsx
  • apps/tradinggoose/widgets/widgets/quick_order/components/header.tsx
  • apps/tradinggoose/widgets/widgets/quick_order/components/shared.test.ts
  • apps/tradinggoose/widgets/widgets/quick_order/components/shared.ts
  • apps/tradinggoose/widgets/widgets/quick_order/index.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-body.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-header-controls.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-header-controls.ui.test.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-list-actions-button.test.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-list-actions-button.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-table-utils.ts
  • apps/tradinggoose/widgets/widgets/watchlist/components/watchlist-table.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/index.tsx
  • apps/tradinggoose/widgets/widgets/watchlist/watchlist-table.sections.test.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/components/chat-file-upload/chat-file-upload.test.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/components/chat-file-upload/chat-file-upload.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/components/chat-message/chat-message.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/components/chat/chat.test.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/components/chat/chat.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/components/workflow-chat-app.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/index.test.tsx
  • apps/tradinggoose/widgets/widgets/workflow_chat/index.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/code-display/code-display.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/console/console.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/terminal/components/filter-popover.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/terminal/components/output-panel/output-panel.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/terminal/components/status-display.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/terminal/terminal.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/components/workflow-console-app.tsx
  • apps/tradinggoose/widgets/widgets/workflow_console/index.tsx
  • apps/tradinggoose/widgets/widgets/workflow_variables/components/variables/variables.tsx
  • apps/tradinggoose/widgets/widgets/workflow_variables/index.test.tsx
  • apps/tradinggoose/widgets/widgets/workflow_variables/index.tsx
  • docker/app.Dockerfile
  • docker/db.Dockerfile
  • docker/realtime.Dockerfile
  • greptile.json
  • package.json
  • packages/cli/src/index.ts
  • packages/db/migrations/meta/_journal.json
  • packages/db/package.json
  • packages/db/schema/billing.ts
  • packages/db/schema/copilot.ts
  • packages/db/schema/system.ts
  • packages/db/schema/workflows.ts
  • scripts/audit-docs.ts
  • scripts/create-e2b-pinets-template.ts
  • scripts/doc-gen/doc-pages.ts
  • scripts/doc-gen/extract-blocks.ts
  • scripts/doc-gen/extract-tools.ts
  • scripts/doc-gen/extract-triggers.ts
  • scripts/doc-gen/generate-blocks.ts
  • scripts/doc-gen/generate-tools.ts
  • scripts/doc-gen/generate-triggers.ts
  • scripts/doc-gen/generate-widgets.ts
  • scripts/doc-gen/index.ts
  • scripts/doc-gen/render-tool-page.ts
  • scripts/doc-gen/resolve-trigger-outputs.ts
  • scripts/doc-gen/resolved-trigger-outputs.json
  • apps/tradinggoose/app/(landing)/components/monitor-preview/monitor-preview.test.tsx
  • apps/tradinggoose/app/[locale]/workspace/[workspaceId]/error.tsx
  • apps/tradinggoose/app/admin/billing/tier-editor.test.ts
  • apps/tradinggoose/app/api/billing/private-tier-access/route.test.ts
  • apps/tradinggoose/app/api/billing/private-tier-access/route.ts
  • apps/tradinggoose/app/api/folders/shared.ts
  • apps/tradinggoose/app/api/routes.test.ts
  • apps/tradinggoose/app/app-command-menu.tsx
  • apps/tradinggoose/app/layout.tsx
  • apps/tradinggoose/app/loading.tsx
  • apps/tradinggoose/app/workspace/[workspaceId]/knowledge/components/knowledge-tags/knowledge-tags.test.tsx
  • apps/tradinggoose/background/pending-execution-job.test.ts
  • apps/tradinggoose/background/pending-execution-job.ts
  • apps/tradinggoose/background/pending-execution-worker.test.ts
  • apps/tradinggoose/background/pending-execution-worker.ts
  • apps/tradinggoose/global-navbar/components/copilot-sidebar-toggle.test.tsx
  • apps/tradinggoose/global-navbar/components/copilot-sidebar-toggle.tsx
  • apps/tradinggoose/global-navbar/copilot-context.test.tsx
  • apps/tradinggoose/global-navbar/copilot-context.tsx
  • apps/tradinggoose/global-navbar/global-copilot-layout.test.tsx
  • apps/tradinggoose/global-navbar/global-copilot-layout.tsx
  • apps/tradinggoose/global-navbar/global-copilot-panel.test.tsx
  • apps/tradinggoose/global-navbar/global-copilot-panel.tsx
  • apps/tradinggoose/global-navbar/settings-modal/components/subscription/subscription.test.tsx
  • apps/tradinggoose/hooks/queries/private-tier-access.test.tsx
  • apps/tradinggoose/hooks/queries/private-tier-access.ts
  • apps/tradinggoose/lib/admin/billing/access-code.ts
  • apps/tradinggoose/lib/admin/billing/stripe-identifiers.test.ts
  • apps/tradinggoose/lib/admin/billing/stripe-identifiers.ts
  • apps/tradinggoose/lib/billing/private-tier-access-contract.ts
  • apps/tradinggoose/lib/billing/private-tier-access.ts
  • apps/tradinggoose/lib/billing/stripe-portal.test.ts
  • apps/tradinggoose/lib/billing/stripe-portal.ts
  • apps/tradinggoose/lib/billing/stripe-subscription-reference.test.ts
  • apps/tradinggoose/lib/billing/tiers/persistence.test.ts
  • apps/tradinggoose/lib/billing/webhooks/enterprise.test.ts
  • apps/tradinggoose/lib/copilot/chat-contexts.test.ts
  • apps/tradinggoose/lib/copilot/components/context-usage-pill/context-usage-pill.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/assistant-message-segments.test.ts
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/assistant-message-segments.ts
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/file-display.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/markdown-renderer.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/options-selector.test.ts
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/options-selector.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/smooth-streaming.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/thinking-group.test.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/components/thinking-group.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/copilot-message.test.tsx
  • apps/tradinggoose/lib/copilot/components/copilot-message/copilot-message.tsx
  • apps/tradinggoose/lib/copilot/components/copilot/copilot-header.tsx
  • apps/tradinggoose/lib/copilot/components/copilot/copilot.test.tsx
  • apps/tradinggoose/lib/copilot/components/copilot/copilot.tsx
  • apps/tradinggoose/lib/copilot/components/file-type-icon.tsx
  • apps/tradinggoose/lib/copilot/components/todo-list/todo-list.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/components/access-level-selector.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/components/attached-files-grid.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/components/mention-menu.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/components/model-selector.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/constants.ts
  • apps/tradinggoose/lib/copilot/components/user-input/hooks/use-user-input-attachments.ts
  • apps/tradinggoose/lib/copilot/components/user-input/hooks/use-user-input-mention-sources.test.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/hooks/use-user-input-mention-sources.ts
  • apps/tradinggoose/lib/copilot/components/user-input/hooks/use-user-input-mentions.ts
  • apps/tradinggoose/lib/copilot/components/user-input/mention-copy.ts
  • apps/tradinggoose/lib/copilot/components/user-input/mention-editor-dom.test.ts
  • apps/tradinggoose/lib/copilot/components/user-input/mention-editor-dom.ts
  • apps/tradinggoose/lib/copilot/components/user-input/mention-utils.test.ts
  • apps/tradinggoose/lib/copilot/components/user-input/mention-utils.ts
  • apps/tradinggoose/lib/copilot/components/user-input/types.ts
  • apps/tradinggoose/lib/copilot/components/user-input/user-input.tsx
  • apps/tradinggoose/lib/copilot/components/user-input/workspace-entity-mentions.ts
  • apps/tradinggoose/lib/copilot/components/welcome/welcome.test.tsx
  • apps/tradinggoose/lib/copilot/components/welcome/welcome.tsx
  • apps/tradinggoose/lib/copilot/context-limits.ts
  • apps/tradinggoose/lib/copilot/execution-log-context.ts
  • apps/tradinggoose/lib/copilot/runtime-models.test.ts
  • apps/tradinggoose/lib/copilot/tools/client/manager.test.ts
  • apps/tradinggoose/lib/copilot/tools/server/monitor/monitor-tools.test.ts
  • apps/tradinggoose/lib/copilot/workspace-entities.test.ts
  • apps/tradinggoose/lib/copilot/workspace-entities.ts
  • apps/tradinggoose/lib/execution/execution-mode-lock.ts
  • apps/tradinggoose/lib/execution/workflow-execution-events.test.ts
  • apps/tradinggoose/lib/listing/hydrate-ui.test.ts
  • apps/tradinggoose/lib/security/redaction.test.ts
  • apps/tradinggoose/lib/security/redaction.ts
  • apps/tradinggoose/lib/subscription/upgrade.test.tsx
  • apps/tradinggoose/lib/yjs/use-dashboard-color-pair.ts
  • apps/tradinggoose/lib/yjs/workflow-session-host.test.tsx
  • apps/tradinggoose/providers/ai/google/index.test.ts
  • apps/tradinggoose/providers/ai/google/utils.test.ts
  • apps/tradinggoose/providers/ai/models.test.ts
  • apps/tradinggoose/stores/copilot/channel-id.test.ts
  • apps/tradinggoose/stores/copilot/channel-id.ts
  • apps/tradinggoose/stores/copilot/store-lifecycle.test.tsx
  • apps/tradinggoose/triggers/index.test.ts
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/dropdown.test.tsx
  • apps/tradinggoose/widgets/widgets/editor_workflow/components/workflow-block/components/sub-block/components/folder-selector/folder-selector.ui.test.tsx
  • changelog/August-01-2026.md
  • changelog/August-02-2026.md
  • changelog/August-17-2026.md
  • changelog/August-21-2026.md
  • packages/db/migrations/0040_lean_chat.sql
  • packages/db/migrations/meta/0040_snapshot.json

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

@TradingGoose-Dev
TradingGoose-Dev merged commit 8ea6b54 into main Aug 31, 2026
7 checks passed
@TradingGoose-Dev
TradingGoose-Dev deleted the staging branch August 31, 2026 15:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants