toolHelp constant

Map<String, String> const toolHelp

Implementation

static const Map<String, String> toolHelp = {
  'Read': 'Read file contents from the local filesystem.',
  'Write': 'Create or overwrite a file with new content.',
  'Edit': 'Apply targeted edits to an existing file.',
  'MultiEdit': 'Apply multiple edits to a file in a single operation.',
  'Bash': 'Execute a shell command and return its output.',
  'Glob': 'Search for files matching a glob pattern.',
  'Grep': 'Search file contents using regular expressions.',
  'LS': 'List directory contents.',
  'WebFetch': 'Fetch and process content from a URL.',
  'WebSearch': 'Search the web and return summarised results.',
  'TodoRead': 'Read the current task list.',
  'TodoWrite': 'Create or update the task list.',
  'NotebookEdit': 'Edit Jupyter notebook cells.',
};