بنقرة واحدة
assess-completeness
Check if an issue has all required information for action
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Check if an issue has all required information for action
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
Hardcoded endpoint documentation for the repo provisioner API.
| name | assess-completeness |
| description | Check if an issue has all required information for action |
| allowed-tools | Bash(curl *), WebFetch |
Read the issue via the GitHub REST server:
curl -s http://host.docker.internal:8081/repos/$OWNER/$REPO_NAME/issues/$ISSUE_NUMBER
Evaluate whether the issue contains sufficient information.
Respond ONLY with a JSON object:
{
"issue_type": "bug" | "enhancement" | "question" | "other",
"complete": true | false,
"missing": ["<missing item 1>", "<missing item 2>"],
"external_context": "<summary of relevant information gathered from external links, or null if none>"
}