arken-engineering / cli

Arken CLI
https://arken.gg
MIT License
0 stars 0 forks source link

Implement agent commands #5

Open Spudfellah opened 1 week ago

Spudfellah commented 1 week ago
rushx dev cerebro.createAgent AgentName
or
./bin/arken cerebro.createAgent AgentName

./bin/arken cerebro.exec --agent AgentName --method MethodName --params Param1 --params Param2 --params Param3

./bin/arken cerebro.exec --agent AgentName --method MethodName --params Param1 Param2 Param3

./bin/arken cerebro.exec --agent Hisoka --method run

./bin/arken cerebro.exec --agent Hisoka --method fetchAndProcessVideos --params H3AZiZUzglE

./bin/arken cerebro.exec Hisoka.run()

./bin/arken cerebro.exec Hisoka.fetchAndProcessVideos("H3AZiZUzglE")
Spudfellah commented 6 days ago

These work, get into the CLI first, then run commands:

rushx

cerebro.exec --agent Gon --method ask --params "calculate 1+1" "you always reply with a smile"

cerebro.exec Gon.ask("calculate 1+1", "you always reply with a smile")

Gon.ask("calculate 1+1", "you always reply with a smile")
Spudfellah commented 6 days ago

./bin/arken points to rushx dev