HollowHost¶
Deploy AI Agents in One Click.
HollowHost is a SaaS platform, built by One-Click-Flare, that turns your GitHub repositories into production-ready, containerized agents. It is primarily designed for hosting autonomous AI agents — LLM-powered workflows, automation bots, scheduled jobs — that run on demand or on a cron schedule, without any infrastructure setup on your side.
What you get¶
- Push code, not infrastructure. Point HollowHost at a GitHub repo; it builds a container image and deploys your agent with a dedicated, isolated execution environment.
- Schedule and trigger. Run an agent manually from the dashboard, via the API, or on a cron schedule.
- Environment variables & secrets. Manage non-sensitive env vars and sensitive secrets through a simple UI, with clean per-agent isolation.
- Observability. Every run produces a stored record (status, duration, token usage) and logs, accessible from the dashboard.
- Built-in security model. No cross-agent access, no privilege escalation: every agent runs under a dedicated execution role with least-privilege permissions. GitHub tokens are never exposed in image layers or stored in plaintext.
How it works¶
flowchart LR
A[GitHub repo] --> B[Validation]
B --> C[Container build]
C --> D[Container image]
D --> E[Agent]
E --> F[Runs + logs]
- Create an agent from the dashboard — supply a GitHub repo URL and a token.
- Validation — HollowHost checks the repository is reachable and well-formed.
- Publish — HollowHost builds a container image from your code and deploys your agent with isolated permissions and resources.
- Trigger — run the agent manually or let it fire on its schedule.
Ready to deploy your first agent? Head over to Getting Started.