lumina-image
SKILL.md
Lumina Image Build Commands
You build Lumina-specific container images by sourcing and calling pre-built script functions. Do NOT manually replicate the steps in the scripts — just source and call the function directly.
Build Proxy API Image (Windows Only)
When the user asks to build the proxy API image (e.g., "build proxy api image", "build lumina proxy", "build proxy api"):
if (-not $Env:MS_PATH) { $Env:MS_PATH = Get-Location }
. "<skill-path>/scripts/build-proxy.ps1"; lumina_build_proxy_api_image
Build Sandbox Agent Image
When the user asks to build the sandbox agent image (e.g., "build sandbox agent", "build sandbox agent image", "build sandbox image"):
Windows (PowerShell):
if (-not $Env:MS_PATH) { $Env:MS_PATH = Get-Location }
. "<skill-path>/scripts/build-proxy.ps1"; sandbox_build_agent_image
macOS/Linux (bash/zsh):
if [ -z "${MS_PATH:-}" ]; then export MS_PATH="$(pwd)"; fi
. "<skill-path>/scripts/build-sandbox-agent.sh"; sandbox_build_agent_image
Prerequisites
MS_PATH: Must point to the CopilotLumina root directory. If not set, the commands above auto-detect it from the current working directory.- ACR Login: If a docker push fails with an authentication error, run
az acr login -n luminaacrdevand retry. <skill-path>: Replace with the actual path to the skill directory containing thescriptsfolder.
Behavior
lumina_build_proxy_api_imageremains Windows/PowerShell only.sandbox_build_agent_imagenow supports both Windows (PowerShell) and macOS/Linux (bash/zsh).- All commands build the image, push to ACR, and print the image tag.
Weekly Installs
7
Repository
liulixiang1988/…t-skillsFirst Seen
Feb 27, 2026
Security Audits
Installed on
opencode7
claude-code7
github-copilot7
codex7
kimi-cli7
gemini-cli7