Every action below is available as a verb in Cerebral OS — callable from a Cerebral, a Map, or the Runtime API. All executions are governed, audited, and dry-run safe.
Bulk Create Rows
retable:bulk_create_rows
Create multiple rows in a table at once for better performance.
Write
Medium risk
Create Column
retable:create_column
Create a new column in a table with specified type and constraints.
Write
Medium risk
Create Row
retable:create_row
Create a new row in a table with the specified data.
Write
Medium risk
Create Table
retable:create_table
Create a new table in a workspace with optional column definitions.
Write
Medium risk
Delete Column
retable:delete_column
Delete a column permanently. This will delete all data in the column and cannot be undone.
Write
High risk
Delete Row
retable:delete_row
Delete a row permanently. This action cannot be undone.
Write
High risk
Delete Table
retable:delete_table
Delete a table permanently. This action cannot be undone.
Write
High risk
Get Row
retable:get_row
Fetch a single row by ID with all column values.
Read
Low risk
Get Table
retable:get_table
Fetch a single table by ID with columns and metadata.
Read
Low risk
Get Workspace
retable:get_workspace
Fetch a single workspace by ID with basic details.
Read
Low risk
List Rows
retable:list_rows
List rows from a table with optional filtering and sorting.
Read
Low risk
List Tables
retable:list_tables
List tables, optionally filtered by workspace.
Read
Low risk
List Workspaces
retable:list_workspaces
List all workspaces accessible to the authenticated user.
Read
Low risk
Update Column
retable:update_column
Update column properties. Note: Column type cannot be changed after creation.
Write
Medium risk
Update Row
retable:update_row
Update an existing row with new data. Only specified columns will be updated.
Write
Medium risk
Update Table
retable:update_table
Update table name and/or description.
Write
Medium risk