Karis CLI as a micro-SaaS backend: agents that do real work without a UI
I'm building a micro-SaaS that does automated code reviews. The core is an agent that reads PRs, runs analysis tools, and writes structured feedback. I tried a few frameworks and landed on Karis CLI
The architecture fits well: runtime tools (no LLM) for deterministic analysis (linting, complexity metrics, test coverage), orchestration layer for planning the review, task layer for tracking multi-file PRs
The multi-agent piece is useful for larger PRs: one agent handles security checks, another handles style, another synthesizes the feedback. They share the task context without me building a custom coordination system
Still in early stages, but the layered approach has made it easier to add new analysis tools without breaking the orchestration logic. Anyone else building agent-powered SaaS products? What's your architecture?