ov-layers/skills/yay/SKILL.md
AUR helper for Arch Linux, enabling aur: package sections in layer.yml. Use when working with the yay layer or Arch AUR builds.
npx skillsauth add overthinkos/overthink-plugins yayInstall 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.
| Property | Value |
|----------|-------|
| Install files | layer.yml, tasks: |
| Depends | none |
PAC: base-devel, git
The tasks: task downloads the latest yay binary from GitHub releases:
# tasks: (in layer.yml)
tasks:
all:
cmds:
- |
ARCH=$(uname -m)
URL=$(curl -fsSL https://api.github.com/repos/Jguer/yay/releases/latest \
| grep -o "https://github.com/Jguer/yay/releases/download/[^\"]*_${ARCH}.tar.gz")
curl -fsSL "$URL" | tar -xzf - -C /usr/local/bin --strip-components=1 --wildcards '*/yay'
Architecture-aware: downloads the correct binary for x86_64 or aarch64.
Installs the yay AUR helper, which enables the aur: package format in layer.yml. Any layer with an aur: section requires a builder that has the yay layer (and builds: [aur] capability). The base-devel and git packages are prerequisites for building AUR packages.
# image.yml — typically in a builder image
layers:
- yay
Not used directly in end-user images. Instead, it's part of the builder image that compiles AUR packages during multi-stage builds.
/ov-images:archlinux-builder — Arch build infrastructure image/ov-layers:build-toolchain — C/C++ build tools (also in archlinux-builder)/ov-layers:arch-aur-test — test layer that validates AUR buildsUse when the user asks about:
yay layer or AUR helper installationaur: packages in layer.yml get builtarchlinux-builder image's AUR capability/ov:layer — layer authoring reference (layer.yml schema, task verbs, service declarations)/ov:test — declarative testing (tests: block, ov image test, ov test)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
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.
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.