Build Production-ready Agentic Workflow with Natural Language
What can Eko do?
Framework Comparison
Eko is a next-gen, high-efficiency agent framework for all platforms, tailored for developers who demand flexibility and customization.
Simple Command to Complex Workflow
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const eko = new Eko("claude-3.5");
// Generate and modify prompts with natural language
const workflow = await eko.generate(
"Based on the README of FellouAI/eko on github, search for competitors, highlight the key contributions of Eko, write a blog post advertising Eko, and post it on Write.as."
);
// Modify workflow with natural language
workflow.nodes[0].action.description += `Be sure to use the URL https://github.com/FellouAI/eko`;
// Execute workflow
const result = await eko.execute(workflow);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"workflow": {
"name": "Eko Marketing Blog Post Creation and Publication",
"description": "A workflow to analyze Eko's README, identify competitors, create and publish a marketing blog post",
"version": "1.0",
"steps": [
{
"id": "fetch_readme",
"name": "fetch_readme",
"action": {
"name": "Fetch Eko README Content",
"description": "Use curl to fetch the README content from FellouAI/eko GitHub repositoryBe sure to use the URL https://github.com/FellouAI/eko",
"tools": {
"tools": "command_execute"
}
}
}
},
…
}
Powerful Tool support for Agent Development
Provides various built-in tools for all platform and customize new tools easily.
Available Tools
Super useful tools, easy to use, you can also become a tool contributor!
Click GUI via prompt
Extract webpage content
Auto-fill forms
Command execute
Tab management
Export files
Take screenshots
Web search
Technology Advantages
Flexible, effective and safe
Hierarchical Planning
Eko allow separation of offline planning from execution and create reusable and modifiable task plans, ensuring more reliable and flexible automation.
Visual-Interactive Element Perception (VIEP) technology can reduce tokens by 99% rather than naive HTML.
Using the google.com as example
Before
221,805
characters
After
1,058
characters