|
8 | 8 |
|
9 | 9 | ### Continuous Triage |
10 | 10 |
|
| 11 | +* [Ultralytics Actions](https://github.com/ultralytics/actions) comprehensive linting and formatting suite including AI labeling and summarization |
| 12 | +* [Automattic Isue Triage](https://github.com/Automattic/jetpack/tree/f1b24e51a215eb85e17de7844794d0cb512bfc42/projects/github-actions/repo-gardening) - automatic issue labeling |
| 13 | +* [Dosu Automated Issue Triage](https://dosu.dev/blog/automating-github-issue-triage) - automating GitHub issue triage |
11 | 14 | * [GenAI Issue Labeller](https://github.com/pelikhan/action-genai-issue-labeller) - a sample of using GenAIScript for automated labelling of issues |
12 | 15 | * [Detect Duplicate Issues, reusable action](https://github.com/pelikhan/action-genai-issue-dedup) - an example of a reusable action using using GitHub Actions, GitHub Models and GenAISCript for issue duplicate detection |
13 | 16 | * [Detect Duplicate Issues, micro sample](https://github.com/home-assistant/core/blob/dev/.github/workflows/detect-duplicate-issues.yml) - an example of using GitHub Actions+Models for adhoc duplicate detection |
14 | 17 | * [Detect Non-English Issues](https://github.com/home-assistant/core/blob/dev/.github/workflows/detect-non-english-issues.yml) - an example of using GitHub Actions+Models to detect issues in an unexpected language |
| 18 | + |
| 19 | +### Continuous Error Analysis |
| 20 | + |
| 21 | +* [GitHub Test Reporter](https://github.com/ctrf-io/github-test-reporter) - "Generate, publish and alert your team with detailed test results, including summaries, in-depth reports, failed test analyses, flaky test detection and AI analyses directly within your GitHub Actions CI/CD workflow and Pull Requests." |
15 | 22 | * [GitHub Action Investigator](https://microsoft.github.io/genaiscript/samples/gai/) - automatically analyze a GitHub Action Workflow Job logs and attempts to determine the root cause of the issue |
16 | | -* [Ultralytics Actions](https://github.com/ultralytics/actions) comprehensive linting and formatting suite including AI labeling and summarization |
17 | | -* [Automattic Isue Triage](https://github.com/Automattic/jetpack/tree/f1b24e51a215eb85e17de7844794d0cb512bfc42/projects/github-actions/repo-gardening) - automatic issue labeling |
18 | | -* [Dosu Automated Issue Triage](https://dosu.dev/blog/automating-github-issue-triage) - automating GitHub issue triage |
19 | 23 |
|
20 | 24 | ### Continuous Documentation |
21 | 25 |
|
@@ -98,11 +102,15 @@ Any library that can invoke an LLM inference service could be used to create a w |
98 | 102 |
|
99 | 103 | * [actions/ai-inference](https://github.com/actions/ai-inference): a standard GitHub Action for invoking LLMs direct from YAML |
100 | 104 |
|
101 | | -### Shell Scripting: |
| 105 | +### Shell Scripting |
102 | 106 |
|
103 | | -* [llm](https://llm.datasette.io/) and [llm-github-models](https://github.com/tonybaloney/llm-github-models) to run LLMs in shel scripting |
| 107 | +* [llm](https://llm.datasette.io/) and [llm-github-models](https://github.com/tonybaloney/llm-github-models) to run LLMs in shell scripting |
104 | 108 | * [ast-grep](https://ast-grep.github.io/): A tool for analyzing and transforming code using abstract syntax trees (ASTs) |
105 | 109 |
|
| 110 | +### Python Scripting |
| 111 | + |
| 112 | +* [llm Python API](https://llm.datasette.io/en/stable/python-api.html) to run LLMs in Python scripts |
| 113 | + |
106 | 114 | ### JavaScript/TypeScript |
107 | 115 |
|
108 | 116 | * [GenAIScript](https://microsoft.github.io/genaiscript/), a scripting language for GitHub Actions that simplifies the use of AI models and tools in workflows |
|
0 commit comments