You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This creates a pull request to add the workflow to your repository. After merging the PR, the workflow will automatically trigger when monitored CI workflows fail. You cannot start this workflow manually as it responds to workflow failure events.
14
14
15
+
**Checklist**
16
+
17
+
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
18
+
15
19
## Configuration
16
20
17
-
- No build steps required - works out of the box for failure investigation
18
-
- Edit the workflow file to specify which workflows to monitor (currently monitors "Daily Perf Improver" and "Daily Test Improver")
19
-
- Customize investigation depth, failure categorization, and reporting format
20
-
- After editing run `gh aw compile` to update the workflow.
21
+
1. Use local configuation to specify which workflows to monitor (currently monitors "Daily Perf Improver" and "Daily Test Improver"), investigation depth, failure categorization, and reporting format. Local configuration can be done in `.github/workflows/agentics/ci-doctor.config.md`.
22
+
23
+
2. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
24
+
25
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
Copy file name to clipboardExpand all lines: docs/daily-accessibility-review.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,20 +10,23 @@ The [daily accessibility review workflow](../workflows/daily-accessibility-revie
10
10
gh aw add daily-accessibility-review -r githubnext/agentics --pr
11
11
```
12
12
13
-
This creates a pull request to add the workflow to your repository. After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
13
+
This creates an issue in your repository recording accessibility problems found.
14
14
15
15
```bash
16
16
gh aw run daily-accessibility-review
17
17
```
18
18
19
+
**Checklist**
20
+
21
+
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
22
+
19
23
## Configuration
20
24
21
-
- First run produces a pull request with inferred action pre-steps that need approval
22
-
- Requires configuring build steps to run your application - initial runs may open issues suggesting new inferred commands that need approval
23
-
- Edit the workflow to specify application startup commands and URLs to test
24
-
- Customize accessibility testing tools and WCAG compliance levels
25
-
- Add project-specific accessibility scenarios and user journey testing
26
-
- After editing run `gh aw compile` to update the workflow.
25
+
1. Use local configuation to specify which accessibility standards to check (e.g., WCAG 2.1, WCAG 2.2), types of accessibility issues to prioritize, and reporting format. Local configuration can be done in `.github/workflows/agentics/daily-accessibility-review.config.md`.
26
+
27
+
2. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
28
+
29
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
27
30
28
31
## What it reads from GitHub
29
32
@@ -56,4 +59,3 @@ gh aw run daily-accessibility-review
56
59
57
60
- If you're sufficiently isolated (e.g. operating in a fresh fork of an open source project, with Actions and Issues enabled ), you can enable all Bash commands by using `Bash: [":*"]` in the workflow file and then running `gh aw compile` to update the workflow. This may be useful for time-limited experiments.
58
61
59
-
⚠️ See notes on coding tasks in the [main README](../README.md). You will need to edit the workflow file to add the commands to build and run your project. After editing run `gh aw compile` to update the workflow.
Copy file name to clipboardExpand all lines: docs/daily-dependency-updates.md
+19-4Lines changed: 19 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,27 @@ This creates a pull request to add the workflow to your repository. After mergin
16
16
gh aw run daily-dependency-updates
17
17
```
18
18
19
+
**Checklist**
20
+
21
+
*[ ] See notes on coding tasks in the [main README](../README.md).
22
+
23
+
*[ ] Enable "Allow GitHub Actions to create and approve pull requests" in the repository settings under "Actions > General"
24
+
25
+
*[ ] Recommend enabling "Always suggest updating pull request branches" in the repository settings
26
+
27
+
*[ ] If in a fork, enable "GitHub Actions" and "GitHub Issues" in the fork project settings
28
+
29
+
*[ ] When a pull request is created, you must review the changes carefully.
30
+
31
+
*[ ] Understand that your GitHub Actions runs will **not** trigger on pull requests created by this workflow, or indeed any Actions-created PRs. You must open/close the PR or push a new commit to trigger CI checks. This is not indicated in the GitHub UI. It's just something you need to be aware of.
32
+
19
33
## Configuration
20
34
21
-
- Edit the workflow to specify dependency management tools (npm, pip, maven, etc.), customize dependency update strategies and version constraints
22
-
- Configure which dependencies to include/exclude from automated updates
23
-
- After editing run `gh aw compile` to update the workflow.
35
+
1. Use local configuation to specify dependency management tools (npm, pip, maven, etc.), customize dependency update strategies and version constraints, onfigure which dependencies to include/exclude from automated updates. Local configuration can be done in `.github/workflows/agentics/daily-dependency-updates.config.md`.
36
+
37
+
2. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
38
+
39
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
24
40
25
41
## What it reads from GitHub
26
42
@@ -51,4 +67,3 @@ gh aw run daily-dependency-updates
51
67
- By default this workflow will trigger for at most 48 hours, after which it will stop triggering.
52
68
- This allows you to experiment with the workflow for a limited time before deciding whether to keep it active.
53
69
54
-
⚠️ See notes on coding tasks in the [main README](../README.md).
Copy file name to clipboardExpand all lines: docs/daily-perf-improver.md
+40-7Lines changed: 40 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,37 @@ This creates a pull request to add the workflow to your repository. After mergin
16
16
gh aw run daily-perf-improver
17
17
```
18
18
19
+
To run continuously (at most one instance running at a time and sending a trigger every 3 minutes), use:
20
+
21
+
```bash
22
+
gh aw run daily-perf-improver --repeat 180
23
+
```
24
+
25
+
**Checklist**
26
+
27
+
*[ ] See notes on coding tasks in the [main README](../README.md).
28
+
29
+
*[ ] Enable "Allow GitHub Actions to create and approve pull requests" in the repository settings under "Actions > General"
30
+
31
+
*[ ] Recommend enabling "Always suggest updating pull request branches" in the repository settings
32
+
33
+
*[ ] If in a fork, enable "GitHub Actions" and "GitHub Issues" in the fork project settings
34
+
35
+
*[ ] When a pull request is created, you must review the changes carefully.
36
+
37
+
*[ ] Understand that your GitHub Actions runs will **not** trigger on pull requests created by this workflow, or indeed any Actions-created PRs. You must open/close the PR or push a new commit to trigger CI checks. This is not indicated in the GitHub UI. It's just something you need to be aware of.
38
+
19
39
## Configuration
20
40
21
-
- First run produces a pull request with inferred action pre-steps that need approval
22
-
- Requires configuring build steps to run your application - initial runs may open issues suggesting new inferred commands that need approval
23
-
- Edit the workflow to specify performance testing tools and benchmarking frameworks
24
-
- Customize optimization targets, performance metrics, and profiling strategies
25
-
- Add project-specific bottleneck identification and performance validation steps
41
+
1. The first run of the workflow will produce a pull request with inferred action pre-steps that need approval
42
+
43
+
2. The first run of the workflow will also create an issue in the repository with a plan for improving performance. You can comment on this issue to provide feedback or adjustments to the plan. Comments will not be picked up until the next run.
44
+
45
+
3. Use local configuation to specify performance testing tools and benchmarking frameworks, optimization targets, performance metrics, and profiling strategies. Local configuration can be done in `.github/workflows/agentics/daily-perf-improver.config.md`.
46
+
47
+
4. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
48
+
49
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
26
50
27
51
## What it reads from GitHub
28
52
@@ -60,6 +84,15 @@ gh aw run daily-perf-improver
60
84
61
85
## YOLO
62
86
63
-
-If you're sufficiently isolated (e.g. operating in a fresh fork of an open source project, with Actions and Issues enabled ), you can enable all Bash commands by using `Bash: [":*"]` in the workflow file and then running `gh aw compile` to update the workflow. This may be useful for time-limited experiments.
87
+
If you're sufficiently isolated (e.g. operating in a fresh fork of an open source project, with Actions and Issues enabled ), you can enable all Bash commands. This is not recommended for production use, but may be useful for time-limited experiments in isolated forks.
64
88
65
-
⚠️ See notes on coding tasks in the [main README](../README.md). You will need to edit the workflow file to add the commands to build, test and profile. After editing run `gh aw compile` to update the workflow.
89
+
`.github/workflows/agentics/build-tools.md`:
90
+
91
+
```yaml
92
+
---
93
+
tools:
94
+
claude:
95
+
allowed:
96
+
Bash: ["*"] # YOLO mode - all bash commands allowed or list specific tools
Copy file name to clipboardExpand all lines: docs/daily-plan.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,17 @@ This creates a pull request to add the workflow to your repository. After mergin
16
16
gh aw run daily-plan
17
17
```
18
18
19
+
**Checklist**
20
+
21
+
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
22
+
19
23
## Configuration
20
24
21
-
- No build steps required - works out of the box
22
-
- Edit the workflow file to customize planning format, priorities, planning categories, timeframes, or team coordination style
23
-
- Add MCPs to integrate with other planning tools
24
-
- After editing run `gh aw compile` to update the workflow.
25
+
1. Use local configuation to specify planning focus areas, reporting format, and frequency. Local configuration can be done in `.github/workflows/agentics/daily-plan.config.md`.
26
+
27
+
2. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
28
+
29
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
Copy file name to clipboardExpand all lines: docs/daily-qa.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,17 @@ This creates a pull request to add the workflow to your repository. After mergin
16
16
gh aw run daily-qa
17
17
```
18
18
19
+
**Checklist**
20
+
21
+
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
22
+
19
23
## Configuration
20
24
21
-
- Requires configuring build steps to run your application - initial runs may open issues suggesting new inferred commands that need approval
22
-
- Edit the workflow to specify build tools, test frameworks, and QA scenarios
23
-
- Customize quality checks, performance benchmarks, and validation steps
24
-
- Add project-specific getting-started instructions and tutorial validation
25
-
-After editing run `gh aw compile` to update the workflow.
25
+
3. Use local configuation to specify QA tasks, testing scenarios, reporting format, and frequency. Local configuration can be done in `.github/workflows/agentics/daily-qa.config.md`.
26
+
27
+
4. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
28
+
29
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
26
30
27
31
## What it reads from GitHub
28
32
@@ -56,4 +60,3 @@ gh aw run daily-qa
56
60
57
61
- If you're sufficiently isolated (e.g. operating in a fresh fork of an open source project, with Actions and Issues enabled ), you can enable all Bash commands by using `Bash: [":*"]` in the workflow file and then running `gh aw compile` to update the workflow. This may be useful for time-limited experiments.
58
62
59
-
⚠️ See notes on coding tasks in the [main README](../README.md).
Copy file name to clipboardExpand all lines: docs/daily-test-improver.md
+23-6Lines changed: 23 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,31 @@ This creates a pull request to add the workflow to your repository. After mergin
16
16
gh aw run daily-test-improver
17
17
```
18
18
19
+
**Checklist**
20
+
21
+
*[ ] See notes on coding tasks in the [main README](../README.md).
22
+
23
+
*[ ] Enable "Allow GitHub Actions to create and approve pull requests" in the repository settings under "Actions > General"
24
+
25
+
*[ ] Recommend enabling "Always suggest updating pull request branches" in the repository settings
26
+
27
+
*[ ] If in a fork, enable "GitHub Actions" and "GitHub Issues" in the fork project settings
28
+
29
+
*[ ] When a pull request is created, you must review the changes carefully.
30
+
31
+
*[ ] Understand that your GitHub Actions runs will **not** trigger on pull requests created by this workflow, or indeed any Actions-created PRs. You must open/close the PR or push a new commit to trigger CI checks. This is not indicated in the GitHub UI. It's just something you need to be aware of.
32
+
19
33
## Configuration
20
34
21
-
- First run produces a pull request with inferred action pre-steps that need approval
22
-
- Requires configuring build steps to run your application - check reports from initial runs for new build commands that need approval. Add these to the workflow and then run `gh aw compile` to update the workflow.
23
-
- Edit the workflow to customize test generation strategies, high-priority areas and coverage targets
24
-
- Add project-specific test patterns and edge case identification
25
-
- After editing run `gh aw compile` to update the workflow.
35
+
1. The first run of the workflow will produce a pull request with inferred action pre-steps that need approval.
36
+
37
+
2. The first run of the workflow will also create an issue in the repository with a plan for improving test coverage. You can comment on this issue to provide feedback or adjustments to the plan. Comments will not be picked up until the next run.
38
+
39
+
3. Use local configuation or comment on the plan to specify test generation strategies, high-priority areas and coverage targets. Local configuration can be done in `.github/workflows/agentics/daily-test-improver.config.md`.
40
+
41
+
4. Build tool configuration for build tools shared across all workflows installed from this pack can be done in `.github/workflows/agentics/build-tools.md`.
42
+
43
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
26
44
27
45
## What it reads from GitHub
28
46
@@ -56,4 +74,3 @@ gh aw run daily-test-improver
56
74
57
75
- If you're sufficiently isolated (e.g. operating in a fresh fork of an open source project, with Actions and Issues enabled ), you can enable all Bash commands by using `Bash: [":*"]` in the workflow file and then running `gh aw compile` to update the workflow. This may be useful for time-limited experiments.
58
76
59
-
⚠️ See notes on coding tasks in the [main README](../README.md). You will need to edit the workflow file to add the commands to build and run tests. After editing run `gh aw compile` to update the workflow.
This creates a pull request to add the workflow to your repository. You can't start a run of this workflow directly as it is triggered in the context of an issue.
14
14
15
+
**Checklist**
16
+
17
+
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
18
+
15
19
## Configuration
16
20
17
21
- No build steps required - works out of the box
18
22
- Edit the workflow file to customize triage criteria, labeling logic, customize issue categorization, modify automated responses
19
23
- Add MCPs to integrate with project management tools
20
-
- After editing run `gh aw compile` to update the workflow.
24
+
- After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
Copy file name to clipboardExpand all lines: docs/update-docs.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,29 @@ This creates a pull request to add the workflow to your repository. After mergin
16
16
gh aw run update-docs
17
17
```
18
18
19
+
**Checklist**
20
+
21
+
*[ ] See notes on coding tasks in the [main README](../README.md).
22
+
23
+
*[ ] Enable "Allow GitHub Actions to create and approve pull requests" in the repository settings under "Actions > General"
24
+
25
+
*[ ] Recommend enabling "Always suggest updating pull request branches" in the repository settings
26
+
27
+
*[ ] If in a fork, enable "GitHub Actions" and "GitHub Issues" in the fork project settings
28
+
29
+
*[ ] When a pull request is created, you must review the changes carefully.
30
+
31
+
*[ ] Understand that your GitHub Actions runs will **not** trigger on pull requests created by this workflow, or indeed any Actions-created PRs. You must open/close the PR or push a new commit to trigger CI checks. This is not indicated in the GitHub UI. It's just something you need to be aware of.
32
+
33
+
19
34
## Configuration
20
35
21
36
- Benefits from configuring build steps for documentation generation
22
37
- Edit the workflow to specify your documentation framework (Astro Starlight, MkDocs, etc.)
23
38
- Customize documentation structure, themes, and generation commands
24
39
- Add project-specific documentation validation and deployment steps
25
40
- Configure which files and directories to include in documentation updates
26
-
- After editing run `gh aw compile` to update the workflow.
41
+
- After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
27
42
28
43
## What it reads from GitHub
29
44
@@ -57,4 +72,3 @@ gh aw run update-docs
57
72
- By default this workflow will trigger for at most 30 days, after which it will stop triggering.
58
73
- This allows you to experiment with the workflow for a limited time before deciding whether to keep it active.
59
74
60
-
⚠️ See notes on coding tasks in the [main README](../README.md).
0 commit comments