Development: OS container image building with Podman. Builds the bazzite-ai OCI image from Containerfile. Run from repository root with 'just build'. Use when developers need to build or rebuild the OS image locally.
/plugin marketplace add atrawog/bazzite-ai-plugins/plugin install atrawog-bazzite-ai-dev-bazzite-ai-dev@atrawog/bazzite-ai-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
The build command builds the bazzite-ai OS container image using Podman. It creates an OCI-compliant image from the Containerfile that can be deployed via rpm-ostree rebase or converted to VM/ISO formats.
Key Concept: This is a development command - run with just from the repository root, not ujust. It requires the bazzite-ai repository to be cloned.
| Action | Command | Description |
|---|---|---|
| Build default | just build | Build with default name and tag |
| Build with tag | just build bazzite-ai testing | Build with custom tag |
| Build and VM | just rebuild-qcow2 | Build OS then create QCOW2 |
| Build and ISO | just rebuild-iso | Build OS then create live ISO |
just build [target_image] [tag]
| Parameter | Default | Description |
|---|---|---|
target_image | bazzite-ai | Image name |
tag | 43 | Image tag (Fedora version) |
The build command:
${tag}-$(date +%Y%m%d)BASE_IMAGE: ghcr.io/ublue-os/bazzite-nvidia-open:stableIMAGE_NAME: Target image nameIMAGE_VENDOR: Repository organizationSHA_HEAD_SHORT: Git commit SHA (if clean tree)--pull=newer| Argument | Value | Description |
|---|---|---|
BASE_IMAGE | ghcr.io/ublue-os/bazzite-nvidia-open:stable | Upstream Bazzite base |
IMAGE_NAME | bazzite-ai | Target image name |
IMAGE_VENDOR | atrawog | GitHub organization |
SHA_HEAD_SHORT | Git SHA | Only set if tree is clean |
# 1. Clone repository
git clone https://github.com/atrawog/bazzite-ai.git
cd bazzite-ai
# 2. Build OS image
just build
# 3. Verify build
podman images | grep bazzite-ai
# Build testing version
just build bazzite-ai testing
# Build specific version
just build bazzite-ai 1.0.0
# Build OS + create QCOW2 VM
just rebuild-qcow2
# Build OS + create live ISO
just rebuild-iso
# Build OS + create all ISO variants
just rebuild-iso-all
The build creates a local container image:
localhost/bazzite-ai:43
View with:
podman images | grep bazzite-ai
| Variable | Default | Description |
|---|---|---|
GITHUB_REPOSITORY_OWNER | atrawog | Override organization |
IMAGE_NAME | bazzite-ai | Override image name |
DEFAULT_TAG | 43 | Override default tag |
Symptom: Cannot pull base image
Cause: Network issues or registry authentication
Fix:
# Check network
curl -I https://ghcr.io
# Re-authenticate if needed
just gh-login
Symptom: No space left on device
Cause: Build cache or old images consuming space
Fix:
# Clean up build artifacts
just clean podman
# Or full cleanup
just clean all
Symptom: Image has wrong tag or name
Cause: Environment variables overriding defaults
Fix:
# Check environment
echo $IMAGE_NAME $DEFAULT_TAG
# Build with explicit values
just build bazzite-ai 43
vms (VM/ISO from built image), pods (container pods)just build-qcow2 (VM image), just build-iso (live ISO)Containerfile for image layersUse when the user asks about:
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.