5-Minute Quickstart Tutorial
This hands-on tutorial walks you through creating your first autonomous AI agent, giving it system tools, and executing a multi-step task in ActonOS.
Step 1: Open the ActonOS Dashboardβ
- Navigate to your running instance:
- Local LAN:
http://acton.local:8080(orhttp://localhost:8080) - Remote:
https://acton.your-tailnet.ts.net
- Local LAN:
- If prompted, enter the Admin PIN / Password you configured during onboarding.
- You will see the Operations & System Dashboard displaying live CPU, RAM, active agents, and event feeds.
Step 2: Open Agent Studio and Create an Agentβ
- In the left navigation menu, click Agents (or press
Ctrl + Kand typeCreate Agent). - Click the yellow + New Agent button in the top right.
- Fill in the Agent Identity:
- Agent Name:
Research Assistant - Avatar / Slug:
research-bot - Description:
Autonomous research agent with web browsing and document summarization tools.
- Agent Name:
- In the System Prompt section, define the persona:
You are an autonomous research assistant running inside ActonOS.Your mission is to perform accurate web research, synthesize data, and produce clean Markdown summaries.Always verify facts using available web search and scraping tools before giving answers.
- In the Model & LLM Cascade section:
- Primary Model: Select
anthropic:claude-3-7-sonnetoropenai:gpt-4o. - Fallback Model: Select
google:gemini-2.0-flashorollama:llama3. - Temperature:
0.3(for grounded, precise output).
- Primary Model: Select
- In the Tool Scopes & Permissions section:
- Check
native_web_search(DuckDuckGo / Tavily integration). - Check
native_browser_headless(Chromium web scraper). - Check
native_workspace_write(Save findings to workspace).
- Check
- Click Save Agent Manifest.
Step 3: Start a Chat & Test Tool Executionβ
- In the navigation sidebar, click Chat.
- Select your newly created Research Assistant from the top agent dropdown.
- Type the following prompt into the message composer:
Please research the latest release notes for Go 1.26. Summarize the top 3 major language changes and save the summary to a file named 'go_126_summary.md' in the workspace.
- Click Send (or press
Enter).
What Happens Behind the Scenes:β
- Model Cascade: ActonOS streams the prompt to your configured primary LLM via Server-Sent Events (SSE).
- Tool Invocations: The agent decides to call
native_web_search("Go 1.26 release notes"). - Execution Card: A real-time collapsible card appears in the chat timeline showing the tool's input arguments, execution time, and raw JSON output.
- Autonomous File Write: The agent calls
native_workspace_writeto create/workspace/go_126_summary.md. - Streaming Response: The agent provides a formatted Markdown summary directly in the chat window.
Step 4: Verify the Generated File in Workspaceβ
- In the sidebar, click Workspace.
- Notice the new file
go_126_summary.mdlisted in the explorer tree. - Click on the file to view it in the built-in CodeMirror Editor with live Markdown preview.
- Notice that ActonOS automatically indexed the file into Hybrid Semantic Memory (visible by the green
Semantic Indexedbadge).
What's Next?β
Congratulations! You have configured and executed your first autonomous agent in ActonOS.
Explore the rest of the guides to unlock advanced capabilities:
- Agent Studio Guide: Build Multi-Agent Swarms with delegation.
- Autonomous Missions: Run complex DAG workflows with human approval checkpoints.
- Plugins & WASM Extensions: Install sandboxed tools, chat channel bots, and SaaS connectors.
- Channels & Omnichannel Messaging: Connect your agent to Telegram, Discord, and Slack.
- Tools & MCP Servers: Add MCP servers and custom folder-based skills.