ワンクリックで
build-binaries
Build InkyPal Linux executables locally using the bundled helper script.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Build InkyPal Linux executables locally using the bundled helper script.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate the README preview image at .github/assets/display.png after display rendering changes. Use when faces, layout, fonts, footer content, or message formatting changes and a fresh preview image is needed.
Release a new version (review commits and merged PRs since the last tag, recommend a semantic version bump when needed, and create an annotated release tag with a short change-focused message). Use when the user asks to release a version or invokes /new-version with or without a version.
| name | build-binaries |
| description | Build InkyPal Linux executables locally using the bundled helper script. |
| compatibility | Requires container, docker, or podman. The helper script prefers Apple Container, then Docker, then Podman. |
Use this skill when the user asks to build InkyPal Linux executables locally.
Always use .agents/skills/build-binaries/scripts/build-emulated-executable.sh.
Do not inline the container commands from this skill.
Produce these Linux binary artifacts in dist/:
| Platform | Arch | Output file |
|---|---|---|
linux/arm64 | aarch64 | dist/inkypal-linux-aarch64 |
linux/amd64 | x86_64 | dist/inkypal-linux-x86_64 |
Build both targets by default. If the user explicitly asks for only one target, build just that one.
Run these commands from the repository root:
bash .agents/skills/build-binaries/scripts/build-emulated-executable.sh linux/arm64 inkypal-linux-aarch64
bash .agents/skills/build-binaries/scripts/build-emulated-executable.sh linux/amd64 inkypal-linux-x86_64
The helper script:
container, docker, podman.dist/<artifact_name>.After building:
dist/inkypal-linux-aarch64 exists.dist/inkypal-linux-x86_64 exists.