Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Install build dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-implement.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
contains(github.event.comment.body, '@claude')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: dev-claude
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
contains(github.event.comment.body, '@claude')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: anthropics/claude-code-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
filter: blob:none
fetch-depth: 0
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.x"
cache: "pip"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
PYTHON: ${{ matrix.python }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Free up disk space
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
sudo rm -rf /usr/local/lib/android

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}

Expand Down
17 changes: 9 additions & 8 deletions docs/agentic_workflow_research.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,15 @@ The audit discussion feeds into `/plan` → sub-issues → `@claude` implements.
**What**: Set up a Cowork scheduled task that does similar work to the gh-aw audit, then compare the two approaches.

**Differences**:
| Aspect | gh-aw | Cowork Scheduled Task |
|--------|-------|-----------------------|
| Runs where | GitHub Actions (cloud) | Local (Cowork must be open) |
| Security | 5-layer guardrails, read-only token | Full local access |
| Output | GitHub Discussions/Issues | Chat notification in Cowork |
| Data access | Repo only (sandboxed) | Full local filesystem |
| Scheduling | Cron via Actions | Cron via Cowork app |
| Cost | GitHub Actions minutes + LLM tokens | Subscription credit pool |

| Aspect | gh-aw | Cowork Scheduled Task |
| ----------- | ----------------------------------- | --------------------------- |
| Runs where | GitHub Actions (cloud) | Local (Cowork must be open) |
| Security | 5-layer guardrails, read-only token | Full local access |
| Output | GitHub Discussions/Issues | Chat notification in Cowork |
| Data access | Repo only (sandboxed) | Full local filesystem |
| Scheduling | Cron via Actions | Cron via Cowork app |
| Cost | GitHub Actions minutes + LLM tokens | Subscription credit pool |

**Verdict**: gh-aw for anything that should run reliably regardless of whether your laptop is open. Cowork tasks for things that need local context (your `.venv`, local data files, GPU) or personal briefings.

Expand Down