一键导入
dyadplan-to-issue
Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Commit any uncommitted changes, run lint checks, fix any issues, and push the current branch.
Root-cause flaky or failing E2E tests from a specific CI run by downloading and analyzing the Playwright HTML report (traces, screenshots, errors). Use this when given a GitHub Actions run URL and asked to investigate failures. Diagnose from report artifacts first, then rebuild and rerun the affected E2E tests locally after making fixes.
Fix failing CI checks and GitHub Actions on a Pull Request.
Read all unresolved GitHub PR comments from trusted authors and address or resolve them appropriately.
Automatically gather flaky E2E tests from recent CI runs on the main branch and from recent PRs by wwwillchen/keppo-bot/dyad-assistant, then deflake them.
Promote the latest pre-release to a stable release by creating a release branch, bumping the version, and pushing.
| name | dyad:plan-to-issue |
| description | Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue. |
Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.
$ARGUMENTS: Brief description of what you want to plan (e.g., "add dark mode support", "refactor authentication system")Enter plan mode:
Use EnterPlanMode to begin the planning process. Explore the codebase to understand the current implementation and design an approach for: $ARGUMENTS
Create a comprehensive plan:
Your plan should include:
Iterate with the user:
Use ExitPlanMode to present your plan for approval. The user may:
Continue iterating until the user approves the plan.
Create the GitHub issue:
Once the plan is approved, create a GitHub issue using gh issue create:
gh issue create --title "<concise title>" --body "$(cat <<'EOF'
## Summary
<1-2 sentence description of the goal>
## Background
<Current state and why this change is needed>
## Implementation Plan
### Files to Modify
- `path/to/file1.ts` - <what changes>
- `path/to/file2.ts` - <what changes>
### Tasks
- [ ] <Task 1>
- [ ] <Task 2>
- [ ] <Task 3>
...
### Testing
- [ ] <Test requirement 1>
- [ ] <Test requirement 2>
## Notes
<Any additional context, constraints, or open questions>
---
*This issue was created from a planning session with Claude Code.*
EOF
)"
Report the result:
Provide the user with: