ワンクリックで
tooluse-builder
Discover the container builder API via its tool-use schema.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Discover the container builder API via its tool-use schema.
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 | tooluse-builder |
| description | Discover the container builder API via its tool-use schema. |
The container builder server exposes a tool-use schema describing each operation as a tool with name, description, HTTP endpoint, and input schema. Fetch it:
curl -s "$BUILDER_URL/tools.json" | python3 -m json.tool
Each tool definition tells you:
name — what the tool doesendpoint — the HTTP path to callmethod — GET or POSTinput_schema — the JSON body schema (for POST requests)Use this to construct your API calls. All authenticated endpoints require:
Authorization: Bearer $API_TOKEN