create-issue
Create GitHub Issue
Create well-structured GitHub issues from user descriptions through interactive clarification.
Repository Detection
Detect the repository from the current git remote:
REPO=$(gh repo view --json nameWithOwner -q '.nameWithOwner')
# Splits into OWNER and REPO_NAME
If detection fails, ask the user for the target repository.
Process
Step 1: Understand the Request
When the user describes a feature or bug, gather context through clarifying questions. Do NOT create the issue immediately.
For features, clarify:
- What is the user-facing goal? (not implementation details)
- What are the acceptance criteria? (how to verify it works)
- Are there UI/UX implications?
- What existing functionality does this relate to?
- Priority and scope constraints
For bugs, clarify:
- Steps to reproduce
- Expected vs actual behavior
- Environment (prod, staging, PR preview)
- Severity (blocking, degraded, cosmetic)
- Any error messages or logs
Ask 2-3 focused questions per round. Stop when there is enough information to write a clear issue.
Step 2: Draft the Issue
Use the appropriate template based on issue type. For full template content, consult references/issue-templates.md.
Both templates include these required sections:
- Summary / Motivation (feature) or Steps to Reproduce (bug)
- Requirements with checkboxes (feature) or Expected/Actual Behavior (bug)
- Testing Requirements (mandatory TDD section: test cases doc, unit tests, E2E tests)
- Acceptance Criteria with checkboxes
- Dependencies section for issue ordering
Step 2.5: Detect & Attach Workspace Changes
After drafting the issue, check the workspace for local changes that may provide useful context for the autonomous dev agent. For the complete detection, attachment, and cleanup procedure, consult references/workspace-changes.md.
Summary:
- Run
git status --short— skip if no changes - Summarize changes and ask user for confirmation
- Choose strategy based on diff size: inline (< 500 lines), branch push (>= 500 lines), or file list fallback
- Add a
## Pre-existing Changessection to the issue body - Optionally clean up local changes after attachment
Step 3: Confirm with User
Present the draft issue to the user with:
- Proposed title (concise, descriptive)
- Full issue body (including Pre-existing Changes section if applicable)
- Proposed labels
- Whether to add
autonomouslabel
Use AskUserQuestion to confirm:
- "Does this issue look correct? Should I create it?"
- Ask about autonomous label: whether AI should handle this automatically
Step 4: Create the Issue
Use GitHub MCP tools or gh CLI to create the issue with:
title: The confirmed titlebody: The confirmed bodylabels: Appropriate labels (see Label Guide below)
Report the created issue URL to the user.
If branch push was deferred (large diff strategy):
After the issue is created and the issue number is known:
- Execute the branch push commands from Step 2.5.5 using the actual issue number
- Update the issue body to include the branch reference section
Label Guide
| Label | When to Apply |
|---|---|
bug |
Bug reports |
enhancement |
Feature requests |
autonomous |
User confirms AI should handle dev/test/review/merge automatically |
no-auto-close |
Used with autonomous -- AI handles dev/test/review but stops before merge, requiring manual approval |
documentation |
Documentation-only changes |
good first issue |
Simple, well-scoped tasks |
Autonomous Label Decision
After drafting the issue, explicitly ask the user whether to add the autonomous label.
Provide guidance on when autonomous is appropriate:
- Good fit: Well-defined scope, clear acceptance criteria, follows existing patterns, no ambiguous design decisions
- Poor fit: Requires significant architecture decisions, needs user input during development, involves sensitive infrastructure changes, exploratory/research tasks
Frame the question as:
"Should this issue be handled by the autonomous development pipeline? The AI will automatically develop, test, review, and merge the changes. This works best for well-defined tasks with clear acceptance criteria."
If the user selects autonomous, also ask about no-auto-close:
"Should this issue also have the
no-auto-closelabel? With this label, the AI will handle development, testing, and review, but will stop before merging -- you'll be notified to make the final merge decision. This is recommended for sensitive infrastructure changes, features needing product sign-off, or experimental work."
Label interaction summary:
autonomousalone = AI handles dev/test/review and auto-merges on passautonomous+no-auto-close= AI handles dev/test/review but stops before merge, notifying the owner for manual approval
Writing Guidelines
- Title: Start with verb, be specific. "Add pagination to plans list page" not "Plans page improvement"
- Body: Write for an AI developer who has access to the full codebase but no verbal context from this conversation
- Acceptance criteria: Must be objectively verifiable, not subjective
- Scope: Prefer smaller, focused issues over large multi-part ones
- References: Link to related issues, PRD sections, or code paths when relevant
- Dependencies: When creating multiple related issues, populate the
## Dependenciessection with links to blocking issues. Create issues in dependency order so earlier issue numbers are available for later ones. The dispatcher will skip issues whose dependencies are still open. - Testing Requirements: ALWAYS include the "Testing Requirements" section. The dev agent follows the project's TDD workflow but has been observed to skip E2E tests or test-case docs when the issue doesn't explicitly call them out. Be specific about:
- Key scenarios each test type must cover (2-4 bullet points)
- For bugs: the regression test must fail before the fix and pass after
Multi-Issue Creation
When breaking a large feature into multiple issues:
- Create issues in dependency order — issues with no dependencies first, then issues that depend on them. This ensures issue numbers are known when writing dependency references.
- Populate the
## Dependenciessection in each issue body with#Nlinks to blocking issues. - Use a consistent naming scheme — prefix titles with the project/feature name for easy filtering (e.g., "MyProject: Add DynamoDB infrastructure").
- Cross-reference the plan — if an implementation plan exists, link each issue to the relevant plan tasks/chunks.
- The dispatcher skips blocked issues — issues with open dependencies in the
## Dependenciessection are ignored by the autonomous dispatcher until all dependencies are resolved (closed/merged).
References
For detailed content, consult:
references/issue-templates.md-- Full feature and bug issue templates with all required sectionsreferences/workspace-changes.md-- Complete workspace change detection, attachment strategies, and cleanup procedure