一键导入
一键导入
Facilitate interactive brainstorming sessions for feature ideas using structured questioning rounds. Use when asked to "brainstorm", "explore an idea", "flesh out a feature", "help me think through", or when the user presents a raw feature concept that needs refinement. Guides users through metrics, visualization, goals, implementation details, and scope to produce a complete feature spec.
Review current changes with parallel subagents
Interview me about the plan
Analyze conversation for learnings and save to docs folder
Open a pull request from the current branch
Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan this feature, requirements for, spec out.
| name | fix-pipeline |
| description | Check GitHub pipeline status and plan fixes if failing |
| allowed-tools | Bash(gh pr checks:*), Bash(gh run list:*), Bash(gh run view:*), Bash(gh api:*), Bash(git rev-parse:*), Bash(git branch:*), EnterPlanMode |
I have gathered information about your pipeline. Here are the results:
<current_branch>
!git rev-parse --abbrev-ref HEAD
</current_branch>
<check_runs>
!gh run list --branch $(git rev-parse --abbrev-ref HEAD) --limit 5
</check_runs>
<latest_run_details>
!gh run view --branch $(git rev-parse --abbrev-ref HEAD) --log-failed 2>/dev/null || echo "No failed logs available"
</latest_run_details>
<check_runs> section above.<latest_run_details>.gh run view <run-id> --log-failed to get specific failure information.If the pipeline is failing: