Frontend
Modern SvelteKit-based interface for designing workflows, monitoring automations, and managing agents. Provides intuitive dashboards for both technical and business users.
Stavily is engineered as a comprehensive business automation platform that transforms manual operations into intelligent, scalable workflows. Our architecture is built around four core pillars: Orchestration Engine, Plugin-Oriented Design, Intelligent Agents, and Adaptive Memory - working together to deliver enterprise-grade automation.
Frontend
Modern SvelteKit-based interface for designing workflows, monitoring automations, and managing agents. Provides intuitive dashboards for both technical and business users.
Backend Orchestrator
The heart of Stavily’s automation engine, featuring a robust workflow engine, plugin manager, and secure APIs that coordinate complex business processes.
Sensor Agents
Lightweight Go-based agents that monitor external systems, collect metrics, and trigger automated responses based on predefined conditions.
Action Agents
Secure Go-based execution agents that perform automated tasks across your infrastructure, from incident response to system maintenance.





graph TB
subgraph "User / External Systems"
User["👨💻 DevOps Engineer / User"]
ExternalAPI["🌐 External APIs
Cloud Providers, Monitoring Tools"]
end
subgraph "Stavily Platform"
WebUI["💻 Web UI
(SvelteKit)"]
PrivateAPI["🔒 Private API
/private/v1/*"]
PublicAPI["🌐 Public API
/agents/v1/*"]
Orchestrator["⚙️ Core Services
Workflow, Agents, Plugins"]
DB[("🗄️ Database
PostgreSQL + Redis")]
end
subgraph "Managed Infrastructure"
SensorAgent["🕵️ Sensor Agent
(Go)
Monitors & detects events"]
ActionAgent["🤖 Action Agent
(Go)
Executes automated tasks"]
end
User --> WebUI
WebUI --> PrivateAPI
PrivateAPI --> Orchestrator
Orchestrator --> DB
SensorAgent --> PublicAPI
ActionAgent --> PublicAPI
PublicAPI --> Orchestrator
ExternalAPI --> SensorAgent
ActionAgent --> ExternalAPI