https://github.com/valksor/kvelmo
Whether you're a product manager describing a feature, an ops person fixing a process, or a developer automating routine work — kvelmo provides the guardrails to ship changes safely. It coordinates your local AI agent to handle the mechanics while you stay in control of review and approval.
https://github.com/valksor/kvelmo
ai automation claude orchestration planning review valksor wrapper
Last synced: 3 months ago
JSON representation
Whether you're a product manager describing a feature, an ops person fixing a process, or a developer automating routine work — kvelmo provides the guardrails to ship changes safely. It coordinates your local AI agent to handle the mechanics while you stay in control of review and approval.
- Host: GitHub
- URL: https://github.com/valksor/kvelmo
- Owner: valksor
- License: bsd-3-clause
- Created: 2025-12-26T21:29:09.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2026-03-30T06:31:31.000Z (3 months ago)
- Last Synced: 2026-03-30T08:34:42.298Z (3 months ago)
- Topics: ai, automation, claude, orchestration, planning, review, valksor, wrapper
- Language: Go
- Homepage: https://valksor.com/docs/kvelmo/
- Size: 12.1 MB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# kvelmo
[](https://github.com/valksor)
[](https://github.com/valksor/kvelmo/blob/master/LICENSE)
[](https://github.com/valksor/kvelmo/releases/latest)
[](https://github.com/valksor/kvelmo/commits/master)
[](https://coveralls.io/github/valksor/kvelmo?branch=master)
[](https://goreportcard.com/report/github.com/valksor/kvelmo)

kvelmo is a local orchestration system for AI-assisted development.
It manages the full lifecycle of development tasks — from loading requirements through planning, implementation, review, and pull request submission. The Web UI and desktop app are the main experience, with CLI and TUI available for those who prefer them.
kvelmo is not the agent. It is the system around the agent: workspace setup, checkpoints, approvals, governance, observability, and recovery.
> **Note:** kvelmo is currently only available through [nightly builds](https://valksor.com/docs/kvelmo/nightly/) or by building from source. There is no stable release yet.
## Why Use It
- **Web-first workflow** for creating tasks, watching progress, reviewing changes, and managing project state visually
- **Human oversight at every step** so planning, implementation, review, and submission stay explicit and inspectable
- **Runs locally** with no hosted service required for the core workflow
- **Works across interfaces** so you can start in the browser and continue in CLI or TUI without losing context
- **Recovery built in** through checkpoints, undo/redo, reset paths, and resumable task state
- **Operational depth** beyond the happy path: policy, CI, security, activity logs, exports, recordings, notifications, and task grouping
## How It Works
```text
start -> plan -> implement -> simplify? -> optimize? -> review -> submit -> finish
```
Each phase updates task state, records checkpoints, and exposes progress to every interface.
At a high level:
1. **Start** loads work from a file or provider and prepares the workspace
2. **Plan** produces a reviewable specification before code changes begin
3. **Implement** executes the approved direction in the project workspace
4. **Simplify** and **Optimize** are optional refinement passes
5. **Review** adds the human checkpoint before code leaves the machine
6. **Submit** creates the PR and updates provider-facing state
7. **Finish** cleans up after merge
## Choose Your Interface
### Desktop App
The desktop app is a native application for managing your workflow visually — no terminal required.
**[Desktop App Guide](https://valksor.com/docs/kvelmo/nightly/#/desktop/index)**
### Web UI
The browser UI gives you the same visual experience, started from one command:
```bash
kvelmo serve --open
```
Then open `http://localhost:6337` if it did not open automatically.
Use the Web UI when you want:
- project and task dashboards
- visual workflow controls
- live output, chat, logs, and review context
- access to panels for memory, screenshots, browser automation, jobs, code graph, recordings, policy, CI, and more
**[Web UI Guide](https://valksor.com/docs/kvelmo/nightly/#/web-ui/getting-started)**
### CLI
The CLI is available for scripting, shell-native workflows, automation, and provider operations.
```bash
kvelmo start --from file:task.md
kvelmo plan
kvelmo implement
kvelmo review
kvelmo submit
```
**[CLI Reference](https://valksor.com/docs/kvelmo/nightly/#/cli/index)**
### TUI
The TUI gives you a full-screen terminal dashboard with workflow control and live output, without switching to a browser.
```bash
kvelmo tui
```
## What kvelmo Is
- **An orchestrator for development work** — it coordinates AI agents, it is not one itself
- **A local product** that runs on your machine with no hosted service required
- **A workflow system** with clear steps, approvals, and recovery at every stage
- **Available everywhere** — desktop app, Web UI, CLI, TUI, and RPC
- **A governance layer** for policy checks, approvals, auditability, and submission discipline
## What kvelmo Is Not
- **Not a one-click autonomous coder** that silently edits and ships code
- **Not a hosted service** — the core workflow runs entirely on your machine
- **Not only a shortcut to PRs**; it also handles the operational edges around agent work
- **Not limited to a single agent**; Claude, Codex, and custom agents can all participate
## Key Capabilities
| Capability | What It Covers |
|------------|----------------|
| **Task intake** | Files plus providers such as GitHub, GitLab, Linear, Wrike, Jira, and Azure DevOps |
| **Workflow orchestration** | Start, plan, implement, simplify, optimize, review, submit, finish |
| **Checkpointing** | Undo, redo, reset, abandon, and resumable task history |
| **Observability** | Status, watch, logs, activity, jobs, stats, recordings, event log |
| **Governance** | Approvals, checklisting, policy, CI checks, security scanning, audit trail |
| **Project intelligence** | Memory, screenshots, browser automation, code graph, discovery, recap, explain |
| **Operations** | Backups, exports, notifications, access tokens, hooks, worker pools, task groups |
## Installation
kvelmo is currently available through nightly builds or by building from source.
**Nightly build:**
```bash
curl -fsSL https://raw.githubusercontent.com/valksor/kvelmo/master/install.sh | bash
```
**Build from source:**
```bash
git clone https://github.com/valksor/kvelmo.git
cd kvelmo
make build
make install
```
After installation:
```bash
kvelmo version
kvelmo diagnose
```
If your preferred agent CLI is available locally, kvelmo can orchestrate it. Claude CLI is the default path, and Codex plus custom/API-backed agents are also supported.
## Getting Started
The fastest way to start is the desktop app or Web UI. For the Web UI:
```bash
kvelmo serve --open
```
For CLI users, the core workflow commands are:
```bash
kvelmo start "Refactor the settings panel"
kvelmo plan
kvelmo implement
kvelmo review
kvelmo submit
```
## Documentation
| Guide | Description |
|-------|-------------|
| [Quickstart](https://valksor.com/docs/kvelmo/nightly/#/quickstart) | Get started and learn the workflow |
| [Desktop App](https://valksor.com/docs/kvelmo/nightly/#/desktop/index) | Native application guide |
| [Web UI Guide](https://valksor.com/docs/kvelmo/nightly/#/web-ui/getting-started) | Browser experience |
| [CLI Reference](https://valksor.com/docs/kvelmo/nightly/#/cli/index) | Command reference |
| [Workflow Concepts](https://valksor.com/docs/kvelmo/nightly/#/concepts/workflow) | Steps, approvals, and recovery |
| [Providers](https://valksor.com/docs/kvelmo/nightly/#/providers/index) | External task sources |
| [Configuration](https://valksor.com/docs/kvelmo/nightly/#/configuration/index) | Settings, tokens, and behavior |
## Development
```bash
make build
make quality
make test
```
See `CONTRIBUTING.md` for the full contributor workflow.
## Prototype
`prototype/` contains the historical reference implementation that informed the current architecture. It is preserved as read-only reference material and is not the active development target.
## License
[BSD 3-Clause License](LICENSE)