AIOS Docs
  • Welcome
  • Getting Started
    • Installation
    • Quickstart
      • Use Terminal
      • Use WebUI
    • Environment Variables Configuration
  • AIOS Kernel
    • Overview
    • LLM Core(s)
      • LiteLLM Compatible Backend
      • vLLM Backend
      • Hugging Face Backend
      • LLM Routing
    • Scheduler
      • FIFOScheduler
      • RRScheduler
    • Context
    • Memory
      • Base Layer
      • Agentic Memory Operations
    • Storage
      • sto_mount
      • sto_create_file
      • sto_create_directory
      • sto_write
      • sto_retrieve
      • sto_rollback
      • sto_share
    • Tools
    • Access
    • Syscalls
    • Terminal
  • AIOS Agent
    • How to Use Agent
    • How to Develop Agents
      • Develop with Native SDK
      • Develop with AutoGen
      • Develop with Open-Interpreter
      • Develop with MetaGPT
    • How to Publish Agents
  • AIOS-Agent SDK
    • Overview
    • LLM Core API
      • llm_chat
      • llm_chat_with_json_output
      • llm_chat_with_tool_call_output
      • llm_call_tool
      • llm_operate_file
    • Memory API
      • create_memory
      • get_memory
      • update_memory
      • delete_memory
      • search_memories
      • create_agentic_memory
    • Storage API
      • mount
      • create_file
      • create_dir
      • write_file
      • retrieve_file
      • rollback_file
      • share_file
    • Tool API
      • How to Develop Tools
    • Access API
    • Post API
    • Agent API
  • Community
    • How to Contribute
Powered by GitBook
On this page
  • Run agents and tools in the unix-like terminal
  • Interact with AIOS terminal UI
  1. Getting Started
  2. Quickstart

Use Terminal

Run agents and tools in the unix-like terminal

List agents from agenthub

list-agenthub-agents

List agents from local

list-local-agents

Download agents

download-agent \
    --agent_author <agent_author> \
    --agent_name <agent_name> \
    --agent_version <agent_version> \
    --agenthub_url <agenthub_url>

Upload agent

upload-agents \
    --agent_path <agent_path> \
    --agenthub_url <agenthub_url>

List tools from toolhub

list-toolhub-tools

List tools from local

list-local-tools

Download tool

download-tool \
    --tool_author <tool_author> \
    --tool_name <tool_name> \
    --tool_version <tool_version> \
    --toolhub_url <toolhub_url>

Upload tool

upload-tool \
    --tool_path <tool_path> \
    --toolhub_url <toolhub_url>

Interact with AIOS terminal UI

And you need to create a folder to put the files you want to manage, the default folder is ./root

After that, you can run the following command to start the AIOS terminal.

python scripts/run_terminal.py

When you successfully enter the system, the interface is as follows:

Then you can start interacting with the AIOS terminal by typing natural language commands.

PreviousQuickstartNextUse WebUI

Last updated 1 month ago

Before running the AIOS terminal, please make sure you have read the instructions in to set up the environment and launch the AIOS kernel.

For instructions of how to use commands, refer to .

AIOS
https://github.com/agiresearch/AIOS-LSFS
Example of Launched AIOS terminal