Skip to content

Commit 76a96ca

Browse files
authored
Merge branch 'main' into add-daily-efficiency-improver
2 parents a5a4b7f + 49402be commit 76a96ca

4 files changed

Lines changed: 27 additions & 6 deletions

File tree

.github/aw/actions-lock.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,25 @@
2020
"version": "v8",
2121
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
2222
},
23+
"actions/github-script@v9": {
24+
"repo": "actions/github-script",
25+
"version": "v9",
26+
"sha": "373c709c69115d41ff229c7e5df9f8788daa9553"
27+
},
28+
"actions/upload-artifact@v7": {
29+
"repo": "actions/upload-artifact",
30+
"version": "v7",
31+
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
32+
},
2333
"actions/upload-artifact@v7.0.0": {
2434
"repo": "actions/upload-artifact",
2535
"version": "v7.0.0",
2636
"sha": "bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"
2737
},
28-
"github/gh-aw-actions/setup@v0.66.1": {
38+
"github/gh-aw-actions/setup@v0.68.1": {
2939
"repo": "github/gh-aw-actions/setup",
30-
"version": "v0.66.1",
31-
"sha": "73ae9ce231580f337133352d321d42b6bf54b6a9"
40+
"version": "v0.68.1",
41+
"sha": "2fe53acc038ba01c3bbdc767d4b25df31ca5bdfc"
3242
},
3343
"github/gh-aw/actions/setup@v0.66.1": {
3444
"repo": "github/gh-aw/actions/setup",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ This automatically updates agent files, applies codemods, updates actions versio
135135

136136
## 💬 Share Feedback
137137

138-
Is your favorite agentic workflow not here? Do you have an idea for a new one? Clone this repo and explore, create! Tell us about it! You can file bugs and feature requests as issues in this repository and share your thoughts in the `#continuous-ai` channel in the [GitHub Next Discord](https://gh.io/next-discord).
138+
Is your favorite agentic workflow not here? Do you have an idea for a new one? Clone this repo and explore, create! Tell us about it! You can file bugs and feature requests as issues in this repository and share your thoughts in the `#agentic-workflows` channel in the [GitHub Next Discord](https://gh.io/next-discord).

workflows/agentic-wiki-coder.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
---
22
name: Agentic Wiki Coder
3+
34
description: >
45
Analyzes wiki edits for new or changed functionality, implements code changes,
56
runs tests, and creates a PR. The reverse of agentic-wiki-writer.
7+
68
on: gollum
9+
710
permissions:
811
contents: read
12+
913
tools:
1014
bash: true
1115
edit:
12-
write: true
1316
github:
1417
toolsets: [repos]
1518
repo-memory:
@@ -18,6 +21,7 @@ tools:
1821
allowed-extensions: [".json", ".md"]
1922
max-file-size: 1048576
2023
max-file-count: 50
24+
2125
steps:
2226
- name: Pre-stage event payload for sandbox
2327
run: |
@@ -32,12 +36,14 @@ steps:
3236
gh repo clone "${GITHUB_REPOSITORY}.wiki" /tmp/gh-aw/wiki
3337
echo "Wiki cloned to /tmp/gh-aw/wiki/"
3438
ls /tmp/gh-aw/wiki/
39+
3540
safe-outputs:
3641
create-pull-request:
3742
title-prefix: "[wiki-to-code]"
3843
labels: [enhancement, automated, wiki-driven]
3944
protected-files: fallback-to-issue
4045
noop: {}
46+
4147
timeout-minutes: 120
4248
---
4349

workflows/agentic-wiki-writer.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Agentic Wiki Writer
33
description: >
44
Generates GitHub wiki pages from source code using a PAGES.md template.
55
Runs once a day if any merges to the default branch have happened, or on manual dispatch.
6+
67
on:
78
workflow_dispatch:
89
inputs:
@@ -11,10 +12,12 @@ on:
1112
type: boolean
1213
default: false
1314
schedule: daily
15+
1416
permissions:
1517
contents: read
1618
issues: read
1719
pull-requests: read
20+
1821
steps:
1922
- name: Pre-stage event payload for sandbox
2023
run: |
@@ -23,6 +26,7 @@ steps:
2326
cat /tmp/gh-aw/event.json
2427
- name: Create agentic-wiki directory
2528
run: mkdir -p .github/agentic-wiki
29+
2630
tools:
2731
bash:
2832
- "find * -type f -not -path '*/node_modules/*' -not -path '*/.git/*'"
@@ -31,6 +35,7 @@ tools:
3135
- "ls"
3236
- "cat *"
3337
- "head *"
38+
edit:
3439
repo-memory:
3540
branch-name: memory/agentic-wiki
3641
description: "Source file mappings, content hashes, and file summaries for incremental wiki regeneration"
@@ -39,7 +44,7 @@ tools:
3944
max-file-count: 50
4045
github:
4146
toolsets: [default]
42-
write: {}
47+
4348
safe-outputs:
4449
create-pull-request:
4550
title-prefix: "[agentic-wiki]"

0 commit comments

Comments
 (0)