Skip to content

Commit 3dfaaad

Browse files
chore(tools): carry every Sim table op in the minimal dev registry
table_create and table_list were the only two of the 13 Sim table tools absent from minimal mode. No block routes to them today, but minimal mode should not silently lack table operations the full registry has — that asymmetry is exactly how the earlier 'table block missing in minimal registry' round trips happened. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_011M563cbFy2S74GvSDf2C3R
1 parent 2546a09 commit 3dfaaad

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

apps/sim/tools/registry.minimal.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ import {
7373
} from '@/tools/slack'
7474
import {
7575
tableBatchInsertRowsTool,
76+
tableCreateTool,
7677
tableDeleteRowsByFilterTool,
7778
tableDeleteRowTool,
7879
tableGetRowTool,
7980
tableGetSchemaTool,
8081
tableInsertRowTool,
82+
tableListTool,
8183
tableQueryRowsTool,
8284
tableQueryRowsV2Tool,
8385
tableUpdateRowsByFilterTool,
@@ -112,6 +114,8 @@ export const tools: Record<string, ToolConfig> = {
112114
table_query_rows_v2: tableQueryRowsV2Tool,
113115
table_get_row: tableGetRowTool,
114116
table_get_schema: tableGetSchemaTool,
117+
table_create: tableCreateTool,
118+
table_list: tableListTool,
115119
guardrails_validate: guardrailsValidateTool,
116120
// Needed so workflow-as-tool and custom (deploy-as-block) tools resolve their
117121
// config in minimal-registry dev mode (both route through `workflow_executor`).

0 commit comments

Comments
 (0)