aethershell 0.3.1

The world's first multi-agent shell with typed functional pipelines and multi-modal AI
Documentation
1
2
3
4
5
6
7
8
9
10
# Agent that can list files and run safe external commands (whitelist via env)
# Be sure to allow commands:
#   export AGENT_ALLOW_CMDS=ls,git

goal = "Find the three largest files in the current directory and report their names and sizes."

# The second argument is tool names: "ls" (builtin table) and "!git" (external)
# The third argument is max_steps.
agent goal ["ls","!git"] 6
  | print