mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
Add two new OpenCode command specifications for Linear ticket workflows: - `do-linear.md`: Full workflow for fetching, implementing, testing, and opening a PR for a Linear ticket - `plan-linear.md`: Research and planning workflow for creating implementation plans from Linear tickets Ported from EE
22 lines
887 B
Markdown
22 lines
887 B
Markdown
---
|
|
description: Research a Linear ticket and create an implementation plan
|
|
agent: plan
|
|
---
|
|
|
|
Look up the Linear ticket $ARGUMENTS. Read the ticket description and all
|
|
comments on the ticket thoroughly.
|
|
|
|
Based on your research of the ticket, come up with a detailed implementation
|
|
plan. The plan should include:
|
|
|
|
1. **Summary** — A concise summary of what the ticket is asking for
|
|
2. **Context** — Relevant information gathered from the ticket description and
|
|
comments
|
|
3. **Approach** — Step-by-step implementation plan with specific files and
|
|
components to modify
|
|
4. **Testing** — How the changes should be tested
|
|
5. **Open Questions** — Any ambiguities or decisions that need clarification
|
|
|
|
Before writing the plan, explore the codebase to understand the relevant code
|
|
paths and existing patterns. Reference specific files and line numbers where
|
|
changes will be needed.
|