بنقرة واحدة
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>"