Libra CodeHub

CedarCopilot/cedar-mail

Branch: staging

A chat you can cite, an agent you can rename, and an archive that works on every tab

merged#2670CedarCopilot

CedarCopilot wants to merge 4 commits into staging from feat/inbox-client-composed-feed

Live on prod since Thu, 1 of 7 behaviors workingTimeline and evidence
  1. Opened
    Sep 3, 2026, 11:10 AM
  2. Sep 3, 2026, 12:10 PM
  3. Merged
    Sep 3, 2026, 12:28 PM
  4. Live on prod
    Sep 3, 2026, 12:28 PM
  5. Observed 2 days
    Sep 3, 2026, 12:28 PM
  6. Pipelines steady after this deploy
    Sep 3, 2026, 12:28 PM
  7. Verified

    Live on prod since Thu, 1 of 7 behaviors working

    Sep 6, 2026, 1:43 AM

Behaviors Libra is checking

Legacy conversation URLs redirect to /home, translating a path conversation ID into conversationId while preserving other query parameters and avoiding the old duplicated navigation shell.Workingmedium confidence

Since the deploy, 250 prod OTEL spans matching GET /conversations/* ran with 0 error spans. In the 61h before the deploy the same surface ran 117 OTEL spans with 0 error spans. Confidence is medium because the surface was already clean before the deploy, so this confirms no.

prod, checked Sep 6, 2026, 12:42 AM
Event citations identify their source with the event type plus a compact relative or calendar date, while the hover popover shows the event title and quoted evidence.Inconclusivelow confidence

Verification cited only 5 matching post-deploy events, below the 20-event floor for calling a change verified. Nothing is failing; there is not yet enough traffic to confirm it.

prod, checked Sep 5, 2026, 10:43 PM
The citation prefetcher skips web citations because they have no Cedar event record to load, while continuing to prefetch linked event citations.Inconclusivelow confidence

Verification cited only 6 matching post-deploy events, below the 20-event floor for calling a change verified. Nothing is failing; there is not yet enough traffic to confirm it.

prod, checked Sep 5, 2026, 10:45 PM
Web citations render as source badges showing the site's name and favicon or a globe fallback, expose the page title and URL on hover, and open the cited HTTP(S) page in a new tab instead of opening a transcript.Inconclusivehigh confidence

Post-deploy telemetry shows 640 concrete citation-producing tool-call logs: 568 web-search and 72 web-fetch. OTEL recorded successful execute_tool web-search and execute_tool web-fetch spans with p95 latencies of 2.508s and 10.129s, respectively, and no tied error spans. Exact.

prod, checked Sep 5, 2026, 11:43 PM
Web citation badges refuse to navigate to non-HTTP(S), malformed, or relative URLs while continuing to display the source as non-clickable text.Inconclusivelow confidence

Verification reached its budget before a verdict.

prod, checked Sep 5, 2026, 11:44 PM
Opening the legacy /agent URL redirects to the canonical /home surface while preserving agent, conversation, and thread query parameters.Inconclusivemedium confidence

No concrete GET /agent redirect or canonical /home navigation telemetry was found in the inspected production spans since 2026-09-03T19:28:54Z. The only matching records were unrelated agent execution operations. Source confirms the client implementation uses Navigate to /home.

prod, checked Sep 6, 2026, 12:42 AM

Libra has verdicts on 1 of 7 tracked behaviors on prod; 6 are still being checked. Libra checks hourly for 3 days after each deploy.

Summary

This branch is the chat surface growing up: an answer that cites its sources and opens the document it wrote, an agent that is a document you can open and rename, and a table whose columns pull live Cedar data. Plus the findings from reviewing all of it.

Chat and citations. A web source renders as the site's badge rather than a URL dropped into the prose, an event citation says which meeting (Meeting · Aug 12) instead of just "Meeting", and every citation badge is now the same object the rest of the app uses , bg-sunken, rounded-full, the event type carried as text colour rather than as its own five-chip palette. display-document is gone: writing a document attaches it, so there is no second verb for the model to remember and no blunt reach that yanks away what you were reading.

Agents. Four namespaces, a default file, and an agent document that opens as the agent , five surfaces used to render a subagent doc as generic prose with its YAML frontmatter showing. The title is now editable in place, displayed as the pretty form and saved as the slug the chat harness registers it under, with duplicates refused rather than silently shadowing.

Archive. Archiving an open thread was a no-op on every tab whose slug is not literally inbox , the Important and Other tabs, a custom inbox, All Mail. moveThreadsTo resolved to no labels, logged No labels to modify, and never made the request.

What the review caught

Ten bugs, fixed in fix(review): …. The ones that would have hurt:

  • chat_messages.citations was typed event-only while the frontend had already widened to an event | web union. Four as Citation[] casts were the only thing hiding it, so a server reader of a persisted web citation got undefined for quote with no type error. Column now carries the real union; the casts are a zod parse at the boundary.
  • Web citations never rendered while streaming , the tool-result processor read them off the SSE frame and dropped them on the way into the message, so every [N] was grey text until the canonical reload, and forever if the user cancelled.
  • The per-turn citation carry never reset, so turn five inherited turn one's sources and any later "option [2]" became a live pill pointing at an unrelated page.
  • A background run's document opened in front of whoever was reading a different chat , openWrittenDocumentIfPanelIdle checked only whether the active thread's panel was empty.
  • mutateThreadContext is a non-atomic read-modify-write of one JSON column. Harmless while attach-on-write sat behind a flag no call site set; now unconditional for every chat-turn write, and agents emit parallel tool_use blocks , so the second UPDATE dropped the first one's chip. Now one transaction with the row locked.
  • An unbounded CRM field read. Dropping the is_list_field = false filter turned it into "every value ever extracted for every deal on the page", on every table read, with eight able to reach a cell. Bounded in SQL with row_number() per (conversation, field) , a global LIMIT would have let one talkative deal eat the budget.
  • An unescaped LIKE prefix could 500 the whole Output tab, because the new classifyAgentPath throws on an over-matched row rather than misfiling it, and agentId reaches it from frontmatter.
  • createBoard scanned org-wide for a collision, but board uniqueness is (orgId, userId, path) , one teammate's "New board" numbered itself off boards they cannot see.
  • agent.create wrote defaultFile unvalidated while setDefaultFile validated it, so a create-time ../other was silently discarded on read.
  • A run's notification reported the Slack channel it asked for, not the one it reached , exactly the customer-visible-vs-private distinction the field exists to draw.

Plus an eager import that put TipTap back into the home bundle it was being lazy-loaded out of (and closed a real `Age

Show production surfaces and changed-file mapping

Production surfaces

Libra has not measured any production surfaces for this change yet.

Changed files → surfaces

  • apps/mail/app/(full-width)/zoom.tsxno production surface mapped
  • apps/mail/app/(routes)/agent/page.tsxno production surface mapped
  • apps/mail/app/(routes)/conversations/page.tsxno production surface mapped
  • apps/mail/app/(routes)/home/layout.tsxno production surface mapped
  • apps/mail/app/routes.tsno production surface mapped
  • apps/mail/components/icons/agent-avatar.tsxno production surface mapped
  • apps/mail/components/ui/active-view-display.tsxno production surface mapped
  • apps/mail/components/ui/citations/CitationPill.tsxno production surface mapped
  • apps/mail/components/ui/citations/CitationPopover.tsxno production surface mapped
  • apps/mail/components/ui/citations/TranscriptViewerModal.tsxno production surface mapped
  • apps/mail/components/ui/citations/WebCitationPill.tsxno production surface mapped
  • apps/mail/components/ui/citations/citationStyles.tsno production surface mapped
  • apps/mail/components/ui/citations/index.tsno production surface mapped
  • apps/mail/components/ui/citations/usePrefetchCitations.tsno production surface mapped
  • apps/mail/components/ui/field.tsxno production surface mapped
  • apps/mail/docs/agent-context-and-default-file.mdno production surface mapped
  • apps/mail/docs/chat-display-artifact.mdno production surface mapped
  • apps/mail/docs/crystallized.mdno production surface mapped
  • apps/mail/docs/table-documents.mdno production surface mapped
  • apps/mail/modules/agentCanvas/components/AgendaDocument.tsxno production surface mapped
  • apps/mail/modules/agentCanvas/extensions/AgendaOpeningChips.tsno production surface mapped
  • apps/mail/modules/agentCanvas/extensions/AgendaOpeningRule.tsno production surface mapped
  • apps/mail/modules/agentCanvas/extensions/AgendaTaskNode.tsxno production surface mapped
  • apps/mail/modules/agentCanvas/utils/agenda-markdown.tsno production surface mapped
  • apps/mail/modules/agents/__tests__/AgentDocumentView.test.tsxno production surface mapped
  • apps/mail/modules/agents/__tests__/AgentOutputTab.test.tsxno production surface mapped
  • apps/mail/modules/agents/__tests__/AgentRunsTab.test.tsxno production surface mapped
  • apps/mail/modules/agents/__tests__/AgentViewLayout.test.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentActionMenu.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentBackGutter.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentDocumentView.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentHeader.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentInstructionsSection.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentOutputTab.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentRunsTab.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentSettingsSection.tsxno production surface mapped
  • apps/mail/modules/agents/components/AgentView.tsxno production surface mapped
  • apps/mail/modules/agents/hooks/use-agent-back.tsno production surface mapped
  • apps/mail/modules/agents/hooks/use-rename-agent.tsno production surface mapped
  • apps/mail/modules/agents/hooks/use-set-agent-default-file.tsno production surface mapped
  • apps/mail/modules/agents/types.tsno production surface mapped
  • apps/mail/modules/agents/utils/agent-paths.tsno production surface mapped
  • apps/mail/modules/aop/components/AgentDocHeader.tsxno production surface mapped
  • apps/mail/modules/aop/components/AgentFieldsCallout.tsxno production surface mapped
  • apps/mail/modules/cedar-os/__tests__/EmptyStateSuggestions.brain.test.tsxno production surface mapped
  • apps/mail/modules/cedar-os/__tests__/EmptyStateSuggestions.test.tsxno production surface mapped
  • apps/mail/modules/cedar-os/__tests__/emptyChatLayout.surfaces.test.tsno production surface mapped
  • apps/mail/modules/cedar-os/__tests__/store/messageQueue/messageQueueSlice.test.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/cedar-os-components/chatComponents/EmbeddedCedarChat.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/cedar-os-components/chatComponents/EmptyStateSuggestions.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/cedar-os-components/chatComponents/emptyChatLayout.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/cedar-os-components/chatInput/ChatInput.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/cedar-os-components/chatMessages/ChatBubbles.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/cedar-os-components/chatMessages/ChatRenderer.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/components/renderers/messageRenderers.tsxno production surface mapped
  • apps/mail/modules/cedar-os/src/components/renderers/toolMappings.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/constants/tool-names.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/agentConnection/agentConnectionSlice.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/agentConnection/responseProcessors/docUpdateResponseProcessor.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/agentConnection/responseProcessors/openWrittenDocument.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/agentConnection/responseProcessors/toolResultResponseProcessor.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/messageQueue/messageQueueSlice.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/messages/MessageTypes.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/messages/databaseAdapter.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/messages/messageStorage.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/messages/messagesSlice.tsno production surface mapped
  • apps/mail/modules/cedar-os/src/store/messages/resolveMessageCitations.tsno production surface mapped
  • apps/mail/modules/company/components/CompanyExplorer.tsxno production surface mapped
  • apps/mail/modules/conversations/components/LeftSidebarContent.tsxno production surface mapped
  • apps/mail/modules/conversations/components/ThreadContextCards.tsxno production surface mapped
  • apps/mail/modules/conversations/components/files/ConversationFileTree.tsxno production surface mapped
  • apps/mail/modules/conversations/components/files/__tests__/buildAgentDocs.test.tsno production surface mapped
  • apps/mail/modules/conversations/components/files/resolveOpenDoc.tsno production surface mapped
  • apps/mail/modules/conversations/components/nav-buttons.tsno production surface mapped
  • apps/mail/modules/conversations/components/nextSteps/TaskBlock.tsxno production surface mapped
  • apps/mail/modules/conversations/slice/conversationsSlice.tsno production surface mapped
  • apps/mail/modules/conversationsPage/components/ConversationsSidebarRow.tsxno production surface mapped
  • apps/mail/modules/debugger/components/AgendaDocDebuggerTab.tsxno production surface mapped
  • apps/mail/modules/documents/agent/HideFrontmatterExtension.tsno production surface mapped
  • apps/mail/modules/documents/full-bleed-doc-types.tsno production surface mapped
  • apps/mail/modules/documents/table/CellDisplay.tsxno production surface mapped
  • apps/mail/modules/documents/table/CrmBoundCells.tsxno production surface mapped
  • apps/mail/modules/documents/table/TableColumnMenu.tsxno production surface mapped
  • apps/mail/modules/documents/table/TableFillInstructions.tsxno production surface mapped
  • apps/mail/modules/documents/table/TableGrid.tsxno production surface mapped
  • apps/mail/modules/drafting/components/email-composer.tsxno production surface mapped
  • apps/mail/modules/drafting/hooks/use-undo-send.tsno production surface mapped
  • apps/mail/modules/files/chat/newChatArtifact.tsno production surface mapped
  • apps/mail/modules/files/components/FileBrowser.tsxno production surface mapped
  • apps/mail/modules/files/components/chat/NewArtifactButton.tsxno production surface mapped
  • apps/mail/modules/home/components/AgentHomeHero.tsxno production surface mapped
  • apps/mail/modules/home/components/DisplayArtifactPanel.tsxno production surface mapped
  • apps/mail/modules/home/components/FileArtifactPanel.tsxno production surface mapped
  • apps/mail/modules/home/components/HomeView.tsxno production surface mapped
  • apps/mail/modules/home/components/agentic-table.tsno production surface mapped
  • apps/mail/modules/home/widgets/AgentPickerDialog.tsxno production surface mapped
  • apps/mail/modules/home/widgets/HomeAgentsWidget.tsxno production surface mapped
  • apps/mail/modules/inbox/components/ChannelThreadView.tsxno production surface mapped
  • apps/mail/modules/inbox/components/SlackThreadPanel.tsxno production surface mapped
  • apps/mail/modules/inbox/hooks/use-open-channel-item.tsno production surface mapped
  • apps/mail/modules/threads/thread/components/thread-display.tsxno production surface mapped
  • apps/mail/modules/threads/thread/hooks/use-archive-thread.tsno production surface mapped
  • apps/mail/modules/threads/thread/utils/thread-actions.tsno production surface mapped
  • apps/mail/modules/threads/thread/utils/thread-display-hotkeys.tsxno production surface mapped
  • apps/mail/modules/threads/threadList/store/threadSlice.tsno production surface mapped
  • apps/mail/modules/userTasks/components/TaskKanbanCard.tsxno production surface mapped
  • apps/mail/modules/userTasks/hooks/use-task-list-view-options.tsno production surface mapped
  • apps/mail/modules/ux/components/navigation-page-url-sync.tsxno production surface mapped
  • apps/mail/modules/ux/layout/LayoutUrlSync.tsxno production surface mapped
  • apps/mail/modules/ux/layout/enterChatThread.tsno production surface mapped
  • apps/mail/modules/ux/layout/layoutSlice.tsno production surface mapped
  • apps/mail/modules/ux/layout/layoutTypes.tsno production surface mapped
  • apps/mail/modules/ux/layout/resolveContext.tsno production surface mapped
  • apps/mail/modules/ux/layout/selectEmptyChatSurface.tsno production surface mapped
  • apps/mail/modules/ux/layout/shellRoutes.tsno production surface mapped
  • apps/mail/modules/ux/layout/useBackOrUp.tsno production surface mapped
  • apps/mail/tests/modules/agentCanvas/agenda-markdown.test.tsno production surface mapped
  • apps/mail/tests/modules/agentCanvas/agenda-opening-chips.test.tsno production surface mapped
  • apps/mail/tests/modules/agentCanvas/agenda-opening-rule.test.tsno production surface mapped
  • apps/mail/tests/modules/agents/agent-paths.test.tsno production surface mapped
  • apps/mail/tests/modules/chat-store/backendHistoryWindow.test.tsno production surface mapped
  • apps/mail/tests/modules/chat-store/chatHistoryPagination.test.tsno production surface mapped
  • apps/mail/tests/modules/chat-store/citationBadge.test.tsno production surface mapped
  • apps/mail/tests/modules/chat-store/displayArtifact.test.tsxno production surface mapped
  • apps/mail/tests/modules/chat-store/draftChatOnArrival.test.tsno production surface mapped
  • apps/mail/tests/modules/chat-store/emailThreadContext.test.tsxno production surface mapped
  • apps/mail/tests/modules/chat-store/openWrittenDocument.test.tsno production surface mapped
  • apps/mail/tests/modules/chat-store/resolveMessageCitations.test.tsno production surface mapped
  • apps/mail/tests/modules/company/brainExplorerSelection.test.tsxno production surface mapped
  • apps/mail/tests/modules/conversations/filesTabOptimistic.test.tsxno production surface mapped
  • apps/mail/tests/modules/documents/agentFrontmatter.test.tsno production surface mapped
  • apps/mail/tests/modules/documents/table/CrmBoundCells.test.tsxno production surface mapped
  • apps/mail/tests/modules/documents/table/OptionPicker.test.tsxno production surface mapped
  • apps/mail/tests/modules/documents/table/TableDocumentCard.test.tsxno production surface mapped
  • apps/mail/tests/modules/documents/table/TableFillInstructions.test.tsxno production surface mapped
  • apps/mail/tests/modules/files/brain-explorer.test.tsxno production surface mapped
  • apps/mail/tests/modules/files/newChatArtifact.test.tsno production surface mapped
  • apps/mail/tests/modules/home/DisplayArtifactPanel.test.tsxno production surface mapped
  • apps/mail/tests/modules/home/agentHomeHero.test.tsxno production surface mapped
  • apps/mail/tests/modules/home/agenticTable.test.tsno production surface mapped
  • apps/mail/tests/modules/home/perMessageOpenContext.test.tsxno production surface mapped
  • apps/mail/tests/modules/inbox/openChannelItem.test.tsxno production surface mapped
  • apps/mail/tests/modules/threads/archive-from-any-folder.test.tsno production surface mapped
  • apps/mail/tests/modules/userTasks/taskExecutionListGroupSync.test.tsxno production surface mapped
  • apps/mail/tests/modules/userTasks/taskKanbanCardExecute.test.tsxno production surface mapped
  • apps/mail/tests/modules/userTasks/taskViewOptionsStability.test.tsxno production surface mapped
  • apps/mail/tests/modules/ux/layout/agentWidgetBack.test.tsxno production surface mapped
  • apps/mail/tests/modules/ux/layout/backNeverPushes.test.tsno production surface mapped
  • apps/mail/tests/modules/ux/layout/backOrClose.test.tsno production surface mapped
  • apps/mail/tests/modules/ux/layout/closeThreadAfterChatSwitch.test.tsxno production surface mapped
  • apps/mail/tests/modules/ux/layout/deepLinkSurvivesChatHydration.test.tsxno production surface mapped
  • apps/mail/tests/modules/ux/layout/goHomeToNewChat.test.tsno production surface mapped
  • apps/mail/tests/modules/ux/layout/layoutSlice.test.tsno production surface mapped
  • apps/mail/tests/modules/ux/layout/resolveContext.test.tsno production surface mapped
  • apps/mail/tests/modules/ux/layout/selectEmptyChatSurface.test.tsno production surface mapped
  • apps/mail/tests/modules/ux/layout/slackUrlSync.test.tsxno production surface mapped
  • apps/mail/tests/modules/ux/layout/useRouteChatThread.mail.test.tsxno production surface mapped
  • apps/server/.claude/skills/documents/SKILL.mdno production surface mapped
  • apps/server/.claude/skills/research/SKILL.mdno production surface mapped
  • apps/server/.claude/skills/tables/SKILL.mdno production surface mapped
  • apps/server/docs/chat-context-set.mdno production surface mapped
  • apps/server/docs/contact-layer-and-org-chart.mdno production surface mapped
  • apps/server/docs/wiki/chat-context-set.mdno production surface mapped
  • apps/server/docs/zoom-conferencing.mdno production surface mapped
  • apps/server/package.jsonno production surface mapped
  • apps/server/src/agent-admin/cli.tsno production surface mapped
  • apps/server/src/db/chat-schema.tsno production surface mapped
  • apps/server/src/lib/schemas.tsno production surface mapped
  • apps/server/src/mastra/__tests__/table-fanout-eval.test.tsno production surface mapped
  • apps/server/src/mastra/agents/agent-chat-shell.tsno production surface mapped
  • apps/server/src/mastra/agents/analyzer-agent.tsno production surface mapped
  • apps/server/src/mastra/context/values.tsno production surface mapped
  • apps/server/src/mastra/mcp/external/__tests__/mutating-actions-are-administrable.test.tsno production surface mapped
  • apps/server/src/mastra/mcp/external/__tests__/scope-map.test.tsno production surface mapped
  • apps/server/src/mastra/mcp/external/scope-map.tsno production surface mapped
  • apps/server/src/mastra/prompts/cedar-docs-awareness.tsno production surface mapped
  • apps/server/src/mastra/routeHandlers/chat/handleChat.tsno production surface mapped
  • apps/server/src/mastra/skills/collateral/collateral-orchestrator.tsno production surface mapped
  • apps/server/src/mastra/skills/docs/document-management.tsno production surface mapped
  • apps/server/src/mastra/skills/docs/tables.tsno production surface mapped
  • apps/server/src/mastra/skills/index.tsno production surface mapped
  • apps/server/src/mastra/skills/page-skills.tsno production surface mapped
  • apps/server/src/mastra/skills/types.tsno production surface mapped
  • apps/server/src/mastra/tools/document/__tests__/document-redirect-authorization.test.tsno production surface mapped
  • apps/server/src/mastra/tools/document/__tests__/documentTool.test.tsno production surface mapped
  • apps/server/src/mastra/tools/document/displayDocumentTool.tsno production surface mapped
  • apps/server/src/mastra/tools/document/documentTool.tsno production surface mapped
  • apps/server/src/mastra/tools/document/moveFileTool.tsno production surface mapped
  • apps/server/src/mastra/tools/document/readDocumentTool.tsno production surface mapped
  • apps/server/src/mastra/tools/document/tableTool.tsno production surface mapped
  • apps/server/src/mastra/tools/document/writeDocumentTool.tsno production surface mapped
  • apps/server/src/mastra/tools/family-tool-names.tsno production surface mapped
  • apps/server/src/mastra/tools/integrations/runCodeExecutorTool.tsno production surface mapped
  • apps/server/src/mastra/tools/research/webFetchTool.tsno production surface mapped
  • apps/server/src/mastra/tools/research/webSearchTool.tsno production surface mapped
  • apps/server/src/mastra/tools/skills/spawnSubagentTool.tsno production surface mapped
  • apps/server/src/mastra/tools/tool-names.tsno production surface mapped
  • apps/server/src/mastra/utils/__tests__/chat-history-backfill.test.tsno production surface mapped
  • apps/server/src/mastra/utils/__tests__/chat-message-persistence.test.tsno production surface mapped
  • apps/server/src/mastra/utils/__tests__/web-citations.test.tsno production surface mapped
  • apps/server/src/mastra/utils/chat-history-backfill.tsno production surface mapped
  • apps/server/src/mastra/utils/chat-message-persistence.tsno production surface mapped
  • apps/server/src/mastra/utils/context-items/grid-brief.test.tsno production surface mapped
  • apps/server/src/mastra/utils/context-items/grid-brief.tsno production surface mapped
  • apps/server/src/mastra/utils/context-items/hydrate.tsno production surface mapped
  • apps/server/src/mastra/utils/context-items/persist.tsno production surface mapped
  • apps/server/src/mastra/utils/execution/execute-analyzer.tsno production surface mapped
  • apps/server/src/mastra/utils/web-citations.tsno production surface mapped
  • apps/server/src/mastra/workflows/chat/chat-workflow.tsno production surface mapped
  • apps/server/src/mastra/workflows/chat/harness/legacy-tool-name-map.tsno production surface mapped
  • apps/server/src/mastra/workflows/chat/harness/mcp-server.tsno production surface mapped
  • apps/server/src/mastra/workflows/chat/harness/request-context.tsno production surface mapped
  • apps/server/src/scripts/chat-headless.e2e.test.tsno production surface mapped
  • apps/server/src/scripts/zoom-manifest.tsno production surface mapped
  • apps/server/src/services/agenda/__tests__/agenda-markdown.test.tsno production surface mapped
  • apps/server/src/services/agenda/agenda-markdown.tsno production surface mapped
  • apps/server/src/services/agent-memory/memory-paths.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/agent-create.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/agent-header.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/agent-namespace-org.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/agent-namespaces.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/agent-rename.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/default-file.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/__tests__/outputs-scoped.test.tsno production surface mapped
  • apps/server/src/services/agent-workspace/agent-create.tsno production surface mapped
  • apps/server/src/services/agent-workspace/agent-header.tsno production surface mapped
  • apps/server/src/services/agent-workspace/agent-namespaces.tsno production surface mapped
  • apps/server/src/services/agent-workspace/agent-read.tsno production surface mapped
  • apps/server/src/services/agent-workspace/agent-rename.tsno production surface mapped
  • apps/server/src/services/agent-workspace/default-file.tsno production surface mapped
  • apps/server/src/services/agent-workspace/outputs.tsno production surface mapped
  • apps/server/src/services/agent-workspace/types.tsno production surface mapped
  • apps/server/src/services/aop/__tests__/agent-doc-convention.test.tsno production surface mapped
  • apps/server/src/services/aop/__tests__/subagent-frontmatter.test.tsno production surface mapped
  • apps/server/src/services/aop/agent-doc-convention.tsno production surface mapped
  • apps/server/src/services/aop/aop-agents.tsno production surface mapped
  • apps/server/src/services/aop/automations.tsno production surface mapped
  • apps/server/src/services/aop/subagent-frontmatter.tsno production surface mapped
  • apps/server/src/services/crm/events.tsno production surface mapped
  • apps/server/src/services/document-saving/markdown.tsno production surface mapped
  • apps/server/src/services/documents/board/__tests__/board-name-dedupe.test.tsno production surface mapped
  • apps/server/src/services/documents/board/board-ops.tsno production surface mapped
  • apps/server/src/services/documents/convention-paths.tsno production surface mapped
  • apps/server/src/services/documents/doc-type-registry.tsno production surface mapped
  • apps/server/src/services/documents/table/__tests__/table-bindings.test.tsno production surface mapped
  • apps/server/src/services/documents/table/__tests__/table-list-bindings.test.tsno production surface mapped
  • apps/server/src/services/documents/table/table-bindable-fields.tsno production surface mapped
  • apps/server/src/services/documents/table/table-bindings.tsno production surface mapped
  • apps/server/src/services/documents/table/table-source-queries.tsno production surface mapped
  • apps/server/src/services/documents/table/table-types.tsno production surface mapped
  • apps/server/src/services/file-system/index.tsno production surface mapped
  • apps/server/src/services/integrations/conferencing/zoom-oauth-driver.tsno production surface mapped
  • apps/server/src/services/playbook/agent-defaults/daily-agenda.tsno production surface mapped
  • apps/server/src/services/playbook/agent-defaults/index.tsno production surface mapped
  • apps/server/src/services/playbook/author-subagent.tsno production surface mapped
  • apps/server/src/services/playbook/reference-resolver.tsno production surface mapped
  • apps/server/src/trpc/routes/__tests__/agent-router-auth.test.tsno production surface mapped
  • apps/server/src/trpc/routes/__tests__/files-restore-node.test.tsno production surface mapped
  • apps/server/src/trpc/routes/agent.tsno production surface mapped
  • apps/server/src/trpc/routes/aop.tsno production surface mapped
  • apps/server/src/trpc/routes/boards.tsno production surface mapped
  • apps/server/src/trpc/routes/files.tsno production surface mapped