Skip to content

Commit ff5a15f

Browse files
authored
Remove include links + ci check (#47)
* remove include links * add CI workflow for installing and verifying gh-aw * update .gitignore to include workflow instruction files; fix formatting in pr-fix.md
1 parent 691046d commit ff5a15f

18 files changed

Lines changed: 27 additions & 37 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/ci-doctor.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,4 @@ When creating an investigation issue, use this structure:
192192
- Build cumulative knowledge about failure patterns and solutions using structured JSON files
193193
- Use file-based indexing for fast pattern matching and similarity detection
194194

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

workflows/daily-accessibility-review.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,4 @@ still contains a placeholder, then:
6969
- References to the appropriate section(s) of WCAG 2.2 that are violated
7070
- Any relevant code snippets that illustrate the issue
7171

72-
@include agentics/shared/include-link.md
73-
7472
@include agentics/shared/xpia.md

workflows/daily-backlog-burner.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +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-
9391
@include agentics/shared/xpia.md
9492

9593
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->

workflows/daily-dependency-updates.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +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-
4341
@include agentics/shared/xpia.md
4442

4543
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->

workflows/daily-perf-improver.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +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-
177175
@include agentics/shared/xpia.md
178176

179177
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->

workflows/daily-plan.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +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-
5553
@include agentics/shared/xpia.md
5654

5755
<!-- You can customize prompting and tools in .github/workflows/agentics/daily-plan.config -->

workflows/daily-progress.md

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

8989
6. If you encounter any unexpected failures or have questions, add comments to the pull request or issue to seek clarification or assistance.
9090

91-
@include agentics/shared/include-link.md
92-
9391
@include agentics/shared/xpia.md
9492

9593
<!-- You can whitelist tools in .github/workflows/build-tools.md file -->

0 commit comments

Comments
 (0)