Skip to content

Commit f2322bb

Browse files
committed
2 parents 63934b4 + 6afdc34 commit f2322bb

19 files changed

Lines changed: 28 additions & 86 deletions

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Install gh-aw
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
install-gh-aw:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
- name: Install gh-aw
15+
run: |
16+
curl -fsSL https://raw.githubusercontent.com/githubnext/gh-aw/refs/heads/main/install-gh-aw.sh -o /tmp/install-gh-aw.sh
17+
bash /tmp/install-gh-aw.sh
18+
- name: Verify gh-aw installation
19+
run: ./gh-aw --version
20+
- name: Compile workflows
21+
run: ./gh-aw compile --workflows-dir workflows --verbose

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
workflows/*.lock.yml
2+
gh-aw
3+
.github/instructions/github-agentic-workflows.instructions.md
4+
.github/prompts/create-agentic-workflow.prompt.md

workflows/agentics/shared/include-link.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

workflows/agentics/shared/xpia.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

workflows/ci-doctor.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,10 @@ safe-outputs:
2121
add-comment:
2222

2323
tools:
24+
cache-memory: true
2425
web-fetch:
2526
web-search:
2627

27-
# Cache configuration for persistent storage between runs
28-
cache:
29-
key: investigation-memory-${{ github.repository }}
30-
path:
31-
- /tmp/memory
32-
- /tmp/investigation
33-
restore-keys:
34-
- investigation-memory-${{ github.repository }}
35-
- investigation-memory-
36-
3728
timeout_minutes: 10
3829

3930
---
@@ -192,6 +183,3 @@ When creating an investigation issue, use this structure:
192183
- Build cumulative knowledge about failure patterns and solutions using structured JSON files
193184
- Use file-based indexing for fast pattern matching and similarity detection
194185

195-
@include agentics/shared/include-link.md
196-
197-
@include agentics/shared/xpia.md

workflows/daily-accessibility-review.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,3 @@ still contains a placeholder, then:
6868
- A clear description of the problem
6969
- References to the appropriate section(s) of WCAG 2.2 that are violated
7070
- Any relevant code snippets that illustrate the issue
71-
72-
@include agentics/shared/include-link.md
73-
74-
@include agentics/shared/xpia.md

workflows/daily-backlog-burner.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,6 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
8888
6. If you encounter any unexpected failures or have questions, add
8989
comments to the pull request or issue to seek clarification or assistance.
9090

91-
@include agentics/shared/include-link.md
92-
93-
@include agentics/shared/xpia.md
9491

9592
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->
9693
@include? agentics/build-tools.md

workflows/daily-dependency-updates.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ Your name is "${{ github.workflow }}". Your job is to act as an agentic coder fo
3838

3939
> NOTE: If you didn't make progress on particular dependency updates, create one overall issue saying what you've tried, ask for clarification if necessary, and add a link to a new branch containing any investigations you tried.
4040
41-
@include agentics/shared/include-link.md
42-
43-
@include agentics/shared/xpia.md
4441

4542
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->
4643
@include? agentics/build-tools.md

workflows/daily-perf-improver.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,6 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
172172

173173
6. At the end of your work, add a very, very brief comment (at most two-sentences) to the issue from step 1a, saying you have worked on the particular goal, linking to any pull request you created, and indicating whether you made any progress or not.
174174

175-
@include agentics/shared/include-link.md
176-
177-
@include agentics/shared/xpia.md
178175

179176
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->
180177
@include? agentics/build-tools.md

workflows/daily-plan.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ Your job is to act as a planner for the GitHub repository ${{ github.repository
5050

5151
3a. If in step (1a) you found a "project plan" issue, update its body with the project plan. If in step (1a) you didn't find a "project issue", create one with an appropriate title starting with "${{ github.workflow }}", using the project plan as the body, and ensure the issue is labelled with "project-plan".
5252

53-
@include agentics/shared/include-link.md
54-
55-
@include agentics/shared/xpia.md
5653

5754
<!-- You can customize prompting and tools in .github/workflows/agentics/daily-plan.config -->
5855
@include? agentics/daily-plan.config.md

0 commit comments

Comments
 (0)