Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion apps/api/src/handlers/mcp/__tests__/gbrain.test.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion apps/api/src/handlers/mcp/gbrain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import { createMcpProxy, McpProxyError } from './proxy-utils';
* - `recall` leads with hot-memory facts saved via `remember`, which this
* deployment never writes. Its page arm duplicates `search`, so exposing it
* only offers a worse `search` with a permanently empty half.
* - `entity` reads person/company/project cards, which nothing creates.
* - `context_pack` and `delta` serve long-lived agents with standing entities
* and heartbeats. Roomote's agents are per-task and start cold.
*
Expand All @@ -33,6 +32,9 @@ export const GBRAIN_READ_TOOL_NAMES = [
// -token path with no expansion call.
'query',
'search',
// Exact, zero-LLM lookup for canonical person cards populated from Roomote
// member identities. Prefer this over broad search for a known person.
'entity',
// Reason across pages. Expensive and slow, but bounded in tokens, which is
// the only reason to prefer it over reading pages directly.
'synthesize',
Expand Down
252 changes: 251 additions & 1 deletion apps/bullmq/src/scheduled-jobs/__tests__/brain-collectors.test.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading