|
| 1 | +name: LLM Task |
| 2 | +description: Task optimized for LLM agents to complete autonomously |
| 3 | +title: "[LLM]: " |
| 4 | +labels: ["llm-friendly"] |
| 5 | +body: |
| 6 | + - type: textarea |
| 7 | + id: task |
| 8 | + attributes: |
| 9 | + label: Task Description |
| 10 | + description: What should the LLM do? |
| 11 | + placeholder: "Create GitHub Actions workflow for CI/CD that runs tests on all PRs" |
| 12 | + validations: |
| 13 | + required: true |
| 14 | + |
| 15 | + - type: textarea |
| 16 | + id: context |
| 17 | + attributes: |
| 18 | + label: Context / Background |
| 19 | + description: Any background information the LLM needs |
| 20 | + placeholder: | |
| 21 | + We need automated testing for all pull requests. The workflow should: |
| 22 | + - Run on push to main and all PRs |
| 23 | + - Set up the appropriate language environment |
| 24 | + - Install dependencies |
| 25 | + - Run tests with coverage |
| 26 | + - Report results as PR comments |
| 27 | +
|
| 28 | + - type: checkboxes |
| 29 | + id: acceptance |
| 30 | + attributes: |
| 31 | + label: Acceptance Criteria |
| 32 | + description: Success criteria - what must be true when complete? |
| 33 | + options: |
| 34 | + - label: Functionality works as described |
| 35 | + - label: Tests added and passing (if applicable) |
| 36 | + - label: Documentation updated (if needed) |
| 37 | + - label: No breaking changes introduced |
| 38 | + - label: Follows project conventions |
| 39 | + |
| 40 | + - type: textarea |
| 41 | + id: dependencies |
| 42 | + attributes: |
| 43 | + label: Dependencies |
| 44 | + description: Other issues that must be done first |
| 45 | + placeholder: "Depends on #1, #2" |
| 46 | + |
| 47 | + - type: textarea |
| 48 | + id: files |
| 49 | + attributes: |
| 50 | + label: Files to Modify/Create |
| 51 | + description: Specific files that will be changed (if known) |
| 52 | + placeholder: | |
| 53 | + Create: |
| 54 | + - .github/workflows/ci-cd.yml |
| 55 | + Modify: |
| 56 | + - README.md (add CI badge) |
| 57 | +
|
| 58 | + - type: checkboxes |
| 59 | + id: metadata |
| 60 | + attributes: |
| 61 | + label: LLM Metadata |
| 62 | + options: |
| 63 | + - label: Can be done autonomously (no human intervention needed) |
| 64 | + - label: Requires approval before merge |
| 65 | + - label: Breaking change or major feature |
| 66 | + |
| 67 | + - type: dropdown |
| 68 | + id: complexity |
| 69 | + attributes: |
| 70 | + label: Estimated Complexity |
| 71 | + description: How complex is this task? |
| 72 | + options: |
| 73 | + - trivial (< 30 min) |
| 74 | + - simple (30 min - 1 hour) |
| 75 | + - moderate (1-2 hours) |
| 76 | + - complex (2-4 hours) |
| 77 | + - very complex (> 4 hours) |
| 78 | + default: 1 |
0 commit comments