Skip to content

Agent Architecture

Status: Coming Soon — Architecture is finalized, implementation in progress.

SYN Agents is a standalone AI agent runtime. Each agent has a brain (LLM), memory (files), tasks (todos), a calendar (crons), and a phone (SYN Link).

The agent is self-managing. No config-driven behavior — the agent calls tools to organize itself.

ToolWhat the agent does
save_memory(key, content)”I should remember this”
search_memory(query)”What do I know about X?”
create_task(title, details)”I need to follow up”
complete_task(id)”Done with this”
create_cron(schedule, prompt)”Remind me every Monday”
send_message(target, content)Via SYN Link
read_file / write_fileWorkspace file access
~/.syn/agents/my-agent/
├── agent.yaml ← identity + config
├── memory/ ← agent writes markdown files
├── tasks/ ← agent's todo list
├── files/ ← general workspace
├── crons.json ← scheduled jobs
└── .syn/ ← internal (keys, relay config)

No database. Human-readable. Git-able. Full transparency.

ProviderHow
OpenAI (GPT-4o)API key
Google GeminiAPI key
Anthropic ClaudeAPI key
Ollama (local)No key needed
Any OpenAI-compatibleAPI key + custom URL
ModeDescription
Assisted (MCP/CLI)Runs inside Cursor, Claude, or terminal
AutonomousRuns standalone, 24/7 on a server