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
Copy file name to clipboardExpand all lines: docs/ci-doctor.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,12 @@ The [CI Doctor workflow](../workflows/ci-doctor.md?plain=1) monitors your GitHub
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the CI Doctor workflow to your repository
14
-
gh aw add githubnext/agentics/ci-doctor --pr
14
+
gh aw add githubnext/agentics/ci-doctor
15
15
```
16
16
17
-
This creates a pull request to add the workflow to your repository.
17
+
This walks you through adding the workflow to your repository.
18
18
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
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.
19
+
After adding, the workflow will automatically trigger when monitored CI workflows fail. You cannot start this workflow manually as it responds to workflow failure events.
Copy file name to clipboardExpand all lines: docs/daily-accessibility-review.md
+2-12Lines changed: 2 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,23 +11,13 @@ The [daily accessibility review workflow](../workflows/daily-accessibility-revie
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the Daily Accessibility Review workflow to your repository
14
-
gh aw add githubnext/agentics/daily-accessibility-review --pr
14
+
gh aw add githubnext/agentics/daily-accessibility-review
15
15
```
16
16
17
-
This creates an issue in your repository recording accessibility problems found.
18
-
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
22
-
23
-
```bash
24
-
gh aw run daily-accessibility-review
25
-
```
17
+
This walks you through adding the workflow to your repository.
26
18
27
19
**Mandatory Checklist**
28
20
29
-
*[ ] I understand that, by default, the agentic portion of this workflow will generate and run bash commands in the confine of the GitHub Actions VM, with network access.
30
-
31
21
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
Copy file name to clipboardExpand all lines: docs/daily-dependency-updates.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,10 @@ The [daily dependency updater workflow](../workflows/daily-dependency-updates.md
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the Daily Dependency Updater workflow to your repository
14
-
gh aw add githubnext/agentics/daily-dependency-updates --pr
14
+
gh aw add githubnext/agentics/daily-dependency-updates
15
15
```
16
16
17
-
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:
17
+
This walks you through adding the workflow to your repository. After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
Copy file name to clipboardExpand all lines: docs/daily-perf-improver.md
+4-22Lines changed: 4 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,47 +11,29 @@ The [daily performance improver workflow](../workflows/daily-perf-improver.md?pl
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the Daily Performance Improver workflow to your repository
14
-
gh aw add githubnext/agentics/daily-perf-improver --pr
14
+
gh aw add githubnext/agentics/daily-perf-improver
15
15
```
16
16
17
-
This creates a pull request to add the workflow to your repository.
17
+
This walks you through adding the workflow to your repository and running the workflow for the first time.
18
18
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
19
+
You can start a run of this workflow immediately by running:
22
20
23
21
```bash
24
22
gh aw run daily-perf-improver
25
23
```
26
24
27
-
To run continuously (at most one instance running at a time and sending a trigger every 3 minutes), use:
25
+
To run repeatedly (at most one instance running at a time and sending a trigger every 3 minutes), use:
28
26
29
27
```bash
30
28
gh aw run daily-perf-improver --repeat 180
31
29
```
32
30
33
-
❗IMPORTANT: GitHub Actions runs will **not** trigger on commits pushed by this workflow and will **not** tell you that CI has not been run unless you have enabled a specific custom check for this condition. **You must open/close the PR or hit "Update branch" if offered to trigger CI.Yes it's painful and yes it's just something you need to be aware of.
34
-
35
31
**Mandatory Checklist**
36
32
37
33
*[ ] I understand that, by default, the agentic portion of this workflow will generate and run bash commands in the confine of the GitHub Actions VM, with network access.
38
34
39
-
*[ ] I have read the notes on coding tasks in the [main README](../README.md) and understand the implications.
40
-
41
-
*[ ] I am a repository admin or have sufficient permissions, and am happy for the safe-outputs portion of this workflow to push new branches to the repository.
42
-
43
-
*[ ] I have enabled "Allow GitHub Actions to create and approve pull requests" in the repository settings under "Actions > General"
44
-
45
-
*[ ] I have considered enabling "Always suggest updating pull request branches" in the repository settings
46
-
47
-
*[ ] If in a fork, I have enabled "GitHub Actions" and "GitHub Issues" in the fork repository settings
48
-
49
35
*[ ] I will review all pull requests very carefully, and carefully monitor the repository.
50
36
51
-
*[ ] I will operate this demonstrator for a time-limited period only (the default is 48h).
52
-
53
-
*[ ] I understand that GitHub Actions runs will **not** trigger on pull requests created by this workflow, see above.
54
-
55
37
## Configuration
56
38
57
39
1. The first run of the workflow will produce a pull request with inferred action pre-steps that need approval
Copy file name to clipboardExpand all lines: docs/daily-plan.md
+2-10Lines changed: 2 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,18 +11,10 @@ The [daily plan workflow](../workflows/daily-plan.md?plain=1) will run daily to
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the Daily Plan workflow to your repository
14
-
gh aw add githubnext/agentics/daily-plan --pr
14
+
gh aw add githubnext/agentics/daily-plan
15
15
```
16
16
17
-
This creates a pull request to add the workflow to your repository.
18
-
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
22
-
23
-
```bash
24
-
gh aw run daily-plan
25
-
```
17
+
This walks you through adding the workflow to your repository and running the workflow for the first time.
Copy file name to clipboardExpand all lines: docs/daily-progress.md
+3-15Lines changed: 3 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,33 +11,21 @@ The [daily progress workflow](../workflows/daily-progress.md?plain=1) is an auto
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the Daily Progress workflow to your repository
14
-
gh aw add githubnext/agentics/daily-progress --pr
14
+
gh aw add githubnext/agentics/daily-progress
15
15
```
16
16
17
-
This creates a pull request to add the workflow to your repository.
17
+
This walks you through adding the workflow to your repository.
18
18
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
19
+
You can start a run of this workflow immediately by running:
22
20
23
21
```bash
24
22
gh aw run daily-progress
25
23
```
26
24
27
25
**Mandatory Checklist**
28
26
29
-
*[ ] I have read the notes on coding tasks in the [main README](../README.md) and understand the implications.
30
-
31
27
*[ ] I understand that this workflow will generate and run bash commands in the confine of the GitHub Actions VM, with network access.
32
28
33
-
*[ ] I am a repository admin or have sufficient permissions, and am happy for this workflow to create issues, pull requests, and push new branches to the repository.
34
-
35
-
*[ ] I have enabled "Allow GitHub Actions to create and approve pull requests" in the repository settings under "Actions > General"
36
-
37
-
*[ ] I have considered enabling "Always suggest updating pull request branches" in the repository settings
38
-
39
-
*[ ] If in a fork, I have enabled "GitHub Actions" and "GitHub Issues" in the fork repository settings
40
-
41
29
*[ ] I will review all pull requests and issues created by this workflow very carefully, and carefully monitor the repository.
Copy file name to clipboardExpand all lines: docs/daily-qa.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,12 @@ The [daily Adhoc QA workflow](../workflows/daily-qa.md?plain=1) will perform adh
11
11
gh extension install github/gh-aw
12
12
13
13
# Add the Daily QA workflow to your repository
14
-
gh aw add githubnext/agentics/daily-qa --pr
14
+
gh aw add githubnext/agentics/daily-qa
15
15
```
16
16
17
-
This creates a pull request to add the workflow to your repository.
17
+
This walks you through adding the workflow to your repository.
18
18
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
19
+
You can start a run of this workflow immediately by running:
Copy file name to clipboardExpand all lines: docs/daily-repo-status.md
+8-16Lines changed: 8 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,38 +1,30 @@
1
-
# 👥 Daily Team Status
1
+
# 👥 Daily Repo Status
2
2
3
3
> For an overview of all available workflows, see the [main README](../README.md).
4
4
5
-
The [daily team status workflow](../workflows/daily-team-status.md?plain=1) will assess activity in the repository and create a status report issue. You can edit the workflow to adjust the topics and texture of the report.
5
+
The [daily repo status workflow](../workflows/daily-repo-status.md?plain=1) will assess activity in the repository and create a status report issue. You can edit the workflow to adjust the topics and texture of the report.
6
6
7
7
## Installation
8
8
9
9
```bash
10
10
# Install the 'gh aw' extension
11
11
gh extension install github/gh-aw
12
12
13
-
# Add the Daily Team Status workflow to your repository
14
-
gh aw add githubnext/agentics/daily-team-status --pr
13
+
# Add the Daily Repo Status workflow to your repository
14
+
gh aw add githubnext/agentics/daily-repo-status
15
15
```
16
16
17
-
This creates a pull request to add the workflow to your repository.
17
+
This walks you through adding the workflow to your repository.
18
18
19
-
You must also add [choose a coding agent](https://github.github.com/gh-aw/reference/engines/) and add an API key secret for the agent to your repository.
20
-
21
-
After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
19
+
You can start a run of this workflow immediately by running:
22
20
23
21
```bash
24
-
gh aw run daily-team-status
22
+
gh aw run daily-repo-status
25
23
```
26
24
27
-
**Mandatory Checklist**
28
-
29
-
*[ ] If in a fork, enable GitHub Actions and Issues in the fork settings
30
-
31
25
## Configuration
32
26
33
-
This workflow requires no configuration and works out of the box. You can use local configuration to customize triage criteria, labeling logic, customize issue categorization, modify automated responses. Local configuration can be done in `.github/workflows/agentics/daily-team-status.config.md`.
34
-
35
-
2. Add MCPs to integrate with project management tools
27
+
This workflow requires no configuration and works out of the box. You can use edit the workflow to customize triage criteria, labeling logic, customize issue categorization, modify automated responses.
0 commit comments