Skip to content

Commit 19cae60

Browse files
committed
updated docs
1 parent 3d22a03 commit 19cae60

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This scaffold serves as a starting point for developers looking to build autonom
1212

1313
### Kernel Workflow
1414

15-
Example implementations of automated DeFi workflows using Console Kit's infrastructure. These examples demonstrate how to set up autonomous agents that can execute complex DeFi strategies while leveraging Console's policy engine and execution framework.
15+
Example implementations of automated DeFi workflows using Console Kit's infrastructure. These examples demonstrates how to set up simple automation that transfers when balance is above certain threshold that user provides.
1616

1717
## Local setup
1818

@@ -57,7 +57,7 @@ mv .env.example .env
5757
```
5858
This will poll for your executable tasks, and run your automation periodically
5959

60-
## Additional Examples
60+
## Additional Agent Based Examples
6161

6262
- [ConsoleKit LangChain Agent](https://github.com/Brahma-fi/scaffold-agent/tree/ft-addLangchain)
6363
- [ConsoleKit OpenAI Agent](https://github.com/Brahma-fi/scaffold-agent/tree/ft-addOpenAi)

kernel-workflow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"deploy-account": "ts-node src/deploy-automation-account.ts",
88
"register-executor": "ts-node src/register-executor.ts",
9-
"agent-workflow": "ts-node src/agent-workflow.ts",
9+
"automation-workflow": "ts-node src/automation-workflow.ts",
1010
"update-automation": "ts-node src/update-automation.ts",
1111
"cancel-automation": "ts-node src/cancel-automation.ts"
1212
},
File renamed without changes.

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ run-deploy-account:
99
run-register-executor:
1010
cd kernel-workflow && yarn register-executor
1111

12-
run-agent-workflow:
13-
cd kernel-workflow && yarn agent-workflow
12+
run-automation-workflow:
13+
cd kernel-workflow && yarn automation-workflow
1414

1515
run-update-automation:
1616
cd kernel-workflow && yarn update-automation

0 commit comments

Comments
 (0)