distros/skills/charly-fedora/SKILL.md
Fedora box with the full charly toolchain using shared candies. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Same candy list as charly-arch. Includes NVIDIA GPU runtime. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-fedora box.
npx skillsauth add overthinkos/overthink-plugins charly-fedoraInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fedora container with the full charly toolchain. Uses almost the same
candy list as /charly-coder:charly-arch — the tag system handles
Fedora-specific packages and scripts via rpm: sections. Supports
nested containers at any depth via /charly-distros:container-nesting.
Lives in the overthinkos/fedora repo (git submodule at box/fedora).
Its fedora base is bare-local in the same self-contained submodule
(import: []) — base: fedora; its
candies (incl. the nvidia candy) are pulled by github reference. Build from the
submodule: charly -C box/fedora box build charly-fedora. Deploy-mode verbs work
from anywhere once the image is in local storage.
| Property | Value |
|----------|-------|
| Base | fedora (quay.io/fedora/fedora:43) |
| Tags | [all, rpm, fedora, fedora:43] |
| Layers | agent-forwarding, charly, golang, gh, sshd, container-nesting, nvidia |
| Platforms | linux/amd64 |
| UID / user | 1000 / user (rootless-first) |
| Network | host |
| Security | layer-level only (from /charly-distros:container-nesting) |
| Registry | ghcr.io/overthinkos |
Runs as uid=1000 / user with no added capabilities. The
/charly-distros:container-nesting kernel RCA establishes that
unmask=/proc/* + subuid/subgid delegation is sufficient for rootless
nested containers + rootless libvirt VMs, so this box — like its
power-user siblings (/charly-coder:charly-arch, /charly-coder:fedora-coder,
/charly-distros:githubrunner) — needs no cap_add: [ALL] or
label=disable / seccomp=unconfined.
The /charly-coder:sshd candy installs /etc/sudoers.d/charly-user with
passwordless sudo for user, so anything that genuinely needs root
is one sudo prefix away. Default user for every process is uid=1000.
Resolved OCI security label:
| Field | Value |
|---|---|
| cap_add | (empty) |
| security_opt | [unmask=/proc/*] (from /charly-distros:container-nesting) |
| devices | [/dev/fuse, /dev/net/tun] (from /charly-distros:container-nesting) |
| privileged | false |
See /charly-openclaw:openclaw-desktop (streaming-desktop sibling) and
/charly-coder:fedora-coder (kitchen-sink dev sibling) for other boxes
sharing this posture, and /charly-distros:container-nesting for the
kernel mount_too_revealing() RCA.
network: hostcharly-fedora uses host networking (unlike charly-arch, which uses bridge)
so the box can reach host services and the host namespace directly.
charly-mcp's rewriteMCPURLForHost handles host-networked containers via
HostConfig.NetworkMode=host detection (see
charly/mcp_client.go:lookupHostPort), so host networking does not break
MCP URL rewriting. If you want charly-mcp on charly-fedora, compose it
into the candy list — it will work on either networking mode.
Full charly toolchain via shared candies:
golang-bin)git + git-lfs (single-responsibility; see /charly-coder:gh)openssh-server, openssh-clients) + passwordless sudo for usertailscale-stable repo)# Build (from the overthinkos/fedora submodule)
charly -C box/fedora box build charly-fedora
# Interactive shell (as uid=1000)
charly shell charly-fedora
# Run a command
charly shell charly-fedora -c "charly version"
charly shell charly-fedora -c "sudo -n whoami" # root (passwordless)
# Start as service
charly start charly-fedora
charly status charly-fedora
charly stop charly-fedora
Rootless podman works inside charly-fedora at any nesting depth. The
/charly-distros:container-nesting candy provides the config + env vars +
subuid/subgid delegation per the podman/stable recipe:
# Level 1: run containers inside charly-fedora
charly shell charly-fedora -c "podman run --rm quay.io/libpod/alpine:latest echo hello"
# Level 2: run charly inside charly-fedora inside charly-fedora
charly shell charly-fedora -c "charly shell charly-fedora -c 'charly version'"
Use quay.io/libpod/alpine:latest instead of
docker.io/library/alpine to dodge Docker Hub rate limits.
The /charly-distros:nvidia candy provides NVIDIA GPU runtime:
nvidia-container-toolkit — CDI spec generation (driver userspace libs provided by CDI at runtime, matching host kernel module)libva-nvidia-driver — VA-API accelerationcharly automatically calls EnsureCDI() before launching GPU
containers. GPU access works at any nesting depth.
charly shell charly-fedora -c "id" # uid=1000(user)
charly shell charly-fedora -c "sudo -n whoami" # root
charly shell charly-fedora -c "charly version"
charly shell charly-fedora -c "charly doctor"
charly shell charly-fedora -c "podman info"
charly shell charly-fedora -c "podman run --rm quay.io/libpod/alpine:latest echo OK"
charly shell charly-fedora -c "which nvidia-ctk"
# Verify OCI tags
charly box inspect charly-fedora --format tags
# ["all","rpm","fedora","fedora:43"]
Both charly-fedora and /charly-coder:charly-arch use the exact same candy
list. The tag system (build: [rpm] + distro: ["fedora:43", fedora]
vs build: [pac] + distro: [arch]) selects the right packages
and scripts per distro.
/charly-tools:charly — the full toolchain: charly binary plus VM/encryption tools/charly-distros:container-nesting — nested rootless podman/buildah (authoritative RCA for mount_too_revealing() + unmask=/proc/*)/charly-coder:sshd — SSH daemon + passwordless sudo for user/charly-coder:gh — GitHub CLI + git + git-lfs (owns all git tooling)/charly-distros:nvidia — NVIDIA GPU runtime/charly-distros:fedora — parent base image/charly-coder:charly-arch — Arch counterpart, same layers, same rootless posture/charly-coder:fedora-coder — kitchen-sink dev sibling (32 candies, adds coding CLIs + DevOps)/charly-openclaw:openclaw-desktop — streaming-desktop counterpart (charly toolchain + browser-accessible Wayland); shares the rootless-first posture/charly-distros:githubrunner — self-hosted GitHub Actions runner; same uid=1000 posture/charly-core:shell — open an interactive shell in charly-fedora (as uid=1000 with sudo)/charly-core:service — manage charly-fedora as a service/charly-vm:vm — nested libvirt VMs via qemu:///session (rootless)/charly-build:charly-mcp-cmd — MCP gateway deployment patterns (if you add charly-mcp to the candies)/charly-image:image — box family umbrella (box: entries in charly.yml, build/validate/inspect/list)/charly-build:build — build.yml vocabulary (distros, builders, init-systems)tools
OpenCharly CLI (charly) binary installed into container/VM images for in-container use. Use when working with charly binary deployment inside containers, native D-Bus support, or the full charly toolchain (charly binary + virtualization + gocryptfs + socat).
development
Operator CachyOS workstation profile — a kind:local template + target:local deploy that installs the full dev stack (30 candies) onto a CachyOS host via ShellExecutor. Lives in the overthinkos/cachyos submodule. MUST be invoked before editing or applying the charly-cachyos workstation profile.
tools
Arch Linux box with the full charly toolchain. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Composes /charly-coder:charly-mcp so the box is reachable as an MCP gateway on port 18765. NVIDIA GPU runtime composed in. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-arch box.
tools
Show charly CLI version information. MUST be invoked before any work involving: charly version command or checking installed charly version. Named `charly-version` (not `version`) to disambiguate from Claude Code's built-in `/version` slash command.