Skip to content

Commit e8ec717

Browse files
committed
docs
1 parent 8940154 commit e8ec717

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/features.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,29 @@ Chat is the main feature of ECA, allowing user to talk with LLM to behave like a
1010

1111
Behavior affect the prompt passed to LLM and the tools to include, the current supported behaviors are:
1212

13-
- `agent`: Make changes to code via file changing tools.
1413
- `plan`: Useful to plan changes and define better LLM plan before changing code via agent mode.
14+
- `agent`: Make changes to code via file changing tools.
1515

1616
### Tools
1717

18+
![](./images/tools.png)
19+
1820
ECA leverage tools to give more power to the LLM, this is the best way to make LLMs have more context about your codebase and behave like an agent.
19-
It supports both MCP server tools + ECA native tools, for more details, check [configuration]().
21+
It supports both MCP server tools + ECA native tools.
2022

2123
### Native tools
2224

2325
ECA support built-in tools to avoid user extra installation and configuration, these tools are always included on models requests that support tools and can be [disabled/configured via config](./configuration.md) `nativeTools`.
2426

25-
Some native tools like `filesystem` have MCP alternatives, but ECA having them built-in avoid the need to external dependencies like npx.
26-
2727
#### Filesystem
2828

29-
Provides access to filesystem under workspace root, listing and reading files and directories a subset of [official MCP filesystem](https://mcpserverhub.com/servers/filesystem), important for agentic operations, without the need to support NPM or other tools.
29+
Provides access to filesystem under workspace root, listing, reading and writing files, important for agentic operations.
3030

3131
- `eca_directory_tree`: list a directory as a tree (can be recursive).
3232
- `eca_read_file`: read a file content.
3333
- `eca_write_file`: write content to a new file.
3434
- `eca_edit_file`: replace lines of a file with a new content.
35+
- `eca_plan_edit_file`: Only used in plan mode, replace lines of a file with a new content.
3536
- `eca_move_file`: move/rename a file.
3637
- `eca_grep`: ripgrep/grep for paths with specified content.
3738

docs/images/tools.png

7.19 KB
Loading

0 commit comments

Comments
 (0)