Examples of assembling template-free issue prompts grounded by codebase exploration, with optional CLI submission after explicit confirmation. Repository detection precedes submission; review and submission occur in a single merged step offering "Submit now" or "Submit now and assign to me". Any other response is treated as a change request. In dark theme the Submit button is almost invisible on the New Run page. dark theme submit button visibility . Submit|button|dark|theme ]]> Internal: matches found in UI components related to theme; wording grounded to user impact. Scroll to bottom -> Look for Submit 2) Expected result: Clearly visible, high-contrast Submit button 3) Actual result: Button appears nearly invisible in dark theme 4) Variations tried: Different browsers (Chrome/Firefox) show same result ]]> I accidentally click "Copy Run" sometimes; would be great to have a simple confirmation. Copy Run confirmation ]]> Internal: feature entry point identified; keep final output non-technical and user-centric. Dark theme Submit button is invisible; I'd like to file this. Scroll to bottom -> Look for Submit 2) Expected result: Clearly visible, high-contrast Submit button 3) Actual result: Button appears nearly invisible in dark theme ]]> Review the current issue details. Select one of the options below or specify any changes or other workflow you would like me to perform: ```md Title: [ISSUE_TITLE] [ISSUE_BODY] ``` Submit now Submit now and assign to me gh issue create --repo "[OWNER_REPO]" --title "[ISSUE_TITLE]" --body "$(printf '%s\n' "[ISSUE_BODY]")" ISSUE_URL=$(gh issue create --repo "[OWNER_REPO]" --title "[ISSUE_TITLE]" --body "$(printf '%s\n' "[ISSUE_BODY]")" --assignee "@me") || true; if [ -z "$ISSUE_URL" ]; then ISSUE_URL=$(gh issue create --repo "[OWNER_REPO]" --title "[ISSUE_TITLE]" --body "$(printf '%s\n' "[ISSUE_BODY]")"); gh issue edit "$ISSUE_URL" --add-assignee "@me"; fi; echo "$ISSUE_URL" If a change request is provided, collect the requested edits, update the draft (re-run discovery if new info affects context), then rerun this merged step. https://github.com/OWNER/REPO/issues/123 Issues are template-free (Title + Body only). Repository detection (git + origin → OWNER/REPO) occurs before submission and is passed explicitly via --repo [OWNER_REPO]. Never use --body-file or temporary files; submit with inline --body only (no file paths). Review and submission happen in one merged step offering "Submit now" or "Submit now and assign to me"; any other response is treated as a change request. All discovery is internal; keep final output plain-language.