You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/features.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,28 +10,29 @@ Chat is the main feature of ECA, allowing user to talk with LLM to behave like a
10
10
11
11
Behavior affect the prompt passed to LLM and the tools to include, the current supported behaviors are:
12
12
13
-
-`agent`: Make changes to code via file changing tools.
14
13
-`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.
15
15
16
16
### Tools
17
17
18
+

19
+
18
20
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.
20
22
21
23
### Native tools
22
24
23
25
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`.
24
26
25
-
Some native tools like `filesystem` have MCP alternatives, but ECA having them built-in avoid the need to external dependencies like npx.
26
-
27
27
#### Filesystem
28
28
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.
30
30
31
31
-`eca_directory_tree`: list a directory as a tree (can be recursive).
32
32
-`eca_read_file`: read a file content.
33
33
-`eca_write_file`: write content to a new file.
34
34
-`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.
35
36
-`eca_move_file`: move/rename a file.
36
37
-`eca_grep`: ripgrep/grep for paths with specified content.
0 commit comments