Skip to content

Capabilities

What Ishi can do for you.

Claw comes with built-in capabilities that let your AI assistant interact with your files and system. Think of these as the “skills” your Digital Employee has.


Core Capabilities

Here’s what Ishi can do out of the box:

CapabilityWhat It DoesExample
📖 ReadView file contents”Show me what’s in this PDF”
✏️ EditModify existing files”Update the date in this invoice”
📝 WriteCreate new files”Create a summary document”
🔍 SearchFind content across files”Find all mentions of ‘Acme Corp’”
📂 ListSee what’s in a folder”What files are in my Downloads?”
🌐 WebFetch information online”Look up the current exchange rate”
CommandsRun system commands”Open this file in Preview”

Enabling & Disabling

All capabilities are enabled by default. You can turn specific ones off if needed:

claw.json
{
"tools": {
"bash": false,
"webfetch": false
}
}

This would prevent Claw from running commands or accessing the web.


Capability Details

📖 Read Files

Ishi can read the contents of files on your computer.

Use cases:

  • Extract text from PDFs and documents
  • Review spreadsheet data
  • Check file contents before organizing
claw.json
{
"tools": {
"read": true
}
}

✏️ Edit Files

Ishi can modify existing files—but only with your approval (see Safety & Control).

Use cases:

  • Update dates or text in documents
  • Fix formatting issues
  • Bulk-update file metadata
claw.json
{
"tools": {
"edit": true
}
}

📝 Create Files

Ishi can create new files and documents.

Use cases:

  • Generate summary reports
  • Create organized folder structures
  • Export data to new spreadsheets
claw.json
{
"tools": {
"write": true
}
}

🔍 Search Files

Ishi can search through your files to find specific content.

Use cases:

  • Find all invoices from a specific vendor
  • Locate files containing certain keywords
  • Search for patterns across documents
claw.json
{
"tools": {
"grep": true,
"glob": true
}
}

📂 List Folders

Ishi can see what’s inside folders and directories.

Use cases:

  • Survey what’s in your Downloads folder
  • Identify duplicate or similar files
  • Get an overview of project organization
claw.json
{
"tools": {
"list": true
}
}

🌐 Web Access

Ishi can fetch information from the web.

Use cases:

  • Look up current information (exchange rates, etc.)
  • Check documentation or reference materials
  • Verify data against online sources
claw.json
{
"tools": {
"webfetch": true
}
}

⚡ System Commands

Ishi can run commands on your system.

Use cases:

  • Open files in specific applications
  • Organize files and folders
  • Run automation scripts
claw.json
{
"tools": {
"bash": true
}
}

Task Tracking

Ishi can maintain a to-do list while working on complex tasks:

claw.json
{
"tools": {
"todowrite": true,
"todoread": true
}
}

This helps Claw stay organized when you ask it to do multi-step operations like “organize all my Q4 invoices by vendor.”


Extending Capabilities

Want Claw to do more? You can add new capabilities through:


Summary

CapabilityConfig KeyDefault
Read filesread✅ Enabled
Edit filesedit✅ Enabled
Create fileswrite✅ Enabled
Search contentgrep, glob✅ Enabled
List folderslist✅ Enabled
Web accesswebfetch✅ Enabled
System commandsbash✅ Enabled
Task trackingtodowrite, todoread✅ Enabled

All capabilities can be controlled with Safety & Control settings. 🔒

Last updated: