Conversation
|
Merging to
|
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
|
👋 Development Partner is reviewing this PR. Will provide feedback shortly. |
There was a problem hiding this comment.
Pull request overview
This pull request adds a new agentic workflow called "Plan Command" that allows users to break down issues or discussions into actionable sub-tasks by invoking the /plan slash command. The workflow uses GitHub Copilot to analyze the context and automatically create grouped sub-issues (up to 5) that can be assigned to SWE agents. It supports both issue comments and discussion comments as triggers.
Changes:
- Adds a new slash-command agentic workflow for project planning
- Implements automatic issue grouping to organize sub-tasks under a parent tracking issue
- Provides comprehensive guidelines for creating well-structured, actionable sub-issues
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/plan.md | Source workflow definition with frontmatter configuration and agent instructions for breaking down work into sub-issues |
| .github/workflows/plan.lock.yml | Auto-generated GitHub Actions workflow file compiled from plan.md by gh-aw tool |
| Each task should: | ||
| - Be completable in a single PR | ||
| - Not be too large (avoid epic-sized tasks) | ||
| - With a single focus or goal. Keep them extremely small and focused even it means more tasks. |
There was a problem hiding this comment.
This sentence is grammatically incomplete. It should be a complete sentence, not a sentence fragment starting with "With". Consider rephrasing to: "Have a single focus or goal. Keep them extremely small and focused even if it means more tasks." or "Focus on a single goal. Keep them extremely small and focused even if it means more tasks."
| - With a single focus or goal. Keep them extremely small and focused even it means more tasks. | |
| - Have a single focus or goal. Keep tasks extremely small and focused, even if it means creating more tasks. |
| @@ -0,0 +1,136 @@ | |||
| --- | |||
| name: Plan Command | |||
| description: Generates project plans and task breakdowns when invoked with /plan command in issues or PRs | |||
There was a problem hiding this comment.
The description field format is inconsistent with other agentic workflow files in this repository. Most workflows (daily-backlog-burner.md, daily-perf-improver.md, daily-qa.md, pr-fix.md) use multi-line format with description: | followed by indented text. While the single-line format works, using the multi-line format would be more consistent and easier to maintain if the description needs to be expanded later. Consider changing to:
description: |
Generates project plans and task breakdowns when invoked with /plan command in issues or PRs
| description: Generates project plans and task breakdowns when invoked with /plan command in issues or PRs | |
| description: | | |
| Generates project plans and task breakdowns when invoked with /plan command in issues or PRs |
Add agentic workflow plan