Skip to content

Capabilities

What AgenticFlow Enterprise can do for you.

AgenticFlow Enterprise 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 AgenticFlow Enterprise 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:

agenticflow-enterprise.json
{
"tools": {
"bash": false,
"webfetch": false
}
}

This would prevent AgenticFlow Enterprise from running commands or accessing the web.


Capability Details

📖 Read Files

AgenticFlow Enterprise 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
agenticflow-enterprise.json
{
"tools": {
"read": true
}
}

✏️ Edit Files

AgenticFlow Enterprise 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
agenticflow-enterprise.json
{
"tools": {
"edit": true
}
}

📝 Create Files

AgenticFlow Enterprise can create new files and documents.

Use cases:

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

🔍 Search Files

AgenticFlow Enterprise 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
agenticflow-enterprise.json
{
"tools": {
"grep": true,
"glob": true
}
}

📂 List Folders

AgenticFlow Enterprise 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
agenticflow-enterprise.json
{
"tools": {
"list": true
}
}

🌐 Web Access

AgenticFlow Enterprise 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
agenticflow-enterprise.json
{
"tools": {
"webfetch": true
}
}

⚡ System Commands

AgenticFlow Enterprise can run commands on your system.

Use cases:

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

Task Tracking

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

agenticflow-enterprise.json
{
"tools": {
"todowrite": true,
"todoread": true
}
}

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


Extending Capabilities

Want AgenticFlow Enterprise 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: