Tools & ACI
Kernel Tools
Built-in file system, search, and GUI automation tools for the Allternit kernel.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Built-in file system, search, and GUI automation tools for the Allternit kernel.
https://api.allternit.com/api/v1/tools/execute
| Module | Tools |
|---|---|
fs | fs.write, fs.read, fs.list |
search | web.search |
gui | gui.screenshot, gui.click, gui.type_text, gui.scroll |
fs.write{
"tool": "fs.write",
"args": {
"path": "notes/todo.md",
"content": "- Review PR\n- Update docs"
}
}
{
"text": "Successfully wrote 26 bytes to notes/todo.md",
"data": {
"path": "notes/todo.md",
"size": 26
}
}
fs.read{
"tool": "fs.read",
"args": { "path": "notes/todo.md" }
}
fs.list{
"tool": "fs.list",
"args": { "path": "notes" }
}
web.search{
"tool": "web.search",
"args": { "query": "Allternit platform" }
}
{
"text": "- Allternit (https://allternit.com)\n AI agent platform...",
"data": {
"results": [
{
"title": "Allternit",
"snippet": "AI agent platform",
"link": "https://allternit.com"
}
]
}
}
gui.screenshot{
"tool": "gui.screenshot",
"args": {}
}
{
"base64_image": "iVBORw0KGgoAAAANSUhEUgAA...",
"width": 1920,
"height": 1080,
"timestamp": 1755120000
}
gui.click{
"tool": "gui.click",
"args": {
"x": 100,
"y": 200,
"button": "left",
"count": 1
}
}
gui.type_text{
"tool": "gui.type_text",
"args": {
"text": "Hello, Allternit",
"delay_ms": 50
}
}
gui.scroll{
"tool": "gui.scroll",
"args": {
"dx": 0,
"dy": 3,
"amount": 3
}
}
| Error | Meaning |
|---|---|
path_not_allowed | Requested path is outside the configured root |
read_failed | File could not be read |
write_failed | File could not be written |
search_failed | Web search returned no results or was blocked |
gui_automation_failed | Screenshot or input action failed |