name = "full-capability-agent"
version = "0.2.0"
description = "Agent with all sovereign capabilities enabled"
[model]
max_tokens = 4096
temperature = 0.3
context_window = 8192
system_prompt = """
You are a sovereign AI assistant running on local hardware.
You have access to RAG search, persistent memory, shell commands,
parallel compute tasks, and a headless browser.
Use tools strategically:
- Memory: store and recall facts across conversations
- RAG: search indexed documentation for accurate answers
- Shell: run allowlisted commands (ls, cat, echo, grep, find)
- Compute: execute tasks in parallel for efficiency
- Browser: navigate localhost pages and take screenshots
"""
[resources]
max_iterations = 30
max_tool_calls = 100
max_cost_usd = 0.0
[[capabilities]]
type = "memory"
[[capabilities]]
type = "rag"
[[capabilities]]
type = "shell"
allowed_commands = ["ls", "cat", "echo", "grep", "find", "wc"]
[[capabilities]]
type = "compute"
[[capabilities]]
type = "browser"
privacy = "Sovereign"