ワンクリックで
baked-instructions-builder
Hardcoded endpoint documentation for the container builder API.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Hardcoded endpoint documentation for the container builder API.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check if an issue has all required information for action
Search for and identify duplicate issues in a repository
Coordinate triage of a GitHub issue by orchestrating sandboxed analysis subagents and applying labels
Verify whether a reported bug is reproducible by inspecting the codebase
Step-by-step procedure for implementing a GitHub issue. Gathers context, discovers repo conventions, plans the change, implements, verifies with tests and linters, and commits to a feature branch.
Hardcoded endpoint documentation for the repo provisioner API.
| name | baked-instructions-builder |
| description | Hardcoded endpoint documentation for the container builder API. |
Base URL: $BUILDER_URL
All requests require: Authorization: Bearer $API_TOKEN
Build a container image from a Dockerfile.
curl -X POST "$BUILDER_URL/build" \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"tag\": \"myimage:latest\",
\"dockerfile\": \"Dockerfile\",
\"context_dir\": \"/sandbox/repo\",
\"sandbox\": \"$(hostname | sed 's/^sandbox-//')\",
\"dest\": \"/sandbox/image.tar\"
}"
Request body (JSON):
tag (required): Image tag to builddockerfile (optional, default "Dockerfile"): Path to the Dockerfile relative to context_dircontext_dir (required): Path to the build context directory inside the sandbox — the server downloads this from your sandbox before buildingsandbox (required): Your sandbox name — use $(hostname | sed 's/^sandbox-//') to get itdest (optional): Sandbox path to upload the built image tarball to. If omitted, the image stays on the host only.Response:
{"id": "uuid", "tag": "myimage:latest", "status": "success", "output": "..."}
Push a built image to a registry.
curl -X POST "$BUILDER_URL/push" \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"tag": "myimage:latest"}'
List locally built container images.
curl -H "Authorization: Bearer $API_TOKEN" "$BUILDER_URL/images"