一键导入
baked-instructions-provisioner
Hardcoded endpoint documentation for the repo provisioner API.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Hardcoded endpoint documentation for the repo provisioner 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 container builder API.
| name | baked-instructions-provisioner |
| description | Hardcoded endpoint documentation for the repo provisioner API. |
Base URL: $PROVISIONER_URL
All requests require: Authorization: Bearer $API_TOKEN
Clone a GitHub repository, scan it for security issues, and upload it into the sandbox.
curl -X POST "$PROVISIONER_URL/repo/provision" \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"repo\": \"org/name\",
\"ref\": \"main\",
\"dest\": \"/sandbox/repo\",
\"sandbox\": \"$(hostname | sed 's/^sandbox-//')\"
}"
Request body (JSON):
repo (required): GitHub repository in org/name formatref (optional, default "main"): Git ref to check outdest (optional): Sandbox path to upload the cloned repo to. If omitted, the repo is only scanned but not uploaded.sandbox (required for upload): Your sandbox name — use $(hostname | sed 's/^sandbox-//') to get it.Response:
{
"id": "uuid",
"status": "completed",
"repo": "org/name",
"ref": "main",
"findings": [],
"dest": "/sandbox/repo"
}
Status values: completed (clean, uploaded), rejected (high-severity findings), failed (error).
Check the status of a provisioning operation by its ID.
curl -H "Authorization: Bearer $API_TOKEN" \
"$PROVISIONER_URL/repo/status/<operation-id>"