kukeon

module
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 11, 2026 License: Apache-2.0

README ΒΆ

πŸŒͺ️ kukeon: Run a team of AI agents on your own Linux.

Test

Self-hosted runtime for AI coding agents on your own Linux host.

Kukeon runs Claude Code and other agent workloads as isolated containerd cells on a single Linux host you own β€” from a cloud VM down to a Raspberry Pi. Each agent gets an attachable terminal, logs, scoped secrets, and reproducible blueprints/configs, with the Git forge as the system of record. No SaaS sandbox, no Kubernetes cluster, every action inspectable.

Start with one agent cell; grow into per-project agent teams declared with kuketeam.yaml.

The longer arc. Agent isolation is the practical starting point. The long-term direction is a goal compiler: a self-hosted system where a team of AI agents β€” a planner, developers, a reviewer, and a meta-agent that improves the others β€” takes a goal, builds it, reviews it, ships it, and refines both the product and itself. A human states the goal and merges the PRs; everything in between runs on its own.

Under the hood: a containerd-native runtime (kukeond + kuke) gives each agent real isolation with primitives you can inspect (ctr, ip link, ls /sys/fs/cgroup). A CellBlueprint + CellConfig model describes agent roles as templates and instantiates them as concrete cells. A daemon-owned lease mechanism makes work-claims atomic across concurrent cells. The Git forge is the system of record β€” every plan, PR, and audit-trail entry lives in infrastructure you already trust.

Three feedback loops close the system back on itself: a work loop that ships PRs; Loop A that refines the agents' own playbooks through reflected lessons; Loop B that surfaces verified product defects from running operation back into the work queue. The whole shape is a bootstrapping compiler β€” the system that ultimately builds and improves itself, with the human as the trusted stage-0 on the merge gate.

See docs/site/vision.md β€” Building a Goal Compiler: The Design of Kukeon β€” for the full design essay.

Philosophy

«καὢ ὁ ΞΊΟ…ΞΊΞ΅α½ΌΞ½ διίσταται μὴ κινούμΡνος» "The barley-drink separates if it isn't stirred"

Fragment DK 22B125 Heraclitus, circa 500 BC

Heraclitus used the kykeon, a simple barley drink, as an analogy for the logos, the hidden principle of order in the cosmos. The drink becomes itself only when its ingredients are mixed and kept in motion. Without movement, it separates and loses its identity.

Kukeon applies the same metaphor to computing:

  • containers, networks, and cgroups are the ingredients
  • kukeond is the stirring motion that brings them together
  • the running system is the order that emerges through interaction

Kukeon brings coherence and structure to low-level Linux primitives that normally remain scattered and disconnected. It unifies them into a living, dynamic system.

Status

Kukeon is in v0.5.0 beta. The operator surface β€” realms, spaces, stacks, cells, containers, the daemon, kuke init / apply / get / attach / log, the one-line installer, and v0.4.0 manifest fields β€” is shipping and usable today. "Beta" means what's released works reliably; "pre-v1" means SemVer API stability isn't promised yet β€” minor releases can still introduce breaking changes to manifests, CLI verbs, and daemon semantics.

Still pre-v1, gated by:

  • Agent-native primitives β€” Session (#46) and Interactive UC2 (#57) are the gate for the agent-native story.
  • Schema rework β€” crew-layers absorption into CellBlueprint / CellConfig / Secret (#423) is a breaking change.
  • Daemon-only verbs β€” --no-daemon retirement (#217) is mid-flight; the CLI surface is still moving. The flag is already gone from workload commands (apply, create, run, attach, delete, kill, get of non-realm kinds); in-process mode is still reachable via KUKEON_NO_DAEMON=true or an explicit --run-path.
  • Reconciler-driven lifecycle β€” convergent create/delete (#224) changes runtime semantics.

References:

  • Umbrella: #48
  • v0.5.0 release tracker: #440
  • Library substrate (sbsh): sbsh#118 βœ…

Quick Start

Get kukeon running on a single Linux host in minutes.

Prerequisites
  • Linux with cgroups v2
  • containerd running at /run/containerd/containerd.sock
Install
curl -fsSL https://kukeon.io/install.sh | bash

The installer detects your platform, verifies the prerequisites above (and prints a distro-aware hint on any miss), downloads the latest release, verifies its sha256 checksum, installs kuke + kukeond to /usr/local/bin, runs sudo kuke init to bring the daemon up, and (on systemd hosts) installs /etc/systemd/system/kukeond.service so kukeond comes back automatically after a host or containerd restart. On systemd-less hosts the unit step is skipped with a notice β€” bring kukeond up manually after each reboot with sudo kuke daemon start. Pass --check to run the prereq checks only without touching the system:

curl -fsSL https://kukeon.io/install.sh | bash -s -- --check

After install completes you should see the daemon's realm/space/stack hierarchy provisioned and kukeond listening on its unix socket:

Realm: default (namespace: default.kukeon.io)
System realm: kuke-system (namespace: kuke-system.kukeon.io)
Run path: /opt/kukeon
...
kukeond is ready (unix:///run/kukeon/kukeond.sock)
Manual install

If you would rather drive each step yourself (e.g. installing onto an air-gapped host, or pinning a non-default release tag):

# Set your platform (defaults shown)
export OS=linux        # Options: linux
export ARCH=amd64      # Options: amd64, arm64

# Install kuke (the CLI also dispatches as kukeond based on argv[0])
curl -L -o kuke https://github.com/eminwux/kukeon/releases/download/v0.5.0/kuke-${OS}-${ARCH} && \
chmod +x kuke && \
sudo install -m 0755 kuke /usr/local/bin/kuke && \
sudo ln -f /usr/local/bin/kuke /usr/local/bin/kukeond

# Provision the default realm/space/stack hierarchy and start the daemon.
sudo kuke init
Daily use without sudo

kuke init provisions a system kukeon group and sets the kukeond socket to mode 0660 root:kukeon. Add yourself to the group so daemon-routed commands (kuke get, kuke create, kuke apply, kuke delete, kuke log, kuke attach) don't need sudo:

sudo usermod -aG kukeon $USER
# Log out and back in (or run `newgrp kukeon`) so the group takes effect, then:
kuke get realms

Operations that bypass the daemon still need root: kuke init, kuke daemon reset, kuke image load (in-process by design β€” every kuke image * subcommand runs in-process), kuke purge / kuke uninstall with --no-daemon, and any command run with KUKEON_NO_DAEMON=true or an explicit --run-path.

Autocomplete
cat >> ~/.bashrc <<EOF
source <(kuke autocomplete bash)
EOF

kuke autocomplete zsh and kuke autocomplete fish are also supported.

Completions are dynamic: every tab dispatches through kuke __complete, so newly added blueprints, configs, realms, and cells are picked up on the next tab without re-sourcing the script.

Documentation

Complete documentation is available at https://kukeon.io, including concepts, architecture, CLI reference, manifest reference, guides, and tutorials.

Why kukeon

Your agents, your machines, your rules. SaaS agent sandboxes (E2B, Daytona, Modal) force your agents to run on their cloud. Kukeon runs them on yours β€” a cloud VM, a homelab, a single Linux box with containerd. No vendor lock-in, no data leaving your infrastructure, no credit card.

The agents β€” planner, devs, reviewer, meta β€” run as cells under kukeond, with separation-of-powers enforced by the runtime: no agent merges its own work, and the merge gate stays with the human.

  • Sovereign β€” every byte of agent state lives on hosts you own
  • Declarative β€” Session + Interactive + onEnd.persist as first-class YAML
  • Isolated β€” realm/space/cell backed by real Linux primitives (containerd namespaces, CNI networks, cgroups)
  • Self-hosted β€” no cluster, no etcd, no scheduler, no SaaS
  • Transparent β€” inspect what the daemon did with ctr, ip link, ls /sys/fs/cgroup

What it is good for today

Kukeon is useful right now as a single-host runtime for AI coding agents:

  • Run Claude Code in an isolated cell β€” the canonical first workflow, from zero to a live prompt. β†’ See docs/site/guides/run-claude-code.md.
  • Run one-shot agent jobs from a CellBlueprint β€” parametrized prompts driven with kuke run --from-blueprint.
  • Define repeatable agent environments with CellBlueprint + CellConfig.
  • Compose a per-project agent roster with kuke team init from a committed kuketeam.yaml β€” the next-level path once one cell isn't enough. β†’ See docs/site/cli/kuke-team-init.md.
  • Operate a lightweight single-host agent runtime without Kubernetes.

What it is not (yet)

Setting expectations before you install:

  • Not a Kubernetes replacement for multi-node clusters or cross-region orchestration.
  • Not a SaaS sandbox β€” execution stays on infrastructure you own.
  • Not yet a fully autonomous software company β€” the human merge gate is a deliberate stage-0, not a missing feature.
  • Pre-v1 β€” manifests, CLI verbs, and daemon semantics can still change between minor releases.

See Non-Goals below for the full design boundaries.

Usage Examples

Common workflows for working with realms, spaces, stacks, and cells.

List the default hierarchy
$ sudo kuke get realms
NAME           STATE    AGE
default        Ready    <age>
kukeon-system  Ready    <age>

$ sudo kuke get spaces
NAME     REALM    STATE
default  default  Ready

Add -o wide for the per-kind extra columns (realm's wide appends NAMESPACE), or -o yaml / -o json for full resource details (including cgroupPath).

Run a hello-world cell

A minimal example that brings up a single container serving a static HTML page with busybox httpd lives at docs/examples/hello-world.yaml:

apiVersion: v1beta1
kind: Cell
metadata:
  name: hello-world
spec:
  id: hello-world
  realmId: default
  spaceId: default
  stackId: default
  containers:
    - id: web
      image: docker.io/library/busybox:latest
      command: /bin/sh
      args:
        - -c
        - |
          mkdir -p /www && \
          cat > /www/index.html <<'HTML'
          <!doctype html>
          <html>
            <head><meta charset="utf-8"><title>kukeon hello-world</title></head>
            <body style="font-family: sans-serif">
              <h1>Hello, world from kukeon!</h1>
            </body>
          </html>
          HTML
          exec busybox httpd -f -v -p 8080 -h /www

Apply it and verify the cell is running. Cell creation currently goes in-process because the kukeond container image does not yet bind-mount /run/containerd/containerd.sock; pass --run-path /opt/kukeon (or set KUKEON_NO_DAEMON=true) to skip the daemon round-trip:

# Create the cell (containers auto-start).
sudo kuke apply -f docs/examples/hello-world.yaml --run-path /opt/kukeon

# Confirm the cell is Ready.
sudo kuke get cells --realm default --space default --stack default

# Find the root container's IP on the default-default bridge (10.88.0.0/16) and curl it.
ROOT_PID=$(sudo ctr -n kukeon.io task ls | awk '/hello-world_root/ {print $2}')
CELL_IP=$(sudo nsenter -t "${ROOT_PID}" -n ip -4 -o addr show eth0 | awk '{print $4}' | cut -d/ -f1)
curl http://${CELL_IP}:8080/

Tear it down with:

sudo kuke delete cell hello-world \
    --realm default --space default --stack default --cascade --run-path /opt/kukeon
Development environment

Iterating on kuke/kukeond without a registry push: build from source, load the image into containerd by hand, then kuke init against it.

Prerequisite β€” create the kuke-system.kukeon.io namespace first. ctr images import needs the target namespace to already exist; if it doesn't, the import succeeds silently but nothing lands in the namespace and the next kuke init will fail to find the image. The simplest bootstrap order is to let kuke init create the namespace first, then import, then re-run kuke init with your local image:

# 1. First bootstrap: creates the kuke-system.kukeon.io containerd namespace
#    (and the rest of the hierarchy). The kukeond cell will fail to pull the
#    default ghcr.io image without network β€” that's fine, we only need the
#    namespace to exist. Alternatively create it directly:
sudo ctr namespaces create kuke-system.kukeon.io

# 2. Build the binaries. kukeond is argv[0]-dispatched from the kuke binary.
rm -f kuke kukeond
make kuke
ln -sf kuke kukeond

# 3. Build the container image and import it into the kuke-system namespace.
#    VERSION only affects the embedded kuke --version string.
docker build --build-arg VERSION=v0.0.0-dev -t kukeon-local:dev .
docker save kukeon-local:dev | \
    sudo ctr -n kuke-system.kukeon.io images import -

# 4. Verify the image is present in the namespace.
sudo ctr -n kuke-system.kukeon.io images ls | grep kukeon-local

# 5. Run (or re-run) kuke init pointed at the locally-loaded image.
sudo ./kuke init --kukeond-image docker.io/library/kukeon-local:dev

To iterate after a change, tear down just the kukeond cell (user data under /opt/kukeon/default is left intact) and repeat steps 2–5:

sudo kuke kill kukeond \
    --realm kuke-system --space kukeon --stack kukeon --run-path /opt/kukeon
sudo kuke delete cell kukeond \
    --realm kuke-system --space kukeon --stack kukeon --run-path /opt/kukeon
sudo rm -f /run/kukeon/kukeond.sock /run/kukeon/kukeond.pid

The --run-path promotion runs these commands in-process β€” required here because the daemon is what's being torn down.

β†’ See docs/site/guides/local-dev.md for the full dev loop.

Core Concepts

Kukeon defines a clear hierarchical model:

flowchart LR
    Realm --> Space --> Stack --> Cell --> Container
  • Realm: High-level environment mapped to a containerd namespace
  • Space: CNI network and cgroup subtree that define isolation
  • Stack: Logical grouping of related cells
  • Cell: A pod-like group. One root container owns the network namespace
  • Container: An OCI container running inside the cell

Each layer is a real Linux primitive, not an invented abstraction. This structure avoids Docker's ambiguity and Kubernetes-level complexity.

β†’ See docs/site/concepts/overview.md for the full concept guide.

Understanding kukeon Commands

Two commands, one binary: kukeon uses hard links to provide different behaviors.

Command Purpose Run by
kuke Client CLI β€” talks to the daemon Users
kukeond The daemon process itself Process supervisor

Both are the same binary; behavior is determined by the executable name at runtime.

kuke β€” the client

Manages realms, spaces, stacks, cells, and containers through the daemon:

$ sudo kuke get realms          # List realms
$ sudo kuke get cells --realm main --space default --stack default
$ sudo kuke apply -f cell.yaml  # Apply a manifest
$ sudo kuke delete cell mycell --realm ... --cascade

Everything kuke does goes through the daemon by default. Set KUKEON_NO_DAEMON=true (or pass --run-path /opt/kukeon to trigger the same promotion) to run the operation in-process β€” required when the daemon is down or being torn down (requires root).

kukeond β€” the daemon

Runs as the root container of the kukeond cell inside the dedicated kukeon-system realm. You don't normally run kukeond by hand; kuke init sets it up as a managed cell.

β†’ See docs/site/cli/commands.md for the complete CLI reference.

Components

kukeond

A lightweight daemon responsible for:

  • containerd operations
  • creating network namespaces
  • running CNI plugins
  • managing cgroups
  • handling metadata and state
  • serving the API used by clients
kuke (CLI)

A thin remote client that interacts with kukeond.

Web UI (future)

A browser interface backed by the same API.

Dependencies

  • containerd
  • CNI plugins
  • Linux with cgroups v2

How It Works

Kukeon sits between containerd and the user, translating declarative YAML into the right Linux primitives.

  1. A manifest defines a resource: YAML specifies realm, space, stack, cell, or container
  2. kuke apply sends the manifest to kukeond over a unix socket
  3. kukeond reconciles: creates containerd namespace, cgroup subtree, CNI network, containers
  4. State is persisted to /opt/kukeon for durability across daemon restarts
  5. kuke get and kuke refresh read live state back from containerd/CNI/cgroups

Goals

Kukeon aims to be:

  • a substrate for running a team of AI agents on a single Linux host you own
  • structured around separation-of-powers across agent roles (planner / dev / reviewer / meta), enforced by the runtime rather than by convention
  • a work loop that closes on human-merged PRs as the accountability gate β€” no agent merges its own work
  • self-improving through Loop A: the agents' own playbooks and skills are diffable artifacts, refined by reflected lessons from each completed task
  • self-correcting through Loop B: verified product defects observed in running operation feed back into the work queue
  • grounded in real Linux primitives (containerd namespaces, CNI, cgroups) β€” sovereignty you can inspect, not a control plane you have to trust
  • fully self-hosted, with no SaaS, no cluster, no etcd, and no API server on port 6443
Non-Goals
  • Not a hosted SaaS β€” kukeon does not run a control plane you don't own
  • Not an autonomous-merger system today β€” the human merge gate is the deliberate stage-0 of the bootstrapping compiler (see vision.md "Trusting-trust")
  • Not its own audit-trail database β€” every action is a Git object in your forge
  • Not a Kubernetes replacement for multi-node clusters or cross-region orchestration
  • Not a layer that hides low-level primitives behind opaque abstractions

Roadmap

Kukeon is under active development, with a focus on correctness, clear abstractions, and stable primitives before adding integrations.

β†’ The backlog is the roadmap: see GitHub Issues β€” filter by label:planning for umbrellas and priority:A / priority:B for the active queue.

Contribute

Kukeon is open to thoughtful contributions. The focus is on a simple and reliable foundation for structured container environments, not on building a giant platform. Ideas, discussions, and clean code are welcome, especially when they improve clarity, correctness, or safety without adding unnecessary complexity.

License

Apache License 2.0

Β© 2025 Emiliano Spinella (eminwux)

Directories ΒΆ

Path Synopsis
cmd
kuke/attach
Package attach implements the `kuke attach` thin sbsh client subcommand.
Package attach implements the `kuke attach` thin sbsh client subcommand.
kuke/build
Package build hosts the `kuke build` CLI shim.
Package build hosts the `kuke build` CLI shim.
kuke/create/blueprint
Package blueprint implements `kuke create blueprint <name>` (issue #816, child of the #814 epic:create umbrella).
Package blueprint implements `kuke create blueprint <name>` (issue #816, child of the #814 epic:create umbrella).
kuke/create/config
Package config implements `kuke create config <name> --from-blueprint <bp>` (issue #817, child of the #814 epic:create umbrella).
Package config implements `kuke create config <name> --from-blueprint <bp>` (issue #817, child of the #814 epic:create umbrella).
kuke/create/registrycredential
Package registrycredential implements `kuke create registry-credential` β€” an imperative path to attach pull credentials to an existing realm's spec.registryCredentials without round-tripping through a hand-edited YAML manifest.
Package registrycredential implements `kuke create registry-credential` β€” an imperative path to attach pull credentials to an existing realm's spec.registryCredentials without round-tripping through a hand-edited YAML manifest.
kuke/daemon
Package daemon hosts the `kuke daemon` subcommand group, which exposes daemon-lifecycle verbs (start, stop, kill, and later restart/reset).
Package daemon hosts the `kuke daemon` subcommand group, which exposes daemon-lifecycle verbs (start, stop, kill, and later restart/reset).
kuke/daemon/kill
Package kill implements `kuke daemon kill`, the immediate-SIGKILL escape hatch for the kukeond cell.
Package kill implements `kuke daemon kill`, the immediate-SIGKILL escape hatch for the kukeond cell.
kuke/daemon/logs
Package logs implements `kuke daemon logs`, a shortcut that prints the kukeond container's stdout/stderr stream.
Package logs implements `kuke daemon logs`, a shortcut that prints the kukeond container's stdout/stderr stream.
kuke/daemon/recreate
Package recreate implements `kuke daemon recreate`, a composed verb that tears down the kukeond cell and re-provisions it using the same cell-creation path `kuke init` exercises.
Package recreate implements `kuke daemon recreate`, a composed verb that tears down the kukeond cell and re-provisions it using the same cell-creation path `kuke init` exercises.
kuke/daemon/reset
Package reset implements `kuke daemon reset`, the lightweight dev-loop teardown for the kukeond cell.
Package reset implements `kuke daemon reset`, the lightweight dev-loop teardown for the kukeond cell.
kuke/daemon/restart
Package restart implements `kuke daemon restart`, which is the composed stop-then-start lifecycle verb for the kukeond cell.
Package restart implements `kuke daemon restart`, which is the composed stop-then-start lifecycle verb for the kukeond cell.
kuke/daemon/start
Package start implements `kuke daemon start`, which brings up the existing kukeond cell on a host that has already been initialized.
Package start implements `kuke daemon start`, which brings up the existing kukeond cell on a host that has already been initialized.
kuke/daemon/stop
Package stop implements `kuke daemon stop`, which gracefully shuts down the kukeond cell.
Package stop implements `kuke daemon stop`, which gracefully shuts down the kukeond cell.
kuke/doctor
Package doctor hosts `kuke doctor`, a parent command for host-level pre-flight checks invoked before `kuke init` to surface environmental problems that would otherwise be diagnosed only via cryptic mid-bootstrap failures (e.g., missing cgroup-v2 controller delegation).
Package doctor hosts `kuke doctor`, a parent command for host-level pre-flight checks invoked before `kuke init` to surface environmental problems that would otherwise be diagnosed only via cryptic mid-bootstrap failures (e.g., missing cgroup-v2 controller delegation).
kuke/doctor/cgroups
Package cgroups implements `kuke doctor cgroups`: a pre-flight that classifies the host root cgroup's controller availability against the set kukeon's cell-creation path will require, with actionable output for the contributor running `make dev-init`.
Package cgroups implements `kuke doctor cgroups`: a pre-flight that classifies the host root cgroup's controller availability against the set kukeon's cell-creation path will require, with actionable output for the contributor running `make dev-init`.
kuke/get/image
Package image hosts the `kuke get image` subcommand: cross-realm-by-default image listing under the `kuke get <kind>` family.
Package image hosts the `kuke get image` subcommand: cross-realm-by-default image listing under the `kuke get <kind>` family.
kuke/get/testutil
Package testutil provides test helpers shared across the kuke get subcommand test suites.
Package testutil provides test helpers shared across the kuke get subcommand test suites.
kuke/image
Package image hosts the `kuke image` parent command and its subcommands: `load` (#200), `delete` (#212), and `prune` (#1036).
Package image hosts the `kuke image` parent command and its subcommands: `load` (#200), `delete` (#212), and `prune` (#1036).
kuke/internal/lifecycle
Package lifecycle holds the scaffolding shared by the `kuke daemon` lifecycle verbs (start, stop, kill, restart, reset, logs).
Package lifecycle holds the scaffolding shared by the `kuke daemon` lifecycle verbs (start, stop, kill, restart, reset, logs).
kuke/log
Package log implements the `kuke log` subcommand.
Package log implements the `kuke log` subcommand.
kuke/run
Package run implements the `kuke run` verb.
Package run implements the `kuke run` verb.
kuke/status
Package status implements `kuke status`, the consolidated health report that absorbs the original gaps doc's three separate proposals β€” `kuke doctor` (host pre-flight is now `kuke doctor cgroups`), `kuke ping` (daemon liveness), and `kuke selftest` (parity + state consistency) β€” into one post-init smoke command.
Package status implements `kuke status`, the consolidated health report that absorbs the original gaps doc's three separate proposals β€” `kuke doctor` (host pre-flight is now `kuke doctor cgroups`), `kuke ping` (daemon liveness), and `kuke selftest` (parity + state consistency) β€” into one post-init smoke command.
kuke/team
Package team hosts the `kuke team` parent command and its subcommands.
Package team hosts the `kuke team` parent command and its subcommands.
kukeond
Package kukeond is the cobra entry point for the kukeond daemon binary.
Package kukeond is the cobra entry point for the kukeond daemon binary.
kukepause command
kukepause is the minimal PID 1 for every kukeon cell's root (pause) container, replacing the previous `sleep infinity` from busybox (issue #931).
kukepause is the minimal PID 1 for every kukeon cell's root (pause) container, replacing the previous `sleep infinity` from busybox (issue #931).
kuketty command
kuketty is the kukeon-owned terminal wrapper that runs inside an attachable container in place of sbsh.
kuketty is the kukeon-owned terminal wrapper that runs inside an attachable container in place of sbsh.
hack
attach-smoke command
attach-smoke drives an interactive subprocess attached to a freshly allocated pseudoterminal, then sends sbsh's Ctrl+] Ctrl+] detach sequence and waits for the child to exit.
attach-smoke drives an interactive subprocess attached to a freshly allocated pseudoterminal, then sends sbsh's Ctrl+] Ctrl+] detach sequence and waits for the child to exit.
internal
cellblueprint
Package cellblueprint resolves daemon-stored CellBlueprint templates into CellDocs for `kuke run -b`.
Package cellblueprint resolves daemon-stored CellBlueprint templates into CellDocs for `kuke run -b`.
cellconfig
Package cellconfig holds the identity primitives for a daemon-stored CellConfig (kind: CellConfig, issue #624, phase 4b-i of #423): the back-reference label a materialized cell carries, the deterministic stable-name derivation, and the slot-fill validation that checks a Config's repo/secret fills against the referenced blueprint's declared structural slots.
Package cellconfig holds the identity primitives for a daemon-stored CellConfig (kind: CellConfig, issue #624, phase 4b-i of #423): the back-reference label a materialized cell carries, the deterministic stable-name derivation, and the slot-fill validation that checks a Config's repo/secret fills against the referenced blueprint's declared structural slots.
cgroupcheck
Package cgroupcheck implements the host-cgroup pre-flight that catches missing or undelegated cgroup-v2 controllers before kukeon's bootstrap path tries (and fails) to enable them.
Package cgroupcheck implements the host-cgroup pre-flight that catches missing or undelegated cgroup-v2 controllers before kukeon's bootstrap path tries (and fails) to enable them.
client/local
Package local provides an in-process kukeonv1.Client backed by a controller.Exec.
Package local provides an in-process kukeonv1.Client backed by a controller.Exec.
clientconfig
Package clientconfig loads a kuke ClientConfiguration document from disk.
Package clientconfig loads a kuke ClientConfiguration document from disk.
cni
ctr
daemon
Package daemon implements the kukeond process: it owns a controller.Exec, exposes the kukeonv1 API over a unix socket using net/rpc + jsonrpc, and manages its own lifecycle (listener, PID file, graceful shutdown).
Package daemon implements the kukeond process: it owns a controller.Exec, exposes the kukeonv1 API over a unix socket using net/rpc + jsonrpc, and manages its own lifecycle (listener, PID file, graceful shutdown).
firewall
Package firewall manages host-level iptables state owned by kukeon β€” the FORWARD admission chain that admits traffic to/from kukeon bridges.
Package firewall manages host-level iptables state owned by kukeon β€” the FORWARD admission chain that admits traffic to/from kukeon bridges.
instance
Package instance records the host-instance ServerConfiguration values (containerd namespace suffix and cgroup root) that a given runPath was bootstrapped under, so the daemon can refuse to start when reconfigured to a different layout.
Package instance records the host-instance ServerConfiguration values (containerd namespace suffix and cgroup root) that a given runPath was bootstrapped under, so the daemon can refuse to start when reconfigured to a different layout.
kuketeams
Package kuketeams parses and validates the team-distribution documents (kuketeams.io/v1: ProjectTeam, TeamsConfig, Role, Harness, ImageCatalog; issue #793, epic #792).
Package kuketeams parses and validates the team-distribution documents (kuketeams.io/v1: ProjectTeam, TeamsConfig, Role, Harness, ImageCatalog; issue #793, epic #792).
kuketty/setupstatus
Package setupstatus is the wire contract for the GetSetupStatus RPC verb (issue #642, phase 1b).
Package setupstatus is the wire contract for the GetSetupStatus RPC verb (issue #642, phase 1b).
netpolicy
Package netpolicy renders space-level egress policies into iptables rules and applies them on the host firewall.
Package netpolicy renders space-level egress policies into iptables rules and applies them on the host firewall.
serverconfig
Package serverconfig loads a kukeond ServerConfiguration document from disk.
Package serverconfig loads a kukeond ServerConfiguration document from disk.
sysuser
Package sysuser provisions the kukeon system user/group and applies kukeon-managed file ownership during `kuke init`.
Package sysuser provisions the kukeon system user/group and applies kukeon-managed file ownership during `kuke init`.
teambuild
Package teambuild orchestrates the local `kuke team init --build` path: it walks the FROM directives of the catalog entries a project selected, derives the transitive base-before-leaves build order (the bases base/base-user/ base-root are intermediates that live in the agents source tree, not in images.yaml), and invokes the standalone kukebuild binary once per image into the target realm's containerd namespace.
Package teambuild orchestrates the local `kuke team init --build` path: it walks the FROM directives of the catalog entries a project selected, derives the transitive base-before-leaves build order (the bases base/base-user/ base-root are intermediates that live in the agents source tree, not in images.yaml), and invokes the standalone kukebuild binary once per image into the target realm's containerd namespace.
teamhost
Package teamhost owns the host-side, on-disk lifecycle of the team-distribution config maintained by `kuke team init` (epic #792, step 1 #796): the operator-global facts file (~/.kuke/kuketeams.yaml) and the per-project drop-in directory (~/.kuke/kuketeam.d/<project>.yaml).
Package teamhost owns the host-side, on-disk lifecycle of the team-distribution config maintained by `kuke team init` (epic #792, step 1 #796): the operator-global facts file (~/.kuke/kuketeams.yaml) and the per-project drop-in directory (~/.kuke/kuketeam.d/<project>.yaml).
teamrender
Package teamrender renders a project's ProjectTeam roster into a set of CellBlueprint and CellConfig documents β€” one (CellBlueprint, CellConfig) pair per `(role Γ— harness)` (epic #792, step 3 #1042).
Package teamrender renders a project's ProjectTeam roster into a set of CellBlueprint and CellConfig documents β€” one (CellBlueprint, CellConfig) pair per `(role Γ— harness)` (epic #792, step 3 #1042).
teamsecrets
Package teamsecrets composes a team's secret material from two `secrets.env` layers β€” a shared host-wide default at `~/.kuke/teams/secrets.env` and a per-team override at `<teamDir>/secrets.env` β€” and renders the merged non-empty entries as `kind: Secret` documents the daemon-side apply pipeline (#1029) consumes alongside the project's CellBlueprints and CellConfigs.
Package teamsecrets composes a team's secret material from two `secrets.env` layers β€” a shared host-wide default at `~/.kuke/teams/secrets.env` and a per-team override at `<teamDir>/secrets.env` β€” and renders the merged non-empty entries as `kind: Secret` documents the daemon-side apply pipeline (#1029) consumes alongside the project's CellBlueprints and CellConfigs.
teamsource
Package teamsource resolves a kuketeams.io/v1 ProjectTeam's structured `source` reference to a local clone of the agents repo and loads the Role, Harness, and ImageCatalog documents the project's roster references (epic #792).
Package teamsource resolves a kuketeams.io/v1 ProjectTeam's structured `source` reference to a local clone of the agents repo and loads the Role, Harness, and ImageCatalog documents the project's roster references (epic #792).
util/diskpressure
Package diskpressure samples filesystem usage for the volume backing a given path and rate-limits the warnings kukeond emits when a data volume crosses a high-water mark.
Package diskpressure samples filesystem usage for the volume backing a given path and rate-limits the warnings kukeond emits when a data volume crosses a high-water mark.
pkg
api/kukeonv1
Package kukeonv1 is the public client SDK for the kukeon daemon.
Package kukeonv1 is the public client SDK for the kukeon daemon.
api/model/kuketeams
Package kuketeams holds the Go types for the team-distribution contract (issue #793, epic #792).
Package kuketeams holds the Go types for the team-distribution contract (issue #793, epic #792).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL