genval-ai / reference

Public facing reference content, used for getting started with a new repository.
Apache License 2.0
0 stars 0 forks source link

Generate Issue Templates from Task Definitions #51

Open paulfryer opened 16 hours ago

paulfryer commented 16 hours ago

Processing Instructions

Look at each markdown file found in the .genval/definitions/tasks directory. Each file will be used to generate a Github Issue Template in YAML which we'll name like this: .github/ISSUE_TEMPLATE/{task-code}.yaml where {task-code} is a unique code of the task definition markdown file you are processing (without the .md extension).

Use your best judgement about how to create a Github Issue Form user input elements that is user friendly and helpful for items described in the ### User Input section of the task definition file. This is where you can break up the description into individual input elements. Be sure to set default values, if you think there should be default values. Use the value attribute to set a default value, not default.

For the ### Processing Instructions section you can just create a single textarea input box with the instructions formatted as markdown. Be sure to use textarea (not markdown) as the element type, because we need the value to come through when the user submits the issue. Markdown element types don't actually come through to the issue body when you create an issue, so we have to use the textarea element type.

Title: Use the following pattern when generating the title: {task-title} where {task-title} is the a title for the type of task you are working with.

If the definition file includes ### Scope Patterns you can just include those as they are written.

Note: When adding Markdown you are required to specify a value attribute, but you can not specify a label attribute. So any markdown text should be set in the value attribute.

Scope Patterns

.genval/definitions/tasks/*.md
.github/ISSUE_TEMPLATE/*

Source Branch

main

genval-github-integration[bot] commented 16 hours ago

Pre Refactor Summary

Property Value
Proposed Branch Name feature/generate-github-issue-templates
Total Files in Scope 7
Estimated Input Tokens 7151

Details

Scope Patterns

```text .genval/definitions/tasks/*.md .github/ISSUE_TEMPLATE/* ```

Files in Scope

| File | Estimated Tokens | |------|------------------| | .github/ISSUE_TEMPLATE/build-stack-definitions.yaml | 1389 | | .genval/definitions/tasks/build-stack-definitions.md | 1137 | | .github/ISSUE_TEMPLATE/generate-issue-templates-from-task-definitions.yaml | 767 | | .genval/definitions/tasks/build-models-from-definitions.md | 699 | | .genval/definitions/tasks/generate-issue-templates-from-task-definitions.md | 632 | | .github/ISSUE_TEMPLATE/refactor.yaml | 356 | | .genval/definitions/tasks/refactor.md | 302 |

genval-github-integration[bot] commented 16 hours ago
File Name Action Summary of Changes
.github/ISSUE_TEMPLATE/build-models-from-definitions.yaml CREATE Created a new GitHub Issue Template for the 'Build Models From Definitions' task.
.github/ISSUE_TEMPLATE/generate-issue-templates-from-task-definitions.yaml UPDATE Updated the existing GitHub Issue Template for generating issue templates from task definitions.