Back to home

The platform, in depth

Not a dashboard on Kubernetes.
A real cloud you own.

One console for every service, a purpose-built OS on every VM, a CLI baked into each instance, and an on-device AI shell. Here's what's actually under the hood.

Management Console

Everything in one console.

A full management UI — dashboards, inline function editor, VM console, IAM policy builder. Every service, one login.

console.koshcloud.com/ec2/instances
KoshCloud
A
admin
is_admin: true
Compute/Instances

Instances

Virtual machines running on Aether OS · arm64 · HVF accelerated

Instance
State
Image
vCPU / RAM
SSH Port
Launched
Actions
i-4f2a31
aether-v8-arm64
running
ami-a1b2c3
1 / 512 MB
:2201
2 min ago
i-9c7b22
aether-v8-arm64
running
ami-a1b2c3
1 / 512 MB
:2202
18 min ago
i-3d0e58
aether-v8-arm64
stopped
ami-a1b2c3
1 / 512 MB
—
3 hrs ago

3 instances · 2 running · 1 stopped

11 services in the sidebar — one login covers everything

Inline function code editor — write, deploy, test without leaving the browser

Live VM console — SSH access directly from the UI

Aether OS

Every VM ships with a cloud OS built-in.

Most private clouds give you a bare VM and walk away. KoshCloud ships Aether OS — a purpose-built Linux that knows it's running on KoshCloud, and gives every instance first-class cloud identity from the moment it boots.

0.9 second cold boot

Direct kernel boot — no BIOS, no firmware, no grub. Apple Silicon HVF acceleration. The instance is live before you finish typing the command.

Automatic instance identity

Every instance gets a unique IAM credential injected at boot via IMDS — auto-rotates every 12 hours. No secrets in your code, ever.

Cloud CLI built into every VM

chetu is pre-installed. SSH in and immediately run chetu store put, chetu fn invoke, or chetu whoami — no setup required.

AI-powered shell — 30+ intents

Type plain English: chetu create folder myproject, chetu why is it slow, or chetu ask <anything> — answered by a local LLM. No cloud. No latency.

arm64 native — built for Apple Silicon

No emulation. Aether OS runs natively on arm64. Combined with HVF, you get bare-metal performance inside a managed VM with full SSH PTY support.

aether-os — ssh aether@instance
Aether OS v8 · arm64 · HVF · kernel uptime 0.5s · booted in 0.9s
aether@i-4f2a31:~# chetu meta
instance-id: i-4f2a31
hostname: i-4f2a31.aether.local
local-ipv4: 10.0.2.15
ram-mb: 512   vcpus: 1
credential: •••••••• (rotates in 11h 42m)
aether@i-4f2a31:~# chetu store put --bucket app-data --key config.json
✓ uploaded config.json → app-data
aether@i-4f2a31:~# chetu fn invoke process-order
{"statusCode":200,"body":"ok"}   duration: 12ms
aether@i-4f2a31:~# chetu vault get DB_PASSWORD
•••••••• [auto-clears in 30s]
aether@i-4f2a31:~#

IMDS credentials auto-rotate every 12 hours

Served at 10.0.2.100/latest/meta-data/iam/security-credentials/aether

Cloud CLI

Every service. One command away.

SSH into any Aether instance and the full KoshCloud API is right there — no SDK install, no config files, no extra auth. chetu is pre-installed on every VM.

Cloud service commands

chetu fnlist · create · invoke · logs · delete
chetu storelist · ls · put · get · delete
chetu dblist · scan · get · put
chetu queuelist · send · peek
chetu vaultlist · get · put
chetu eventslist · publish
chetu computelist · status · stop · start · terminate · images
chetu iamtoken · whoami

Gateway: http://10.0.2.2:8080  ·  auth via IMDS token (auto)

aether@i-4f2a31 — cloud cli
aether@i-4f2a31:~# chetu fn list
NAME RUNTIME LAST INVOKED
process-order python3 2 min ago
send-email node18 14 min ago
aether@i-4f2a31:~# chetu store ls app-data
config.json 4.2KB 2026-06-20 08:12
orders/ — dir
aether@i-4f2a31:~# chetu db scan orders --limit 3
[{"id":"ord-001","status":"fulfilled"},
{"id":"ord-002","status":"pending"}]
2 items returned
aether@i-4f2a31:~# chetu queue send jobs --msg '{"task":"resize"}'
✓ queued msg-id: msg-7c3a1
aether@i-4f2a31:~#

Aether OS · AI Shell

Your VM speaks plain English.

Every Aether instance ships with 30+ natural-language intents built into the shell — plus a local LLM (llama3.2 via Ollama) for anything that goes beyond the built-ins. No extra setup. No cloud API calls. Runs fully on-device.

30+ intents · 10 categories

Navigation & Files

chetu where am I  ·  chetu show files  ·  chetu go to work  ·  chetu create folder myproject  ·  chetu rename X to Y

System Intelligence

chetu why is it slow  ·  chetu how much memory  ·  chetu disk space  ·  chetu free up space  ·  chetu stop program nginx

Network & Search

chetu am I online  ·  chetu download <url>  ·  chetu find file config.json  ·  chetu find largest files

Local LLM — anything else

chetu ask how do I reverse a string in python  ·  chetu ask explain this error

LLM runs on-device via Ollama (llama3.2) — zero data leaves your perimeter

aether@i-4f2a31 — ai shell
aether@i-4f2a31:~# chetu create folder myproject with 3 files
✓ folder myproject/ created
✓ file1.txt   file2.txt   file3.txt created inside
aether@i-4f2a31:~# chetu why is it slow
Memory: [███░░░░░░░] 28% very light
CPU load: 0.12   1 vCPU available
Top process: node 14MB   running light and healthy
aether@i-4f2a31:~# chetu ask how do I reverse a list in python
▸ Ollama llama3.2 (on-device)
Use my_list[::-1] for a reversed copy,
or my_list.reverse() to reverse in-place.
aether@i-4f2a31:~#

Interpreted, not just dumped

Responses include a verdict, a visual bar, and a "what to do next" — not raw numbers. The OS reads and reasons about system state.

Differentiators

Not another cloud wrapper.

Most "private cloud" products are Kubernetes with a dashboard. KoshCloud is something different — purpose-built services, a custom OS, and capabilities you won't find anywhere else.

Real VMs in <1 second

Not containers. Not sandboxes. Full hardware-isolated virtual machines with their own kernel — booting in under a second thanks to direct kernel boot and HVF.

SQL on your Document DB

Run standard SQL queries on your NoSQL database via DuckDB — a feature no major cloud platform offers natively. Plain JSON, no typed attribute nonsense.

Per-instance IAM identity

Every VM gets its own rotating credential at boot — via IMDS. No static keys in env vars. No secret sprawl. Tenant isolation enforced at the gateway.

Fully air-gapped capable

KoshCloud runs with zero internet dependency. Ship it to an aircraft carrier, a hospital, or a factory floor. All 11 services work completely offline.

Web console + CLI

Full management UI at port 3000 — dashboards for every service, inline function code editor, VM console, IAM policy builder. Plus the chetu CLI for automation.

Zero Migration Effort

Your existing SDKs, infrastructure code, and CLI tooling work without modification. Change one endpoint URL — zero code changes, zero retraining, zero rewrites.

Built for AI workloads

Run LLM inference, vector databases, and ML pipelines on your own hardware — with the full cloud primitives (queues, functions, storage, secrets) needed to build production AI systems. No GPU tax. No data leaving your network.

Get early access

How it works

10 minutes to your own cloud.

01

Deploy

Run docker compose up on any machine you own. All 11 services start in under a minute. No cloud account required.

02

Connect

Point your apps at your gateway URL. Same APIs. Same SDKs. Same config your team already knows. Zero migration effort.

03

Own

Your data stays inside your perimeter. Your infrastructure, your rules. No invoice arrives at the end of the month.