1,216 tools
inventory-sheet-spreadsheet-rename-sheet
Rename a sheet in the Warehouse Capacity spreadsheet. (inventory-sheet spreadsheet)
inventory-sheet-spreadsheet-export
Export the Warehouse Capacity spreadsheet to an Excel (.xlsx) file. (inventory-sheet spreadsheet)
shipment-tracker-grid-filter
Narrow the Shipment Tracker grid to a subset of rows. Use this whenever the user asks to see, show, focus on, or look at shipments matching …
shipment-tracker-grid-clear-filter
Remove all active filters from the Shipment Tracker grid. (shipment-tracker grid)
shipment-tracker-grid-sort
Sort the Shipment Tracker grid by a column, e.g. Value descending or ETA ascending. (shipment-tracker grid)
shipment-tracker-grid-clear-sort
Clear all applied sorts from the grid. (shipment-tracker grid)
shipment-tracker-grid-group
Group the grid data by a column field. (shipment-tracker grid)
shipment-tracker-grid-clear-group
Clear all applied groups from the grid. (shipment-tracker grid)
shipment-tracker-grid-highlight
Visually highlight grid rows or cells that match a condition. This is a standalone visual operation — do NOT call grid-filter beforehand. Sp…
shipment-tracker-grid-clear-highlight
Clear all highlighted rows and cells in the grid. (shipment-tracker grid)
shipment-tracker-grid-select
Select grid rows or cells that match a condition. This is a standalone operation — do NOT call grid-filter beforehand. Specify field, operat…
shipment-tracker-grid-clear-select
Clear all selected rows and cells in the grid. (shipment-tracker grid)
shipment-tracker-grid-page
Navigate the grid to a specific page number. (shipment-tracker grid)
shipment-tracker-grid-page-size
Change the number of items displayed per page. (shipment-tracker grid)
shipment-tracker-grid-column-reorder
Move a grid column to a different position. (shipment-tracker grid)
shipment-tracker-grid-column-resize
Resize a grid column to a specified width. (shipment-tracker grid)
shipment-tracker-grid-column-show
Show a hidden grid column. (shipment-tracker grid)
shipment-tracker-grid-column-hide
Hide a visible grid column. (shipment-tracker grid)
shipment-tracker-grid-column-lock
Lock (freeze) a grid column so it stays visible when scrolling. (shipment-tracker grid)
shipment-tracker-grid-column-unlock
Unlock a frozen grid column. (shipment-tracker grid)
shipment-tracker-grid-export-excel
Export the grid data to an Excel file. (shipment-tracker grid)
shipment-tracker-grid-export-csv
Export the grid data to a CSV file. (shipment-tracker grid)
shipment-tracker-gridgetdata
Read the rows currently visible in the Shipment Tracker (after any active filter/sort) as JSON. ALWAYS call this AFTER a Filter step when th…
list_skills
Lists all skills available in this workspace. Returns an array of { id, name, description } entries. Use read_skill to fetch the full instru…
read_skill
Returns the full definition of a skill (id, name, description, instructions, optional model) given its id or name. Use this before delegate_…
read
Reads the complete current editor content.
read_selection
Reads the currently selected text in the editor.
search
Finds all occurrences of a query string in the document. Returns the line and column of each match.
get_metadata
Returns metadata about the current document: character count, word count, and line count.
get_current_mode
Returns the current UI mode: 'editor' (Monaco editor is visible) or 'preview' (Markdown preview is visible). Check this before making edits …
request_switch_to_editor
Requests the user to switch from Preview mode to Editor mode. This will display a prompt to the user and pause until they accept or decline.…
edit
Proposes a targeted edit. This tool pauses and waits for user approval. ONLY use this for small, localized changes (e.g., 1-2 sentences). Ne…
write
Proposes a complete rewrite. This tool pauses and waits for user approval. ONLY use this when the user explicitly requests a total rewrite o…
get_active_doc_info
Returns the id and title of the document currently open in the editor.
list_workspace_docs
Lists all documents in the workspace. Returns an array of { id, title } objects.
read_workspace_doc
Reads the full content of a specific document. Returns { title, content } or { error }.
query_workspace_doc
Asks a question about a specific document using a sub-agent. Returns { summary, excerpt } where excerpt is the most relevant verbatim passag…
query_workspace
Asks a question spanning all workspace documents and synthesizes the results. Returns { summary, sources: [{ id, title, excerpt }] }.
create_document
Creates a new document in the workspace with the given title and optional initial content. Providing content avoids a separate write step. P…
rename_document
Renames an existing document in the workspace. Pauses for user authorization before renaming.