一键导入
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"