一键导入
github-issue-create
Create a detailed GitHub issue using the mandatory template for new features or complex changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a detailed GitHub issue using the mandatory template for new features or complex changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | github-issue-create |
| description | Create a detailed GitHub issue using the mandatory template for new features or complex changes. |
This workflow guides you through creating a detailed GitHub issue using the gemini_agent_workflow.md template. This is the mandatory first step when a user requests a new feature or complex change.
Use this workflow when the user asks to "create a task," "plan a feature," "spec out a ticket," or "create a workflow issue."
codebase_investigator subagent to perform the deep research. Pass it the user's objective and ask it to:
package.json under "agents" key, or docs/project.json) for paths.db and paths.types. If configured, use those paths to search for database/migration files and types/data models. If not configured, dynamically search for directories named db, prisma, database, or types using codebase search tools.codebase_investigator to inform the implementation plan.Before creating any issue on GitHub, the implementation plan must be drafted, scrutinized by a subagent, and interactively approved by the user.
Draft Initial Plan:
Subagent Grilling & Refinement:
general-purpose subagent to grill it.docs/rules/).Present Refined Plan and In-Depth Reasoning to User:
Interactive User Feedback & Refinement Loop:
ask_user_question tool to ask the user if they agree with the plan, need more explanation, or want to request changes.general-purpose subagent to refine the plan accordingly..github/ISSUE_TEMPLATE/gemini_agent_workflow.md.gh issue create \
--title "[Agent] <Descriptive Title>" \
--body "[Full Markdown Body Constructed from Research and Approved Plan]"
Ensure the body follows the template structure exactly. Do NOT include the user's original instructions or communications in this body.gh issue comment <issue-number> --body-file <path-to-context-file>
feat/<issue-number>-by-cli-agent-<short-kebab-case-description>.
git checkout main
git pull origin main
git checkout -b feat/<issue-number>-by-cli-agent-<short-kebab-case-description>
.tmp/), move them to a dedicated issue asset folder:
mkdir -p .github/assets/issue-<issue-number>
mv .tmp/* .github/assets/issue-<issue-number>/
git add .github/assets/issue-<issue-number>/
git commit -m "docs: add issue assets for #<issue-number>"
git push -u origin feat/<issue-number>-by-cli-agent-<short-kebab-case-description>
docs/rules (e.g., placing DB logic in the configured database directory paths.db, and placing Server Actions in paths.actions or their corresponding configured paths).github-issue-solve workflow).Standardize the verification of implemented GitHub issues on the development environment.
Perform performance testing and review of specific pages, identifying and fixing bottlenecks.
Parse downloaded Figma design JSON files and CSS layer data to generate Tailwind CSS layout classes, fonts, borders, and colors, with component-to-layer mapping and Storybook validation.
Compare a live component implementation with its original Figma design frame, validating rendering and alignment in Storybook iteratively until pixel-perfect results are achieved.
End-to-end automation for the full GitHub issue lifecycle. Use this when the user provides a feature request or bug report and wants to go from zero to a reviewed and refined Pull Request in one autonomous process.
Refine an existing GitHub issue to improve clarity, technical implementation details, and alignment with project rules.