Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
49 of your 75 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

dust-tt/dust

https://github.com/dust-tt/dust · scanned 2026-06-05 15:16 UTC (5 days, 1 hour ago) · 10 languages

3007 raw signals (69 security + 2938 graph) 11/13 scanners ran 30th percentile · Typescript · medium (20-100K LoC) System graph score 60 (higher by 3)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 1 hour ago · v2 · 1500 actionable findings from 2 signal sources. 38 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 20.0 0.20 4.00
documentation_score 42.0 0.15 6.30
practices_score 69.0 0.15 10.35
code_quality 80.0 0.10 8.00
Overall 1.00 62.6
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C+ (63/100). Dimensions: security 100, maintainability 60. 69 findings (8 security). 57,469 lines analyzed.

Showing 853 of 1500 actionable findings. 1538 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks quality Quality conf 0.80 ✓ Repobility [MINED114] Admin endpoint without auth: POST /connectors/admin: Express route on /admin path (/connectors/admin) with no auth middleware.
Add an auth middleware: app.post('/connectors/admin', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:205
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/claude-code-review.yml:120 CI/CD securityworkflow secretsGitHub Actions
critical System graph security security conf 1.00 Insecure pattern 'private_key_in_repo' in core/src/databases/remote_databases/snowflake/api/auth.rs:160
Found a known-risky pattern (private_key_in_repo). Review and replace if possible.
core/src/databases/remote_databases/snowflake/api/auth.rs:160 Private key in repo
critical System graph security security conf 1.00 Insecure pattern 'private_key_in_repo' in front/components/actions/mcp/create/SnowflakeKeypairCredentialForm.tsx:227
Found a known-risky pattern (private_key_in_repo). Review and replace if possible.
front/components/actions/mcp/create/SnowflakeKeypairCredentialForm.tsx:227 Private key in repo
critical System graph security security conf 1.00 Insecure pattern 'private_key_in_repo' in front/components/data_source/CreateOrUpdateConnectionSnowflakeModal.tsx:445
Found a known-risky pattern (private_key_in_repo). Review and replace if possible.
front/components/data_source/CreateOrUpdateConnectionSnowflakeModal.tsx:445 Private key in repo
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express DELETE /connectors/delete/:connector_id has no auth: Express route DELETE /connectors/delete/:connector_id declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.delete('/connectors/delete/:connector_id', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:107
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express PATCH /connectors/:connector_id/configuration has no auth: Express route PATCH /connectors/:connector_id/configuration declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.patch('/connectors/:connector_id/configuration', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:189
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express PATCH /slack/channels/linked_with_agent has no auth: Express route PATCH /slack/channels/linked_with_agent declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.patch('/slack/channels/linked_with_agent', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:120
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/:connector_id/config/:config_key has no auth: Express route POST /connectors/:connector_id/config/:config_key declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/:connector_id/config/:config_key', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:195
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/:connector_id/permissions has no auth: Express route POST /connectors/:connector_id/permissions declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/:connector_id/permissions', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:115
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/create/:connector_provider has no auth: Express route POST /connectors/create/:connector_provider declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/create/:connector_provider', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:103
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/pause/:connector_id has no auth: Express route POST /connectors/pause/:connector_id declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/pause/:connector_id', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:105
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/sync/:connector_id has no auth: Express route POST /connectors/sync/:connector_id declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/sync/:connector_id', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:110
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/unpause/:connector_id has no auth: Express route POST /connectors/unpause/:connector_id declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/unpause/:connector_id', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:106
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /connectors/update/:connector_id/ has no auth: Express route POST /connectors/update/:connector_id/ declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/connectors/update/:connector_id/', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:104
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhook_secret/microsoft_teams_bot has no auth: Express route POST /webhooks/:webhook_secret/microsoft_teams_bot declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhook_secret/microsoft_teams_bot', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:173
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhook_secret/slack has no auth: Express route POST /webhooks/:webhook_secret/slack declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhook_secret/slack', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:136
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhook_secret/slack_bot has no auth: Express route POST /webhooks/:webhook_secret/slack_bot declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhook_secret/slack_bot', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:145
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhook_secret/slack_bot_interaction has no auth: Express route POST /webhooks/:webhook_secret/slack_bot_interaction declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhook_secret/slack_bot_interaction', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:148
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhook_secret/slack_interaction has no auth: Express route POST /webhooks/:webhook_secret/slack_interaction declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhook_secret/slack_interaction', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:139
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhooks_secret/discord/app has no auth: Express route POST /webhooks/:webhooks_secret/discord/app declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhooks_secret/discord/app', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:167
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhooks_secret/firecrawl has no auth: Express route POST /webhooks/:webhooks_secret/firecrawl declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhooks_secret/firecrawl', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:162
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhooks_secret/github has no auth: Express route POST /webhooks/:webhooks_secret/github declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhooks_secret/github', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:152
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks/:webhooks_secret/notion has no auth: Express route POST /webhooks/:webhooks_secret/notion declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks/:webhooks_secret/notion', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:157
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /webhooks_router_entries/:webhook_secret/:provider/:providerWorkspaceId has no auth: Express route POST /webhooks_router_entries/:webhook_secret/:provider/:providerWorkspaceId declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/webhooks_router_entries/:webhook_secret/:provider/:providerWorkspaceId', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
connectors/src/api_server.ts:178
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED122] package.json dep `@dust-tt/client` pulled from URL/Git: `dependencies.@dust-tt/client` = `file:../sdks/js` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload.
Publish the dependency to npm (or your private registry) and reference it by `^x.y.z`. If that's not possible, lock by commit SHA: `git+https://...#<full-sha>` AND verify the SHA in CI.
3 files, 3 locations
connectors/package.json:1
front/package.json:1
sparkle/playground/package.json:1
high Security checks software Resource exhaustion conf 1.00 [SEC035] Unbounded Resource Allocation — DoS risk: Allocating resources (buffers, recursion stack, large ranges) based on user input without an upper bound. Attackers send `size=10000000` to exhaust memory, or trigger expensive computation. CWE-770/400. Examples: CVE-2023-44487 (HTTP/2 Rapid Reset), countless YAML/XML billion-laughs variants.
Cap user-controlled sizes BEFORE allocation: size = min(int(request.args.get('n', 100)), MAX_SIZE) Set framework-level limits: Flask: app.config['MAX_CONTENT_LENGTH'] = 10 * 1024 * 1024 FastAPI: use middleware to enforce request size Django: DATA_UPLOAD_MAX_MEMORY_SIZE in settings.py …
connectors/src/api_server.ts:154
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${owner.sId}/skills/${skill.sId} (front/lib/swr/skill_configurations.ts:241)
`front/lib/swr/skill_configurations.ts:241` calls `DELETE /api/w/${owner.sId}/skills/${skill.sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/<p>` If this points at an external API, prefix …
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${wId}/sandbox/env-vars/${id} (front-api/routes/w/[wId]/sandbox/env-vars/[id].test.ts:52)
`front-api/routes/w/[wId]/sandbox/env-vars/[id].test.ts:52` calls `DELETE /api/w/${wId}/sandbox/env-vars/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/sandbox/env-vars/<p>` If this points at a…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${wId}/webhook_sources/${webhookSourceId} (front-api/routes/w/[wId]/webhook_sources/[webhookSourceId]/index.test.ts:22)
`front-api/routes/w/[wId]/webhook_sources/[webhookSourceId]/index.test.ts:22` calls `DELETE /api/w/${wId}/webhook_sources/${webhookSourceId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sou…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/assistant/conversations/${cId}/messages/${mId}/reactions (front-api/routes/w/[wId]/assistant/conversations/[cId]/messages/[mId]/reactions/index.test.ts:55)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/messages/[mId]/reactions/index.test.ts:55` calls `DELETE /api/w/${workspace.sId}/assistant/conversations/${cId}/messages/${mId}/reactions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request N…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/mcp/connections/${connectionType}/${cId} (front-api/routes/w/[wId]/mcp/connections/[connectionType]/[cId]/index.test.ts:19)
`front-api/routes/w/[wId]/mcp/connections/[connectionType]/[cId]/index.test.ts:19` calls `DELETE /api/w/${workspace.sId}/mcp/connections/${connectionType}/${cId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/skills/${sId} (front-api/routes/w/[wId]/skills/[sId]/index.test.ts:127)
`front-api/routes/w/[wId]/skills/[sId]/index.test.ts:127` calls `DELETE /api/w/${workspace.sId}/skills/${sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>` If this points at an external …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${globalSpace.sId}/mcp_views/${fakeId} (front-api/routes/w/[wId]/spaces/[spaceId]/mcp_views/index.test.ts:133)
`front-api/routes/w/[wId]/spaces/[spaceId]/mcp_views/index.test.ts:133` calls `DELETE /api/w/${workspace.sId}/spaces/${globalSpace.sId}/mcp_views/${fakeId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${globalSpace.sId}/mcp_views/${serverView.sId} (front-api/routes/w/[wId]/spaces/[spaceId]/mcp_views/index.test.ts:77)
`front-api/routes/w/[wId]/spaces/[spaceId]/mcp_views/index.test.ts:77` calls `DELETE /api/w/${workspace.sId}/spaces/${globalSpace.sId}/mcp_views/${serverView.sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matchin…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${globalSpace.sId}/project_context/files/${file.sId} (front-api/routes/w/[wId]/spaces/[spaceId]/project_context/index.test.ts:60)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_context/index.test.ts:60` calls `DELETE /api/w/${workspace.sId}/spaces/${globalSpace.sId}/project_context/files/${file.sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${project.sId}/project_context/files/${file.sId} (front-api/routes/w/[wId]/spaces/[spaceId]/project_context/index.test.ts:36)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_context/index.test.ts:36` calls `DELETE /api/w/${workspace.sId}/spaces/${project.sId}/project_context/files/${file.sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${regularSpace.sId}/mcp_views/${serverView.sId} (front-api/routes/w/[wId]/spaces/[spaceId]/mcp_views/index.test.ts:113)
`front-api/routes/w/[wId]/spaces/[spaceId]/mcp_views/index.test.ts:113` calls `DELETE /api/w/${workspace.sId}/spaces/${regularSpace.sId}/mcp_views/${serverView.sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for match…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${spaceId}/apps/${aId} (front-api/routes/w/[wId]/spaces/[spaceId]/apps/[aId]/index.test.ts:12)
`front-api/routes/w/[wId]/spaces/[spaceId]/apps/[aId]/index.test.ts:12` calls `DELETE /api/w/${workspace.sId}/spaces/${spaceId}/apps/${aId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces/<p>/a…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/${taskId} (front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/[taskId]/index.test.ts:32)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/[taskId]/index.test.ts:32` calls `DELETE /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/${taskId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matchi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api/w/${workspace.sId}/spaces/${spaceId}/webhook_source_views/${viewId} (front-api/routes/w/[wId]/spaces/[spaceId]/webhook_source_views/index.test.ts:38)
`front-api/routes/w/[wId]/spaces/[spaceId]/webhook_source_views/index.test.ts:38` calls `DELETE /api/w/${workspace.sId}/spaces/${spaceId}/webhook_source_views/${viewId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for m…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE https://${zendeskSubdomain}.zendesk.com/api/v2/webhooks/${webhookId} (front/lib/api/triggers/built-in-webhooks/zendesk/service.ts:186)
`front/lib/api/triggers/built-in-webhooks/zendesk/service.ts:186` calls `DELETE https://${zendeskSubdomain}.zendesk.com/api/v2/webhooks/${webhookId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>.zendesk…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: DELETE https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/webhook (front/lib/api/triggers/built-in-webhooks/jira/jira_client.ts:205)
`front/lib/api/triggers/built-in-webhooks/jira/jira_client.ts:205` calls `DELETE https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/webhook` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.atlassian.c…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api${path} (front-api/middlewares/workspace_auth.test.ts:7)
`front-api/middlewares/workspace_auth.test.ts:7` calls `GET /api${path}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api/<p>` If this points at an external API, prefix it with `https://` so the matcher s…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healthz (front-api/routes/healthz.test.ts:14)
`front-api/routes/healthz.test.ts:14` calls `GET /api/healthz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/healthz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healthz/ready (front-api/routes/healthz.test.ts:27)
`front-api/routes/healthz.test.ts:27` calls `GET /api/healthz/ready` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/healthz/ready` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healthz/ready (front-api/routes/healthz.test.ts:40)
`front-api/routes/healthz.test.ts:40` calls `GET /api/healthz/ready` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/healthz/ready` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healthz/startup (front-api/routes/healthz.test.ts:54)
`front-api/routes/healthz.test.ts:54` calls `GET /api/healthz/startup` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/healthz/startup` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healthz/startup (front-api/routes/healthz.test.ts:68)
`front-api/routes/healthz.test.ts:68` calls `GET /api/healthz/startup` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/healthz/startup` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healthz/startup (front-api/routes/healthz.test.ts:88)
`front-api/routes/healthz.test.ts:88` calls `GET /api/healthz/startup` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/healthz/startup` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/poke/metronome/packages (front-api/routes/poke/metronome/packages.test.ts:18)
`front-api/routes/poke/metronome/packages.test.ts:18` calls `GET /api/poke/metronome/packages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/metronome/packages` If this points at an external API, pref…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/poke/region (front-api/routes/poke/region.test.ts:24)
`front-api/routes/poke/region.test.ts:24` calls `GET /api/poke/region` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/region` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/poke/region (front-api/routes/poke/region.test.ts:37)
`front-api/routes/poke/region.test.ts:37` calls `GET /api/poke/region` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/region` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/poke/region (front-api/routes/poke/region.test.ts:49)
`front-api/routes/poke/region.test.ts:49` calls `GET /api/poke/region` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/region` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/poke/region (front-api/routes/poke/region.test.ts:61)
`front-api/routes/poke/region.test.ts:61` calls `GET /api/poke/region` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/region` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/poke/workspaces?${params.toString()} (front-api/routes/poke/workspaces/index.test.ts:22)
`front-api/routes/poke/workspaces/index.test.ts:22` calls `GET /api/poke/workspaces?${params.toString()}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/workspaces` If this points at an external API, p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/share/frame/${token} (front-api/routes/share/frame/[token].test.ts:42)
`front-api/routes/share/frame/[token].test.ts:42` calls `GET /api/share/frame/${token}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/share/frame/<p>` If this points at an external API, prefix it with `htt…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/sse/v1/w/${workspaceId}/assistant/conversations/${conversationId}/events${query} (front-api/routes/sse/v1/w/[wId]/assistant/conversations/[cId]/events.test.ts:59)
`front-api/routes/sse/v1/w/[wId]/assistant/conversations/[cId]/events.test.ts:59` calls `GET /api/sse/v1/w/${workspaceId}/assistant/conversations/${conversationId}/events${query}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/sse/v1/w/${workspaceId}/assistant/conversations/${conversationId}/messages/${messageId}/events (front-api/routes/sse/v1/w/[wId]/assistant/conversations/[cId]/messages/[mId]/events.test.ts:71)
`front-api/routes/sse/v1/w/[wId]/assistant/conversations/[cId]/messages/[mId]/events.test.ts:71` calls `GET /api/sse/v1/w/${workspaceId}/assistant/conversations/${conversationId}/messages/${messageId}/events` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: he…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/sse/v1/w/${workspaceId}/mcp/requests${query} (front-api/routes/sse/v1/w/[wId]/mcp/requests.test.ts:21)
`front-api/routes/sse/v1/w/[wId]/mcp/requests.test.ts:21` calls `GET /api/sse/v1/w/${workspaceId}/mcp/requests${query}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/sse/v1/w/<p>/mcp/requests/<p>` If this …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/sse/w/${workspaceId}/mcp/requests${query} (front-api/routes/sse/w/[wId]/mcp/requests.test.ts:21)
`front-api/routes/sse/w/[wId]/mcp/requests.test.ts:21` calls `GET /api/sse/w/${workspaceId}/mcp/requests${query}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/sse/w/<p>/mcp/requests/<p>` If this points at…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/user (front-api/routes/user/index.test.ts:8)
`front-api/routes/user/index.test.ts:8` calls `GET /api/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/user` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/public/frames/${token} (front-api/routes/v1/public/frames/[token]/index.test.ts:78)
`front-api/routes/v1/public/frames/[token]/index.test.ts:78` calls `GET /api/v1/public/frames/${token}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/public/frames/<p>` If this points at an external API…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/viz/content (front-api/routes/v1/viz/content.test.ts:27)
`front-api/routes/v1/viz/content.test.ts:27` calls `GET /api/v1/viz/content` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/viz/content` If this points at an external API, prefix it with `https://` so th…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/assistant/conversations/${cId} (front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/index.test.ts:37)
`front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/index.test.ts:37` calls `GET /api/v1/w/${workspace.sId}/assistant/conversations/${cId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/ass…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/assistant/conversations/${cId}/files/${encoded} (front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/files/[...rel].test.ts:43)
`front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/files/[...rel].test.ts:43` calls `GET /api/v1/w/${workspace.sId}/assistant/conversations/${cId}/files/${encoded}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used fo…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/assistant/mentions/parse (front-api/routes/v1/w/[wId]/assistant/mentions/parse.test.ts:43)
`front-api/routes/v1/w/[wId]/assistant/mentions/parse.test.ts:43` calls `GET /api/v1/w/${workspace.sId}/assistant/mentions/parse` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/assistant/mentions/p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/assistant/mentions/suggestions?${params.toString()} (front-api/routes/v1/w/[wId]/assistant/mentions/suggestions.test.ts:73)
`front-api/routes/v1/w/[wId]/assistant/mentions/suggestions.test.ts:73` calls `GET /api/v1/w/${workspace.sId}/assistant/mentions/suggestions?${params.toString()}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/data_sources (front-api/routes/v1/w/[wId]/data_sources/index.test.ts:10)
`front-api/routes/v1/w/[wId]/data_sources/index.test.ts:10` calls `GET /api/v1/w/${workspace.sId}/data_sources` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/data_sources` If this points at an ext…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/feature_flags (front-api/routes/v1/w/[wId]/feature_flags.test.ts:9)
`front-api/routes/v1/w/[wId]/feature_flags.test.ts:9` calls `GET /api/v1/w/${workspace.sId}/feature_flags` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/feature_flags` If this points at an externa…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/sandbox/actions (front-api/routes/v1/w/[wId]/sandbox/actions/index.test.ts:6)
`front-api/routes/v1/w/[wId]/sandbox/actions/index.test.ts:6` calls `GET /api/v1/w/${workspace.sId}/sandbox/actions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/sandbox/actions` If this points a…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/skills${params} (front-api/routes/v1/w/[wId]/skills/index.test.ts:15)
`front-api/routes/v1/w/[wId]/skills/index.test.ts:15` calls `GET /api/v1/w/${workspace.sId}/skills${params}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/skills/<p>` If this points at an external…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces (front-api/routes/v1/w/[wId]/spaces/index.test.ts:12)
`front-api/routes/v1/w/[wId]/spaces/index.test.ts:12` calls `GET /api/v1/w/${workspace.sId}/spaces` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/spaces` If this points at an external API, prefix …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces (front-api/routes/v1/w/[wId]/spaces/index.test.ts:35)
`front-api/routes/v1/w/[wId]/spaces/index.test.ts:35` calls `GET /api/v1/w/${workspace.sId}/spaces` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/spaces` If this points at an external API, prefix …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces/${spaceId}/conversation_ids (front-api/routes/v1/w/[wId]/spaces/[spaceId]/conversation_ids.test.ts:17)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/conversation_ids.test.ts:17` calls `GET /api/v1/w/${workspace.sId}/spaces/${spaceId}/conversation_ids` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/s…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces/${spaceId}/project_files${query} (front-api/routes/v1/w/[wId]/spaces/[spaceId]/project_files/index.test.ts:26)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/project_files/index.test.ts:26` calls `GET /api/v1/w/${workspace.sId}/spaces/${spaceId}/project_files${query}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces/${spaceId}/project_metadata (front-api/routes/v1/w/[wId]/spaces/[spaceId]/project_metadata.test.ts:15)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/project_metadata.test.ts:15` calls `GET /api/v1/w/${workspace.sId}/spaces/${spaceId}/project_metadata` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/s…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces/${spaceSId}/conversations${qs} (front-api/routes/v1/w/[wId]/spaces/[spaceId]/conversations/index.test.ts:26)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/conversations/index.test.ts:26` calls `GET /api/v1/w/${workspace.sId}/spaces/${spaceSId}/conversations${qs}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces/${spaceSId}/data_sources (front-api/routes/v1/w/[wId]/spaces/[spaceId]/data_sources/index.test.ts:14)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/data_sources/index.test.ts:14` calls `GET /api/v1/w/${workspace.sId}/spaces/${spaceSId}/data_sources` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/sp…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/spaces/${spaceSId}/mcp_server_views (front-api/routes/v1/w/[wId]/spaces/[spaceId]/mcp_server_views/index.test.ts:15)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/mcp_server_views/index.test.ts:15` calls `GET /api/v1/w/${workspace.sId}/spaces/${spaceSId}/mcp_server_views` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/w/${workspace.sId}/triggers/hooks/whs_whatever/any-secret (front-api/routes/v1/w/[wId]/triggers/hooks/[webhookSourceId]/[webhookSourceUrlSecret]/index.test.ts:171)
`front-api/routes/v1/w/[wId]/triggers/hooks/[webhookSourceId]/[webhookSourceUrlSecret]/index.test.ts:171` calls `GET /api/v1/w/${workspace.sId}/triggers/hooks/whs_whatever/any-secret` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${wId}/sandbox/egress-policy (front-api/routes/w/[wId]/sandbox/egress-policy.test.ts:53)
`front-api/routes/w/[wId]/sandbox/egress-policy.test.ts:53` calls `GET /api/w/${wId}/sandbox/egress-policy` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/sandbox/egress-policy` If this points at an e…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${wId}/sandbox/env-vars (front-api/routes/w/[wId]/sandbox/env-vars/index.test.ts:42)
`front-api/routes/w/[wId]/sandbox/env-vars/index.test.ts:42` calls `GET /api/w/${wId}/sandbox/env-vars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/sandbox/env-vars` If this points at an external A…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${wId}/webhook_sources (front-api/routes/w/[wId]/webhook_sources/index.test.ts:14)
`front-api/routes/w/[wId]/webhook_sources/index.test.ts:14` calls `GET /api/w/${wId}/webhook_sources` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sources` If this points at an external API,…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${wId}/webhook_sources/views${search} (front-api/routes/w/[wId]/webhook_sources/views/index.test.ts:19)
`front-api/routes/w/[wId]/webhook_sources/views/index.test.ts:19` calls `GET /api/w/${wId}/webhook_sources/views${search}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sources/views/<p>` If …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${wId}/webhook_sources/views/${viewId} (front-api/routes/w/[wId]/webhook_sources/views/[viewId]/index.test.ts:21)
`front-api/routes/w/[wId]/webhook_sources/views/[viewId]/index.test.ts:21` calls `GET /api/w/${wId}/webhook_sources/views/${viewId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sources/view…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/credentials (front-api/routes/w/[wId]/credentials/index.test.ts:166)
`front-api/routes/w/[wId]/credentials/index.test.ts:166` calls `GET /api/w/${workspace.sId}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/credentials` If this points at an external API, …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/credentials/check_bigquery_locations (front-api/routes/w/[wId]/credentials/check_bigquery_locations.test.ts:175)
`front-api/routes/w/[wId]/credentials/check_bigquery_locations.test.ts:175` calls `GET /api/w/${workspace.sId}/credentials/check_bigquery_locations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/cred…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/credentials/slack_is_legacy?credentialId=cred_1 (front-api/routes/w/[wId]/credentials/slack_is_legacy.test.ts:193)
`front-api/routes/w/[wId]/credentials/slack_is_legacy.test.ts:193` calls `GET /api/w/${workspace.sId}/credentials/slack_is_legacy?credentialId=cred_1` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/cr…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/data-classification-labels (front-api/routes/w/[wId]/data-classification-labels.test.ts:280)
`front-api/routes/w/[wId]/data-classification-labels.test.ts:280` calls `GET /api/w/${workspace.sId}/data-classification-labels` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/data-classification-labe…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/google_drive/search_for_authorization (front-api/routes/w/[wId]/google_drive/search_for_authorization.test.ts:128)
`front-api/routes/w/[wId]/google_drive/search_for_authorization.test.ts:128` calls `GET /api/w/${workspace.sId}/google_drive/search_for_authorization` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/go…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/mcp (front-api/routes/w/[wId]/mcp/index.test.ts:39)
`front-api/routes/w/[wId]/mcp/index.test.ts:39` calls `GET /api/w/${workspace.sId}/mcp` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/mcp` If this points at an external API, prefix it with `https://`…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/skills/${sId} (front-api/routes/w/[wId]/skills/[sId]/index.test.ts:109)
`front-api/routes/w/[wId]/skills/[sId]/index.test.ts:109` calls `GET /api/w/${workspace.sId}/skills/${sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>` If this points at an external API…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/skills/${sId}/editors (front-api/routes/w/[wId]/skills/[sId]/editors.test.ts:36)
`front-api/routes/w/[wId]/skills/[sId]/editors.test.ts:36` calls `GET /api/w/${workspace.sId}/skills/${sId}/editors` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>/editors` If this points a…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/w/${workspace.sId}/skills/reinforcement_spend (front-api/routes/w/[wId]/skills/reinforcement_spend.test.ts:15)
`front-api/routes/w/[wId]/skills/reinforcement_spend.test.ts:15` calls `GET /api/w/${workspace.sId}/skills/reinforcement_spend` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/reinforcement_spen…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /subtle1/decide/?v=3&ip=1 (front-api/routes/subtle1.test.ts:21)
`front-api/routes/subtle1.test.ts:21` calls `GET /subtle1/decide/?v=3&ip=1` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/subtle1/decide` If this points at an external API, prefix it with `https://` so the…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /subtle1/static/array.js (front-api/routes/subtle1.test.ts:31)
`front-api/routes/subtle1.test.ts:31` calls `GET /subtle1/static/array.js` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/subtle1/static/array.js` If this points at an external API, prefix it with `https://…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/credits/members-usage (front-api/middlewares/workspace_auth.test.ts:85)
`front-api/middlewares/workspace_auth.test.ts:85` calls `GET /w/${workspace.sId}/credits/members-usage` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/credits/members-usage` If this points at an exter…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/feature-flags (front-api/middlewares/workspace_auth.test.ts:42)
`front-api/middlewares/workspace_auth.test.ts:42` calls `GET /w/${workspace.sId}/feature-flags` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/feature-flags` If this points at an external API, prefix …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/groups (front-api/middlewares/workspace_auth.test.ts:16)
`front-api/middlewares/workspace_auth.test.ts:16` calls `GET /w/${workspace.sId}/groups` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/groups` If this points at an external API, prefix it with `https…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/groups (front-api/middlewares/workspace_auth.test.ts:31)
`front-api/middlewares/workspace_auth.test.ts:31` calls `GET /w/${workspace.sId}/groups` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/groups` If this points at an external API, prefix it with `https…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/subscriptions/pricing (front-api/middlewares/workspace_auth.test.ts:67)
`front-api/middlewares/workspace_auth.test.ts:67` calls `GET /w/${workspace.sId}/subscriptions/pricing` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/subscriptions/pricing` If this points at an exter…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/subscriptions/status (front-api/middlewares/workspace_auth.test.ts:109)
`front-api/middlewares/workspace_auth.test.ts:109` calls `GET /w/${workspace.sId}/subscriptions/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/subscriptions/status` If this points at an extern…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /w/${workspace.sId}/subscriptions/status (front-api/middlewares/workspace_auth.test.ts:52)
`front-api/middlewares/workspace_auth.test.ts:52` calls `GET /w/${workspace.sId}/subscriptions/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/subscriptions/status` If this points at an externa…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.atlassian.com/oauth/token/accessible-resources (front/lib/api/triggers/built-in-webhooks/jira/jira_client.ts:23)
`front/lib/api/triggers/built-in-webhooks/jira/jira_client.ts:23` calls `GET https://api.atlassian.com/oauth/token/accessible-resources` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.atlassian.com/oauth/…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.deepseek.com/models (front-api/routes/w/[wId]/providers/[pId]/check.ts:276)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:276` calls `GET https://api.deepseek.com/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.deepseek.com/models` If this points at an external API, p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.deepseek.com/models (front/pages/api/w/[wId]/providers/[pId]/check.ts:281)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:281` calls `GET https://api.deepseek.com/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.deepseek.com/models` If this points at an external API, pr…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.firecrawl.dev/v1/scrape/${scrapeId} (connectors/src/connectors/webcrawler/temporal/activities.ts:514)
`connectors/src/connectors/webcrawler/temporal/activities.ts:514` calls `GET https://api.firecrawl.dev/v1/scrape/${scrapeId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.firecrawl.dev/v1/scrape/<p>` If…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.gong.io/v2/calls?fromDateTime=${fromDateTime} (front/temporal/labs/transcripts/utils/gong.ts:113)
`front/temporal/labs/transcripts/utils/gong.ts:113` calls `GET https://api.gong.io/v2/calls?fromDateTime=${fromDateTime}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.gong.io/v2/calls` If this points at…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.hubapi.com/crm/v4/associations/${fromObjectType}/${toObjectType}/labels (front/lib/api/actions/servers/hubspot/client.ts:618)
`front/lib/api/actions/servers/hubspot/client.ts:618` calls `GET https://api.hubapi.com/crm/v4/associations/${fromObjectType}/${toObjectType}/labels` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hubapi.…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.hubapi.com/marketing/v3/forms/${formId} (front/scripts/generate-hubspot-forms.ts:239)
`front/scripts/generate-hubspot-forms.ts:239` calls `GET https://api.hubapi.com/marketing/v3/forms/${formId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hubapi.com/marketing/v3/forms/<p>` If this poin…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.hubapi.com/oauth/v1/access-tokens/${accessToken} (front/lib/api/actions/servers/hubspot/client.ts:1728)
`front/lib/api/actions/servers/hubspot/client.ts:1728` calls `GET https://api.hubapi.com/oauth/v1/access-tokens/${accessToken}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hubapi.com/oauth/v1/access-to…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.intercom.io/${path} (connectors/src/connectors/intercom/lib/intercom_api.ts:51)
`connectors/src/connectors/intercom/lib/intercom_api.ts:51` calls `GET https://api.intercom.io/${path}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.intercom.io/<p>` If this points at an external API, p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.mistral.ai/v1/models (front-api/routes/w/[wId]/providers/[pId]/check.ts:143)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:143` calls `GET https://api.mistral.ai/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.mistral.ai/v1/models` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.mistral.ai/v1/models (front-api/routes/w/[wId]/providers/[pId]/models.ts:203)
`front-api/routes/w/[wId]/providers/[pId]/models.ts:203` calls `GET https://api.mistral.ai/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.mistral.ai/v1/models` If this points at an external API…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.mistral.ai/v1/models (front/pages/api/w/[wId]/providers/[pId]/check.ts:146)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:146` calls `GET https://api.mistral.ai/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.mistral.ai/v1/models` If this points at an external API, …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.mistral.ai/v1/models (front/pages/api/w/[wId]/providers/[pId]/models.ts:222)
`front/pages/api/w/[wId]/providers/[pId]/models.ts:222` calls `GET https://api.mistral.ai/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.mistral.ai/v1/models` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.openai.com/v1/models (front-api/routes/w/[wId]/providers/[pId]/check.ts:37)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:37` calls `GET https://api.openai.com/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.openai.com/v1/models` If this points at an external API, …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.openai.com/v1/models (front-api/routes/w/[wId]/providers/[pId]/models.ts:68)
`front-api/routes/w/[wId]/providers/[pId]/models.ts:68` calls `GET https://api.openai.com/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.openai.com/v1/models` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.openai.com/v1/models (front/pages/api/w/[wId]/providers/[pId]/check.ts:46)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:46` calls `GET https://api.openai.com/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.openai.com/v1/models` If this points at an external API, p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.openai.com/v1/models (front/pages/api/w/[wId]/providers/[pId]/models.ts:67)
`front/pages/api/w/[wId]/providers/[pId]/models.ts:67` calls `GET https://api.openai.com/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.openai.com/v1/models` If this points at an external API, …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.statuspage.io/v1/pages/${pageId}/incidents/unresolved (front/lib/api/status/status_page.ts:38)
`front/lib/api/status/status_page.ts:38` calls `GET https://api.statuspage.io/v1/pages/${pageId}/incidents/unresolved` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.statuspage.io/v1/pages/<p>/incidents/u…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.together.xyz/v1/models (front-api/routes/w/[wId]/providers/[pId]/check.ts:260)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:260` calls `GET https://api.together.xyz/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.together.xyz/v1/models` If this points at an external …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.together.xyz/v1/models (front/pages/api/w/[wId]/providers/[pId]/check.ts:264)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:264` calls `GET https://api.together.xyz/v1/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.together.xyz/v1/models` If this points at an external A…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://bench-registry/list (x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:72)
`x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:72` calls `GET https://bench-registry/list` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/bench-registry/list` If this points at an external API, pr…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://dust.tt/ (cli/dust-sandbox/e2e/case.ts:4)
`cli/dust-sandbox/e2e/case.ts:4` calls `GET https://dust.tt/` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/dust.tt` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://gmail.googleapis.com${endpoint} (front/lib/api/actions/servers/gmail/helpers.ts:264)
`front/lib/api/actions/servers/gmail/helpers.ts:264` calls `GET https://gmail.googleapis.com${endpoint}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/gmail.googleapis.com/<p>` If this points at an external …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://graph.microsoft.com/v1.0${endpoint} (front/lib/api/actions/servers/outlook/outlook_api_helper.ts:174)
`front/lib/api/actions/servers/outlook/outlook_api_helper.ts:174` calls `GET https://graph.microsoft.com/v1.0${endpoint}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/graph.microsoft.com/v1.0/<p>` If this p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://graph.microsoft.com/v1.0${endpoint} (front/lib/api/actions/servers/outlook/tools/mail.ts:43)
`front/lib/api/actions/servers/outlook/tools/mail.ts:43` calls `GET https://graph.microsoft.com/v1.0${endpoint}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/graph.microsoft.com/v1.0/<p>` If this points at …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://serpapi.com/search?engine=google&q=Coffee&api_key=${config.api_key} (front-api/routes/w/[wId]/providers/[pId]/check.ts:169)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:169` calls `GET https://serpapi.com/search?engine=google&q=Coffee&api_key=${config.api_key}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/serpapi.com/searc…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://serpapi.com/search?engine=google&q=Coffee&api_key=${config.api_key} (front/pages/api/w/[wId]/providers/[pId]/check.ts:170)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:170` calls `GET https://serpapi.com/search?engine=google&q=Coffee&api_key=${config.api_key}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/serpapi.com/search…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://slack.com/api/assistant.search.context?${params.toString()} (front/lib/api/actions/servers/slack_personal/tools/index.ts:142)
`front/lib/api/actions/servers/slack_personal/tools/index.ts:142` calls `GET https://slack.com/api/assistant.search.context?${params.toString()}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/slack.com/api/a…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://slack.com/api/assistant.search.info (front/lib/api/actions/servers/slack_personal/tools/index.ts:89)
`front/lib/api/actions/servers/slack_personal/tools/index.ts:89` calls `GET https://slack.com/api/assistant.search.info` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/slack.com/api/assistant.search.info` If …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: HEAD /api/w/${workspace.sId}/files/path/${segments} (front-api/routes/w/[wId]/files/path/[...canonicalPath].test.ts:256)
`front-api/routes/w/[wId]/files/path/[...canonicalPath].test.ts:256` calls `HEAD /api/w/${workspace.sId}/files/path/${segments}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/files/path/<p>` If this …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: HEAD /api/w/${workspace.sId}/files/path/${segments} (front-api/routes/w/[wId]/files/path/[...canonicalPath].test.ts:275)
`front-api/routes/w/[wId]/files/path/[...canonicalPath].test.ts:275` calls `HEAD /api/w/${workspace.sId}/files/path/${segments}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/files/path/<p>` If this …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/poke/workspaces/${workspace.sId}/invitations/${invitationSId} (front-api/routes/poke/workspaces/[wId]/invitations/[iId]/index.test.ts:17)
`front-api/routes/poke/workspaces/[wId]/invitations/[iId]/index.test.ts:17` calls `PATCH /api/poke/workspaces/${workspace.sId}/invitations/${invitationSId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/po…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/user (front-api/routes/user/index.test.ts:12)
`front-api/routes/user/index.test.ts:12` calls `PATCH /api/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/user` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/v1/w/${workspace.sId}/assistant/agent_configurations/${agentId} (front-api/routes/v1/w/[wId]/assistant/agent_configurations/[sId]/index.test.ts:35)
`front-api/routes/v1/w/[wId]/assistant/agent_configurations/[sId]/index.test.ts:35` calls `PATCH /api/v1/w/${workspace.sId}/assistant/agent_configurations/${agentId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${owner.sId}/skills/${skillId}/reinforcement (front/lib/swr/skill_configurations.ts:295)
`front/lib/swr/skill_configurations.ts:295` calls `PATCH /api/w/${owner.sId}/skills/${skillId}/reinforcement` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/<p>/reinforcement` If this points at…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${wId}/sandbox/env-vars/${id} (front-api/routes/w/[wId]/sandbox/env-vars/[id].test.ts:44)
`front-api/routes/w/[wId]/sandbox/env-vars/[id].test.ts:44` calls `PATCH /api/w/${wId}/sandbox/env-vars/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/sandbox/env-vars/<p>` If this points at an…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${wId}/webhook_sources/${webhookSourceId} (front-api/routes/w/[wId]/webhook_sources/[webhookSourceId]/index.test.ts:28)
`front-api/routes/w/[wId]/webhook_sources/[webhookSourceId]/index.test.ts:28` calls `PATCH /api/w/${wId}/webhook_sources/${webhookSourceId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sour…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${wId}/webhook_sources/views/${viewId} (front-api/routes/w/[wId]/webhook_sources/views/[viewId]/index.test.ts:25)
`front-api/routes/w/[wId]/webhook_sources/views/[viewId]/index.test.ts:25` calls `PATCH /api/w/${wId}/webhook_sources/views/${viewId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sources/vi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/assistant/agent_configurations/${aId} (front-api/routes/w/[wId]/assistant/agent_configurations/[aId]/index.test.ts:18)
`front-api/routes/w/[wId]/assistant/agent_configurations/[aId]/index.test.ts:18` calls `PATCH /api/w/${workspace.sId}/assistant/agent_configurations/${aId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/assistant/agent_configurations/${aId}/editors (front-api/routes/w/[wId]/assistant/agent_configurations/[aId]/editors.test.ts:60)
`front-api/routes/w/[wId]/assistant/agent_configurations/[aId]/editors.test.ts:60` calls `PATCH /api/w/${workspace.sId}/assistant/agent_configurations/${aId}/editors` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/assistant/agent_configurations/${aId}/suggestions (front-api/routes/w/[wId]/assistant/agent_configurations/[aId]/suggestions.test.ts:46)
`front-api/routes/w/[wId]/assistant/agent_configurations/[aId]/suggestions.test.ts:46` calls `PATCH /api/w/${workspace.sId}/assistant/agent_configurations/${aId}/suggestions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/assistant/conversations/${cId} (front-api/routes/w/[wId]/assistant/conversations/[cId]/index.test.ts:60)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/index.test.ts:60` calls `PATCH /api/w/${workspace.sId}/assistant/conversations/${cId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/assistant/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/assistant/skills/${sId}/suggestions (front-api/routes/w/[wId]/assistant/skills/[sId]/suggestions.test.ts:39)
`front-api/routes/w/[wId]/assistant/skills/[sId]/suggestions.test.ts:39` calls `PATCH /api/w/${workspace.sId}/assistant/skills/${sId}/suggestions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/assist…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/skills/${sId} (front-api/routes/w/[wId]/skills/[sId]/index.test.ts:119)
`front-api/routes/w/[wId]/skills/[sId]/index.test.ts:119` calls `PATCH /api/w/${workspace.sId}/skills/${sId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>` If this points at an external A…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/skills/${sId}/editors (front-api/routes/w/[wId]/skills/[sId]/editors.test.ts:28)
`front-api/routes/w/[wId]/skills/[sId]/editors.test.ts:28` calls `PATCH /api/w/${workspace.sId}/skills/${sId}/editors` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>/editors` If this points…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/skills/${sId}/reinforcement (front-api/routes/w/[wId]/skills/[sId]/reinforcement.test.ts:82)
`front-api/routes/w/[wId]/skills/[sId]/reinforcement.test.ts:82` calls `PATCH /api/w/${workspace.sId}/skills/${sId}/reinforcement` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>/reinforceme…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/spaces/${spaceId}/members (front-api/routes/w/[wId]/spaces/[spaceId]/members.test.ts:12)
`front-api/routes/w/[wId]/spaces/[spaceId]/members.test.ts:12` calls `PATCH /api/w/${workspace.sId}/spaces/${spaceId}/members` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces/<p>/members` If thi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/spaces/${spaceId}/project_metadata (front-api/routes/w/[wId]/spaces/[spaceId]/project_metadata.test.ts:37)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_metadata.test.ts:37` calls `PATCH /api/w/${workspace.sId}/spaces/${spaceId}/project_metadata` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces/<…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/${taskId} (front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/[taskId]/index.test.ts:17)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/[taskId]/index.test.ts:17` calls `PATCH /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/${taskId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matchin…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/poke/stripe/customers/currency (front-api/routes/poke/stripe/customers/currency.test.ts:18)
`front-api/routes/poke/stripe/customers/currency.test.ts:18` calls `POST /api/poke/stripe/customers/currency` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/stripe/customers/currency` If this points at…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/poke/templates/pull (front-api/routes/poke/templates/pull.test.ts:51)
`front-api/routes/poke/templates/pull.test.ts:51` calls `POST /api/poke/templates/pull` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/templates/pull` If this points at an external API, prefix it with …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/poke/workspaces/${workspaceId}/switch_contract (front-api/routes/poke/workspaces/[wId]/switch_contract.test.ts:176)
`front-api/routes/poke/workspaces/[wId]/switch_contract.test.ts:176` calls `POST /api/poke/workspaces/${workspaceId}/switch_contract` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/poke/workspaces/<p>/switc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/research (x/henry/research-god/web/src/components/ResearchInterface.tsx:909)
`x/henry/research-god/web/src/components/ResearchInterface.tsx:909` calls `POST /api/research` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/research` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/research/clarify (x/henry/research-god/web/src/components/ResearchInterface.tsx:1326)
`x/henry/research-god/web/src/components/ResearchInterface.tsx:1326` calls `POST /api/research/clarify` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/research/clarify` If this points at an external API, prefix it w…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/public/frames/${token}/verify-code (front-api/routes/v1/public/frames/[token]/verify-code.test.ts:60)
`front-api/routes/v1/public/frames/[token]/verify-code.test.ts:60` calls `POST /api/v1/public/frames/${token}/verify-code` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/public/frames/<p>/verify-code` If…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/public/frames/${token}/verify-email (front-api/routes/v1/public/frames/[token]/verify-email.test.ts:56)
`front-api/routes/v1/public/frames/[token]/verify-email.test.ts:56` calls `POST /api/v1/public/frames/${token}/verify-email` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/public/frames/<p>/verify-email`…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/assistant/conversations (front-api/routes/v1/w/[wId]/assistant/conversations/index.test.ts:15)
`front-api/routes/v1/w/[wId]/assistant/conversations/index.test.ts:15` calls `POST /api/v1/w/${workspace.sId}/assistant/conversations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/assistant/conve…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/assistant/conversations/${cId}/tools (front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/tools.test.ts:65)
`front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/tools.test.ts:65` calls `POST /api/v1/w/${workspace.sId}/assistant/conversations/${cId}/tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/assistant/conversations/${conversationId}/messages (front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/messages/index.test.ts:21)
`front-api/routes/v1/w/[wId]/assistant/conversations/[cId]/messages/index.test.ts:21` calls `POST /api/v1/w/${workspace.sId}/assistant/conversations/${conversationId}/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path use…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/data_sources/${dsId}/tables/csv (front-api/routes/v1/w/[wId]/data_sources/[dsId]/tables/csv.test.ts:89)
`front-api/routes/v1/w/[wId]/data_sources/[dsId]/tables/csv.test.ts:89` calls `POST /api/v1/w/${workspace.sId}/data_sources/${dsId}/tables/csv` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/data_s…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/files (front-api/routes/v1/w/[wId]/files/index.test.ts:15)
`front-api/routes/v1/w/[wId]/files/index.test.ts:15` calls `POST /api/v1/w/${workspace.sId}/files` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/v1/w/<p>/files` If this points at an external API, prefix it…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/spaces/${spaceSId}/data_sources/${dsId}/tables/csv (front-api/routes/v1/w/[wId]/spaces/[spaceId]/data_sources/[dsId]/tables/csv.test.ts:90)
`front-api/routes/v1/w/[wId]/spaces/[spaceId]/data_sources/[dsId]/tables/csv.test.ts:90` calls `POST /api/v1/w/${workspace.sId}/spaces/${spaceSId}/data_sources/${dsId}/tables/csv` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/triggers/hooks/${webhookSourceId}/${webhookSourceUrlSecret} (front-api/routes/v1/w/[wId]/triggers/hooks/[webhookSourceId]/[webhookSourceUrlSecret]/index.test.ts:64)
`front-api/routes/v1/w/[wId]/triggers/hooks/[webhookSourceId]/[webhookSourceUrlSecret]/index.test.ts:64` calls `POST /api/v1/w/${workspace.sId}/triggers/hooks/${webhookSourceId}/${webhookSourceUrlSecret}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/w/${workspace.sId}/triggers/hooks/whs_whatever/any-secret (front-api/routes/v1/w/[wId]/triggers/hooks/[webhookSourceId]/[webhookSourceUrlSecret]/index.test.ts:187)
`front-api/routes/v1/w/[wId]/triggers/hooks/[webhookSourceId]/[webhookSourceUrlSecret]/index.test.ts:187` calls `POST /api/v1/w/${workspace.sId}/triggers/hooks/whs_whatever/any-secret` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/assistant/conversations (front/hooks/useCreateConversationWithMessage.ts:120)
`front/hooks/useCreateConversationWithMessage.ts:120` calls `POST /api/w/${owner.sId}/assistant/conversations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/assistant/conversations` If this points at…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/assistant/conversations (front/hooks/useCreateConversationWithMessage.ts:214)
`front/hooks/useCreateConversationWithMessage.ts:214` calls `POST /api/w/${owner.sId}/assistant/conversations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/assistant/conversations` If this points at…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/assistant/conversations/${conversationId}/messages/${messageId}/${ROUTE_FOR_KIND[kind]} (front/hooks/useResolveAuthentication.ts:50)
`front/hooks/useResolveAuthentication.ts:50` calls `POST /api/w/${owner.sId}/assistant/conversations/${conversationId}/messages/${messageId}/${ROUTE_FOR_KIND[kind]}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for match…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/assistant/conversations/${conversationId}/messages/${messageId}/answer-question (front/hooks/useAnswerUserQuestion.ts:32)
`front/hooks/useAnswerUserQuestion.ts:32` calls `POST /api/w/${owner.sId}/assistant/conversations/${conversationId}/messages/${messageId}/answer-question` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/assistant/conversations/${validationRequest.conversationId}/messages/${validationRequest.messageId}/validate-action (front/hooks/useValidateAction.ts:30)
`front/hooks/useValidateAction.ts:30` calls `POST /api/w/${owner.sId}/assistant/conversations/${validationRequest.conversationId}/messages/${validationRequest.messageId}/validate-action` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalize…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/skills/${skill.sId}/restore (front/lib/swr/skill_configurations.ts:347)
`front/lib/swr/skill_configurations.ts:347` calls `POST /api/w/${owner.sId}/skills/${skill.sId}/restore` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/<p>/restore` If this points at an externa…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/skills/detect (front/lib/swr/skill_configurations.ts:453)
`front/lib/swr/skill_configurations.ts:453` calls `POST /api/w/${owner.sId}/skills/detect` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/detect` If this points at an external API, prefix it wi…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/skills/detect/upload (front/lib/swr/skill_configurations.ts:620)
`front/lib/swr/skill_configurations.ts:620` calls `POST /api/w/${owner.sId}/skills/detect/upload` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/detect/upload` If this points at an external API…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/skills/import (front/lib/swr/skill_configurations.ts:546)
`front/lib/swr/skill_configurations.ts:546` calls `POST /api/w/${owner.sId}/skills/import` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/import` If this points at an external API, prefix it wi…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/skills/import/upload (front/lib/swr/skill_configurations.ts:564)
`front/lib/swr/skill_configurations.ts:564` calls `POST /api/w/${owner.sId}/skills/import/upload` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/import/upload` If this points at an external API…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${owner.sId}/skills/similar (front/lib/swr/skill_configurations.ts:185)
`front/lib/swr/skill_configurations.ts:185` calls `POST /api/w/${owner.sId}/skills/similar` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/skills/similar` If this points at an external API, prefix it …
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${wId}/credentials (front-api/routes/w/[wId]/credentials/index.test.ts:43)
`front-api/routes/w/[wId]/credentials/index.test.ts:43` calls `POST /api/w/${wId}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/credentials` If this points at an external API, prefix it …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${wId}/credentials/check_bigquery_locations (front-api/routes/w/[wId]/credentials/check_bigquery_locations.test.ts:24)
`front-api/routes/w/[wId]/credentials/check_bigquery_locations.test.ts:24` calls `POST /api/w/${wId}/credentials/check_bigquery_locations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/credentials/ch…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${wId}/data-classification-labels (front-api/routes/w/[wId]/data-classification-labels.test.ts:74)
`front-api/routes/w/[wId]/data-classification-labels.test.ts:74` calls `POST /api/w/${wId}/data-classification-labels` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/data-classification-labels` If thi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${wId}/google_drive/search_for_authorization (front-api/routes/w/[wId]/google_drive/search_for_authorization.test.ts:107)
`front-api/routes/w/[wId]/google_drive/search_for_authorization.test.ts:107` calls `POST /api/w/${wId}/google_drive/search_for_authorization` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/google_driv…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${wId}/sandbox/env-vars (front-api/routes/w/[wId]/sandbox/env-vars/index.test.ts:46)
`front-api/routes/w/[wId]/sandbox/env-vars/index.test.ts:46` calls `POST /api/w/${wId}/sandbox/env-vars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/sandbox/env-vars` If this points at an external …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${wId}/webhook_sources (front-api/routes/w/[wId]/webhook_sources/index.test.ts:18)
`front-api/routes/w/[wId]/webhook_sources/index.test.ts:18` calls `POST /api/w/${wId}/webhook_sources` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/webhook_sources` If this points at an external API…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/agent_configurations (front-api/routes/w/[wId]/assistant/agent_configurations/index.test.ts:95)
`front-api/routes/w/[wId]/assistant/agent_configurations/index.test.ts:95` calls `POST /api/w/${workspace.sId}/assistant/agent_configurations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/assistant/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/agent_configurations/create-pending (front-api/routes/w/[wId]/assistant/agent_configurations/create-pending.test.ts:7)
`front-api/routes/w/[wId]/assistant/agent_configurations/create-pending.test.ts:7` calls `POST /api/w/${workspace.sId}/assistant/agent_configurations/create-pending` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for match…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/agent_configurations/text_as_cron_rule (front/lib/swr/agent_triggers.ts:276)
`front/lib/swr/agent_triggers.ts:276` calls `POST /api/w/${workspace.sId}/assistant/agent_configurations/text_as_cron_rule` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/assistant/agent_configuration…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/agent_configurations/webhook_filter_generator (front/lib/swr/agent_triggers.ts:320)
`front/lib/swr/agent_triggers.ts:320` calls `POST /api/w/${workspace.sId}/assistant/agent_configurations/webhook_filter_generator` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:fetcher Normalized path used for matching: `/w/<p>/assistant/agent_config…
Dangling fetchHelper:fetcher
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations (front-api/routes/w/[wId]/assistant/conversations/index.test.ts:95)
`front-api/routes/w/[wId]/assistant/conversations/index.test.ts:95` calls `POST /api/w/${workspace.sId}/assistant/conversations` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/assistant/conversations`…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${cId}/branches/${bId}/close (front-api/routes/w/[wId]/assistant/conversations/[cId]/branches/[bId]/close.test.ts:26)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/branches/[bId]/close.test.ts:26` calls `POST /api/w/${workspace.sId}/assistant/conversations/${cId}/branches/${bId}/close` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path u…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${cId}/branches/${bId}/merge (front-api/routes/w/[wId]/assistant/conversations/[cId]/branches/[bId]/merge.test.ts:26)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/branches/[bId]/merge.test.ts:26` calls `POST /api/w/${workspace.sId}/assistant/conversations/${cId}/branches/${bId}/merge` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path u…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${cId}/files/${encoded} (front-api/routes/w/[wId]/assistant/conversations/[cId]/files/[...rel].test.ts:51)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/files/[...rel].test.ts:51` calls `POST /api/w/${workspace.sId}/assistant/conversations/${cId}/files/${encoded}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${cId}/files/download (front-api/routes/w/[wId]/assistant/conversations/[cId]/files/download.test.ts:35)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/files/download.test.ts:35` calls `POST /api/w/${workspace.sId}/assistant/conversations/${cId}/files/download` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for match…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${cId}/messages/${mId}/reactions (front-api/routes/w/[wId]/assistant/conversations/[cId]/messages/[mId]/reactions/index.test.ts:39)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/messages/[mId]/reactions/index.test.ts:39` calls `POST /api/w/${workspace.sId}/assistant/conversations/${cId}/messages/${mId}/reactions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Nor…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${cId}/tools (front-api/routes/w/[wId]/assistant/conversations/[cId]/tools.test.ts:31)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/tools.test.ts:31` calls `POST /api/w/${workspace.sId}/assistant/conversations/${cId}/tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/assis…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${conversation.sId}/tools (front-api/routes/w/[wId]/assistant/conversations/[cId]/tools.test.ts:318)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/tools.test.ts:318` calls `POST /api/w/${workspace.sId}/assistant/conversations/${conversation.sId}/tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching:…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/conversations/${conversationId}/messages (front-api/routes/w/[wId]/assistant/conversations/[cId]/messages/index.test.ts:33)
`front-api/routes/w/[wId]/assistant/conversations/[cId]/messages/index.test.ts:33` calls `POST /api/w/${workspace.sId}/assistant/conversations/${conversationId}/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/assistant/mentions/parse (front-api/routes/w/[wId]/assistant/mentions/index.test.ts:39)
`front-api/routes/w/[wId]/assistant/mentions/index.test.ts:39` calls `POST /api/w/${workspace.sId}/assistant/mentions/parse` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/assistant/mentions/parse` If…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/builder/skills/suggestions (front-api/routes/w/[wId]/builder/skills/suggestions.test.ts:22)
`front-api/routes/w/[wId]/builder/skills/suggestions.test.ts:22` calls `POST /api/w/${workspace.sId}/builder/skills/suggestions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/builder/skills/suggestio…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/data_sources/${dsId} (front-api/routes/w/[wId]/data_sources/[dsId]/index.test.ts:7)
`front-api/routes/w/[wId]/data_sources/[dsId]/index.test.ts:7` calls `POST /api/w/${workspace.sId}/data_sources/${dsId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/data_sources/<p>` If this points…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/data_sources/${dsId}/files (front-api/routes/w/[wId]/data_sources/[dsId]/files.test.ts:71)
`front-api/routes/w/[wId]/data_sources/[dsId]/files.test.ts:71` calls `POST /api/w/${workspace.sId}/data_sources/${dsId}/files` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/data_sources/<p>/files` I…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/mcp (front-api/routes/w/[wId]/mcp/index.test.ts:43)
`front-api/routes/w/[wId]/mcp/index.test.ts:43` calls `POST /api/w/${workspace.sId}/mcp` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/mcp` If this points at an external API, prefix it with `https://…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/mcp/${serverId}/sync (front-api/routes/w/[wId]/mcp/[serverId]/sync.test.ts:15)
`front-api/routes/w/[wId]/mcp/[serverId]/sync.test.ts:15` calls `POST /api/w/${workspace.sId}/mcp/${serverId}/sync` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/mcp/<p>/sync` If this points at an ex…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/mcp/deregister (front-api/routes/w/[wId]/mcp/deregister.test.ts:23)
`front-api/routes/w/[wId]/mcp/deregister.test.ts:23` calls `POST /api/w/${workspace.sId}/mcp/deregister` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/mcp/deregister` If this points at an external AP…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/pods/${podId}/tasks/seed (front-api/routes/w/[wId]/pods/[podId]/tasks/seed.test.ts:9)
`front-api/routes/w/[wId]/pods/[podId]/tasks/seed.test.ts:9` calls `POST /api/w/${workspace.sId}/pods/${podId}/tasks/seed` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/pods/<p>/tasks/seed` If this p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/skills (front-api/routes/w/[wId]/skills/index.test.ts:40)
`front-api/routes/w/[wId]/skills/index.test.ts:40` calls `POST /api/w/${workspace.sId}/skills` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills` If this points at an external API, prefix it with …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/skills/${sId}/restore (front-api/routes/w/[wId]/skills/[sId]/restore.test.ts:41)
`front-api/routes/w/[wId]/skills/[sId]/restore.test.ts:41` calls `POST /api/w/${workspace.sId}/skills/${sId}/restore` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/<p>/restore` If this points …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/skills/similar (front-api/routes/w/[wId]/skills/similar.test.ts:19)
`front-api/routes/w/[wId]/skills/similar.test.ts:19` calls `POST /api/w/${workspace.sId}/skills/similar` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/skills/similar` If this points at an external AP…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces (front-api/routes/w/[wId]/spaces/index.test.ts:22)
`front-api/routes/w/[wId]/spaces/index.test.ts:22` calls `POST /api/w/${workspace.sId}/spaces` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces` If this points at an external API, prefix it with …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${project.sId}/files (front-api/routes/w/[wId]/spaces/[spaceId]/files/index.test.ts:143)
`front-api/routes/w/[wId]/spaces/[spaceId]/files/index.test.ts:143` calls `POST /api/w/${workspace.sId}/spaces/${project.sId}/files` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces/<p>/files` If…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${project.sId}/files (front-api/routes/w/[wId]/spaces/[spaceId]/files/index.test.ts:161)
`front-api/routes/w/[wId]/spaces/[spaceId]/files/index.test.ts:161` calls `POST /api/w/${workspace.sId}/spaces/${project.sId}/files` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces/<p>/files` If…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${spaceId}/leave (front-api/routes/w/[wId]/spaces/[spaceId]/leave.test.ts:12)
`front-api/routes/w/[wId]/spaces/[spaceId]/leave.test.ts:12` calls `POST /api/w/${workspace.sId}/spaces/${spaceId}/leave` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/spaces/<p>/leave` If this point…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/${taskId}/start (front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/index.test.ts:34)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/index.test.ts:34` calls `POST /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/${taskId}/start` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/bulk-actions (front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/bulk-actions.test.ts:16)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/bulk-actions.test.ts:16` calls `POST /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/bulk-actions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matchin…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/mark_read (front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/index.test.ts:22)
`front-api/routes/w/[wId]/spaces/[spaceId]/project_tasks/index.test.ts:22` calls `POST /api/w/${workspace.sId}/spaces/${spaceId}/project_tasks/mark_read` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/spaces/${spaceId}/webhook_source_views (front-api/routes/w/[wId]/spaces/[spaceId]/webhook_source_views/index.test.ts:23)
`front-api/routes/w/[wId]/spaces/[spaceId]/webhook_source_views/index.test.ts:23` calls `POST /api/w/${workspace.sId}/spaces/${spaceId}/webhook_source_views` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/subscriptions (front-api/routes/w/[wId]/subscriptions/index.test.ts:31)
`front-api/routes/w/[wId]/subscriptions/index.test.ts:31` calls `POST /api/w/${workspace.sId}/subscriptions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/subscriptions` If this points at an external…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/usage_settings/default_user_spend_limit (front-api/routes/w/[wId]/usage_settings/default_user_spend_limit.test.ts:90)
`front-api/routes/w/[wId]/usage_settings/default_user_spend_limit.test.ts:90` calls `POST /api/w/${workspace.sId}/usage_settings/default_user_spend_limit` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/w/${workspace.sId}/usage_settings/programmatic_usage_limit (front-api/routes/w/[wId]/usage_settings/programmatic_usage_limit.test.ts:77)
`front-api/routes/w/[wId]/usage_settings/programmatic_usage_limit.test.ts:77` calls `POST /api/w/${workspace.sId}/usage_settings/programmatic_usage_limit` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /subtle1/e/ (front-api/routes/subtle1.test.ts:40)
`front-api/routes/subtle1.test.ts:40` calls `POST /subtle1/e/` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/subtle1/e` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /subtle1/e/ (front-api/routes/subtle1.test.ts:63)
`front-api/routes/subtle1.test.ts:63` calls `POST /subtle1/e/` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/subtle1/e` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /subtle1/e/ (front-api/routes/subtle1.test.ts:71)
`front-api/routes/subtle1.test.ts:71` calls `POST /subtle1/e/` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/subtle1/e` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${workosConfig.authenticateUri} (front-api/routes/v1/auth/[action].ts:123)
`front-api/routes/v1/auth/[action].ts:123` calls `POST https://${workosConfig.authenticateUri}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>` If this points at an external API, prefix it with `https://`…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${workosConfig.authenticateUri} (front/pages/api/v1/auth/[action].ts:116)
`front/pages/api/v1/auth/[action].ts:116` calls `POST https://${workosConfig.authenticateUri}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>` If this points at an external API, prefix it with `https://` …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${workOSDomain}/user_management/authenticate (cli/dust-cli/src/ui/commands/Auth.tsx:110)
`cli/dust-cli/src/ui/commands/Auth.tsx:110` calls `POST https://${workOSDomain}/user_management/authenticate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>/user_management/authenticate` If this points at…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${workOSDomain}/user_management/authenticate (cli/dust-cli/src/utils/authService.ts:36)
`cli/dust-cli/src/utils/authService.ts:36` calls `POST https://${workOSDomain}/user_management/authenticate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>/user_management/authenticate` If this points at …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${workOSDomain}/user_management/authorize/device (cli/dust-cli/src/ui/commands/Auth.tsx:224)
`cli/dust-cli/src/ui/commands/Auth.tsx:224` calls `POST https://${workOSDomain}/user_management/authorize/device` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>/user_management/authorize/device` If this p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${zendeskSubdomain}.zendesk.com/api/v2/webhooks (front/lib/api/triggers/built-in-webhooks/zendesk/service.ts:121)
`front/lib/api/triggers/built-in-webhooks/zendesk/service.ts:121` calls `POST https://${zendeskSubdomain}.zendesk.com/api/v2/webhooks` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>.zendesk.com/api/v2/web…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.anthropic.com/v1/messages/count_tokens (front-api/routes/w/[wId]/providers/[pId]/check.ts:104)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:104` calls `POST https://api.anthropic.com/v1/messages/count_tokens` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.anthropic.com/v1/messages/count_token…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.anthropic.com/v1/messages/count_tokens (front/pages/api/w/[wId]/providers/[pId]/check.ts:107)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:107` calls `POST https://api.anthropic.com/v1/messages/count_tokens` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.anthropic.com/v1/messages/count_tokens…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/webhook (front/lib/api/triggers/built-in-webhooks/jira/jira_client.ts:111)
`front/lib/api/triggers/built-in-webhooks/jira/jira_client.ts:111` calls `POST https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/webhook` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.atlassian.com…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.fireworks.ai/inference/v1/chat/completions (front-api/routes/w/[wId]/providers/[pId]/check.ts:292)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:292` calls `POST https://api.fireworks.ai/inference/v1/chat/completions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.fireworks.ai/inference/v1/chat/co…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.fireworks.ai/inference/v1/chat/completions (front/pages/api/w/[wId]/providers/[pId]/check.ts:298)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:298` calls `POST https://api.fireworks.ai/inference/v1/chat/completions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.fireworks.ai/inference/v1/chat/com…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.gong.io/v2/calls/extensive (front/temporal/labs/transcripts/utils/gong.ts:277)
`front/temporal/labs/transcripts/utils/gong.ts:277` calls `POST https://api.gong.io/v2/calls/extensive` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.gong.io/v2/calls/extensive` If this points at an exte…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.gong.io/v2/calls/transcript (front/temporal/labs/transcripts/utils/gong.ts:353)
`front/temporal/labs/transcripts/utils/gong.ts:353` calls `POST https://api.gong.io/v2/calls/transcript` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.gong.io/v2/calls/transcript` If this points at an ex…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.intercom.io/auth/uninstall (connectors/src/connectors/intercom/index.ts:204)
`connectors/src/connectors/intercom/index.ts:204` calls `POST https://api.intercom.io/auth/uninstall` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.intercom.io/auth/uninstall` If this points at an extern…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.monday.com/v2 (front/lib/api/actions/servers/monday/helpers.ts:72)
`front/lib/api/actions/servers/monday/helpers.ts:72` calls `POST https://api.monday.com/v2` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.monday.com/v2` If this points at an external API, prefix it with …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.monday.com/v2/file (front/lib/api/actions/servers/monday/helpers.ts:1022)
`front/lib/api/actions/servers/monday/helpers.ts:1022` calls `POST https://api.monday.com/v2/file` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.monday.com/v2/file` If this points at an external API, pre…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.together.xyz/inference (x/spolu/research/evals/lib/models/together.ts:38)
`x/spolu/research/evals/lib/models/together.ts:38` calls `POST https://api.together.xyz/inference` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: axios Normalized path used for matching: `/https:/api.together.xyz/inference` If this points at an external API,…
Dangling fetchAxios
high System graph api Wiring conf 1.00 Dangling fetch: POST https://bench-registry/add (x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:54)
`x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:54` calls `POST https://bench-registry/add` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/bench-registry/add` If this points at an external API, pre…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://bench-registry/clear (x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:82)
`x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:82` calls `POST https://bench-registry/clear` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/bench-registry/clear` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://bench-registry/remove (x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:63)
`x/henry/sandbox-benchmarks/cloudflare/worker/src/index.ts:63` calls `POST https://bench-registry/remove` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/bench-registry/remove` If this points at an external AP…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://chrome.browserless.io/scrape?token=${config.api_key} (front-api/routes/w/[wId]/providers/[pId]/check.ts:208)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:208` calls `POST https://chrome.browserless.io/scrape?token=${config.api_key}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/chrome.browserless.io/scrape` I…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://chrome.browserless.io/scrape?token=${config.api_key} (front/pages/api/w/[wId]/providers/[pId]/check.ts:210)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:210` calls `POST https://chrome.browserless.io/scrape?token=${config.api_key}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/chrome.browserless.io/scrape` If…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://dust.tt/api/v1/w/0ec9852c2f/spaces/vlt_ZqMdUAzI0OTf/apps/wiG964FakA/runs (x/spolu/webagent/agent.ts:459)
`x/spolu/webagent/agent.ts:459` calls `POST https://dust.tt/api/v1/w/0ec9852c2f/spaces/vlt_ZqMdUAzI0OTf/apps/wiG964FakA/runs` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/dust.tt/api/v1/w/0ec9852c2f/spaces/…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://dust.tt/api/v1/w/3e26b0e764/apps/032e2a47a5/runs (x/spolu/research/evals/datasets/MATH/process.ts:112)
`x/spolu/research/evals/datasets/MATH/process.ts:112` calls `POST https://dust.tt/api/v1/w/3e26b0e764/apps/032e2a47a5/runs` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/dust.tt/api/v1/w/3e26b0e764/apps/032e…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://google.serper.dev/search (front-api/routes/w/[wId]/providers/[pId]/check.ts:185)
`front-api/routes/w/[wId]/providers/[pId]/check.ts:185` calls `POST https://google.serper.dev/search` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/google.serper.dev/search` If this points at an external API…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://google.serper.dev/search (front/pages/api/w/[wId]/providers/[pId]/check.ts:186)
`front/pages/api/w/[wId]/providers/[pId]/check.ts:186` calls `POST https://google.serper.dev/search` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/google.serper.dev/search` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://login.microsoftonline.com/${apiConfig.getMicrosoftBotTenantId()}/oauth2/v2.0/token (connectors/src/api/webhooks/teams/bot_messaging_utils.ts:17)
`connectors/src/api/webhooks/teams/bot_messaging_utils.ts:17` calls `POST https://login.microsoftonline.com/${apiConfig.getMicrosoftBotTenantId()}/oauth2/v2.0/token` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: axios Normalized path used for matching: `/ht…
Dangling fetchAxios
high System graph api Wiring conf 1.00 Dangling fetch: POST https://slack.com/api/chat.postMessage (connectors/src/types/shared/deployment.ts:35)
`connectors/src/types/shared/deployment.ts:35` calls `POST https://slack.com/api/chat.postMessage` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/slack.com/api/chat.postmessage` If this points at an external …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://slack.com/api/chat.postMessage (front/types/shared/deployment.ts:39)
`front/types/shared/deployment.ts:39` calls `POST https://slack.com/api/chat.postMessage` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/slack.com/api/chat.postmessage` If this points at an external API, pref…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://slack.com/api/chat.postMessage (front/types/shared/user_operation.ts:25)
`front/types/shared/user_operation.ts:25` calls `POST https://slack.com/api/chat.postMessage` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/slack.com/api/chat.postmessage` If this points at an external API, …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://storage.googleapis.com/upload/storage/v1/b/${bucket}/o?uploadType=media&name=${encodeURIComponent(objectName)} (front/lib/api/sandbox/gcs/token.test.ts:69)
`front/lib/api/sandbox/gcs/token.test.ts:69` calls `POST https://storage.googleapis.com/upload/storage/v1/b/${bucket}/o?uploadType=media&name=${encodeURIComponent(objectName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for mat…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://sts.googleapis.com/v1/token (front/lib/api/sandbox/gcs/token.ts:76)
`front/lib/api/sandbox/gcs/token.ts:76` calls `POST https://sts.googleapis.com/v1/token` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/sts.googleapis.com/v1/token` If this points at an external API, prefix i…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: PUT /api/w/${wId}/sandbox/egress-policy (front-api/routes/w/[wId]/sandbox/egress-policy.test.ts:57)
`front-api/routes/w/[wId]/sandbox/egress-policy.test.ts:57` calls `PUT /api/w/${wId}/sandbox/egress-policy` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/sandbox/egress-policy` If this points at an e…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PUT /api/w/${wId}/usage_settings/default_user_spend_limit (front-api/routes/w/[wId]/usage_settings/default_user_spend_limit.test.ts:36)
`front-api/routes/w/[wId]/usage_settings/default_user_spend_limit.test.ts:36` calls `PUT /api/w/${wId}/usage_settings/default_user_spend_limit` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/usage_set…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PUT /api/w/${wId}/usage_settings/programmatic_usage_limit (front-api/routes/w/[wId]/usage_settings/programmatic_usage_limit.test.ts:35)
`front-api/routes/w/[wId]/usage_settings/programmatic_usage_limit.test.ts:35` calls `PUT /api/w/${wId}/usage_settings/programmatic_usage_limit` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/w/<p>/usage_set…
Dangling fetchHelper:request
high System graph security security conf 1.00 Insecure pattern 'eval_used' in connectors/src/lib/lock.ts:45
Found a known-risky pattern (eval_used). Review and replace if possible.
connectors/src/lib/lock.ts:45 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in front/lib/lock.ts:45
Found a known-risky pattern (eval_used). Review and replace if possible.
front/lib/lock.ts:45 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in front/lib/utils/rate_limiter.ts:67
Found a known-risky pattern (eval_used). Review and replace if possible.
front/lib/utils/rate_limiter.ts:67 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in front/lib/api/sandbox/provider.ts:133
Found a known-risky pattern (exec_used). Review and replace if possible.
front/lib/api/sandbox/provider.ts:133 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in front/lib/api/sandbox/providers/e2b.ts:457
Found a known-risky pattern (exec_used). Review and replace if possible.
front/lib/api/sandbox/providers/e2b.ts:457 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in front/lib/api/sandbox/root_command.ts:96
Found a known-risky pattern (exec_used). Review and replace if possible.
front/lib/api/sandbox/root_command.ts:96 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in front/lib/resources/sandbox_resource.ts:915
Found a known-risky pattern (exec_used). Review and replace if possible.
front/lib/resources/sandbox_resource.ts:915 Exec used
medium Security checks quality Practices conf 1.00 [CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
x/henry/dust-hive/README.md:17
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
package.json:26
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/components/home/content/Integration/IntegrationTemplate.tsx:112
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/components/home/content/Product/HomeQuotesSection.tsx:111
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/components/home/content/Product/HomeReveal.tsx:39
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/components/home/content/Product/HomeTeamUsageSection.tsx:480
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/components/home/content/Product/HomeTrustedSection.tsx:187
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/components/sparkle/ThemeContext.tsx:91
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/pages/blog/[slug].tsx:162
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/pages/customers/[slug].tsx:149
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — front/pages/integrations/index.tsx:133
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — viz/components/ui/chart.tsx:80
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — cli/dust-cli/src/mcp/servers/cliTransport.ts:101
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — cli/dust-cli/src/utils/authService.ts:36
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — cli/dust-sandbox/e2e/case.ts:4
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/migrations/20250110_investigate_zendesk_hc.ts:54
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/api/webhooks/discord/bot.ts:365
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/api/webhooks/discord/content_fragments.ts:47
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/api/webhooks/discord/startup.ts:48
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/connectors/notion/lib/cli.ts:723
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/connectors/slack/feedback_api.ts:82
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/connectors/webcrawler/temporal/activities.ts:514
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/connectors/zendesk/lib/zendesk_api.ts:136
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — connectors/src/types/shared/text_extraction/index.ts:143
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — extension/platforms/front/services/auth.ts:136
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — extension/shared/background.ts:116
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — extension/ui/hooks/useFileUploaderService.ts:159
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front-api/routes/mcp/well-known.ts:33
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front-api/routes/v1/w/[wId]/spaces/[spaceId]/data_sources/[dsId]/documents/index.ts:46
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front-api/routes/w/[wId]/providers/[pId]/check.ts:37
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front-api/routes/w/[wId]/providers/[pId]/models.ts:68
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front-spa/worker/app.ts:26
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front-spa/worker/poke.ts:21
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — front/components/dev/PerfBar.tsx:127
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness

Showing first 300 of 853. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/01cb7246-ff70-4ac6-af6b-2a731e91b79c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/01cb7246-ff70-4ac6-af6b-2a731e91b79c/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.