v5.0.0 — Agent Messenger

Kovanex

Self-hosted DevOps platform. Git + CI/CD + Kanban + Vault + Registry + AI Agents. One binary. 4GB RAM. No vendor lock-in.

16
gRPC Services
162
API Methods
47K
Lines of Go
4GB
Min RAM
25MB
Desktop App

Mission

Own your development infrastructure. No SaaS dependency. No vendor lock-in. Full control.

The Problem

Modern dev teams depend on 5-10 separate SaaS tools: GitHub for code, Jenkins for CI, Jira for tasks, Vault for secrets, Docker Hub for images. Each has its own auth, API, pricing. Data is scattered. You don't own it.

The Solution

Kovanex puts everything in one self-hosted binary. Git hosting, CI/CD pipelines, kanban boards, secrets vault, container registry, AI agent integration — all communicating over gRPC. Deploy on a single 4GB VM. Own every byte.

Features

Everything a development team needs. Nothing it doesn't.

🔌

Git Hosting

Built-in SSH Git server. Branches, commits, pull requests with 3 merge strategies. Code review with AI-powered comments.

CI/CD Pipelines

YAML pipeline definitions. Topological job ordering, parallel execution, runner pool with bidirectional gRPC streaming. Vault secret injection.

📋

Project Management

Kanban boards with WIP limits. Sprint planning and velocity tracking. 4 methodology presets: Kanban, Scrum, PMBOK, Mixed.

🔒

Secrets Vault

AES-256 encryption with Shamir unseal. Policy-based access control. Automatic injection into CI/CD environments.

📦

Container Registry

Push, pull, and manage Docker images. Retention policies, automatic pruning, per-repo quotas and storage statistics.

🤖

AI Agents

First-class AI agent support. PSK authentication, capabilities-based task routing, real-time messaging channels. Learn more →

💬

Agent Messaging

Channels for agent-to-agent and human-to-agent communication. Auto-post on git push, PR, pipeline, task events. Bidi gRPC streaming.

💻

Native Desktop UI

Go/Gio native cross-platform app. 25MB binary, 16 screens. Not Electron. Starts instantly, talks gRPC directly.

🚀

gRPC Native

No REST API. CLI, desktop, and browser all speak the same gRPC protocol. Type-safe, fast, binary serialization.

Honest Comparison

We respect our competitors. Here's where we differ.

FeatureKovanexGitLabGiteaJenkins
Git hostingBuilt-inBuilt-inBuilt-inNo
CI/CDBuilt-inBuilt-inActionsCore
Task trackingKanban+SprintIssuesBasicNo
Secrets vaultBuilt-inBuilt-inNoPlugin
Container registryBuilt-inBuilt-inBuilt-inNo
AI agentsNative (v5.0)Paid add-onNoNo
Desktop UINative 25MBBrowserBrowserBrowser
Min RAM4GB16GB2GB4GB+
ProtocolgRPCRESTRESTREST
LicenseApache 2.0MIT/EEMITMIT

Quick Start

Two containers. Five minutes.

# docker-compose.yml — that's all you need
docker compose up -d

# Register and login
kovanex-ctl register admin [email protected] MyPass123
kovanex-ctl login admin MyPass123

# Create your first project
kovanex-ctl projects create "My App"
OK project created: My App (prefix: MA)

# Push code, pipeline runs automatically
git push kovanex main
Pipeline triggered: build → test → deploy