Skip to content
Closed
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
46 changes: 46 additions & 0 deletions docs/reports/AGENTICS_SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Agentics Collection - Quick Summary

## 📊 Results

- ✅ **18 workflows** analyzed
- 🔧 **9 workflows** fixed automatically
- ✓ **0 compilation errors** after fixes
- 📝 **2 types** of deprecated syntax found

## 🎯 Key Findings

### Issue 1: Deprecated `bash:` Syntax (9 workflows)
```diff
- bash:
+ bash: true
```

**Affected:** daily-backlog-burner, daily-dependency-updates, daily-perf-improver, daily-progress, daily-qa, daily-test-improver, pr-fix, q, repo-ask

### Issue 2: Deprecated `add-comment.discussion` (5 workflows)
```diff
safe-outputs:
add-comment:
- discussion: true
target: "*"
```

**Affected:** daily-accessibility-review, daily-backlog-burner, daily-perf-improver, daily-qa, daily-test-improver

## ⚡ Quick Fix

```bash
cd /path/to/agentics
gh aw fix --write
gh aw compile
```

## 📁 Full Documentation

- **Main Report:** [agentics-syntax-check-2026-02-09.md](./agentics-syntax-check-2026-02-09.md)
- **Detailed Diffs:** [agentics-detailed-diffs.md](./agentics-detailed-diffs.md)
- **Fixed Workflows:** [agentics-fixed-workflows/](./agentics-fixed-workflows/)

## 🎉 Status

All workflows now comply with latest gh-aw syntax and compile successfully!
218 changes: 218 additions & 0 deletions docs/reports/agentics-detailed-diffs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
# Detailed Diffs for Agentics Collection Fixes

This document shows the exact changes made to each workflow file.

## Summary of Changes

- **9 workflows** with deprecated `bash:` syntax
- **5 workflows** with deprecated `add-comment.discussion` field

---

## 1. daily-backlog-burner.md

### Changes:
- Removed `discussion: true` from `add-comment` config
- Changed `bash:` to `bash: true`

```diff
safe-outputs:
add-comment:
- discussion: true
target: "*"
max: 3

tools:
web-fetch:
github:
toolsets: [all]
- bash:
+ bash: true
```

---

## 2. daily-dependency-updates.md

### Changes:
- Changed `bash:` to `bash: true`

```diff
tools:
web-fetch:
github:
toolsets: [all]
- bash:
+ bash: true
```

---

## 3. daily-perf-improver.md

### Changes:
- Removed `discussion: true` from `add-comment` config
- Changed `bash:` to `bash: true`

```diff
safe-outputs:
add-comment:
- discussion: true
target: "*"

tools:
- bash:
+ bash: true
```

---

## 4. daily-progress.md

### Changes:
- Changed `bash:` to `bash: true`

```diff
tools:
web-fetch:
github:
toolsets: [all]
- bash:
+ bash: true
```

---

## 5. daily-qa.md

### Changes:
- Removed `discussion: true` from `add-comment` config
- Changed `bash:` to `bash: true`

```diff
safe-outputs:
add-comment:
- discussion: true
target: "*"

tools:
- bash:
+ bash: true
```

---

## 6. daily-test-improver.md

### Changes:
- Removed `discussion: true` from `add-comment` config
- Changed `bash:` to `bash: true`

```diff
safe-outputs:
add-comment:
- discussion: true
target: "*"

tools:
- bash:
+ bash: true
```

---

## 7. pr-fix.md

### Changes:
- Changed `bash:` to `bash: true`

```diff
tools:
web-fetch:
github:
toolsets: [all]
- bash:
+ bash: true
```

---

## 8. q.md

### Changes:
- Changed `bash:` to `bash: true`

```diff
tools:
- bash:
+ bash: true
```

---

## 9. repo-ask.md

### Changes:
- Changed `bash:` to `bash: true`

```diff
tools:
web-fetch:
github:
toolsets: [all]
- bash:
+ bash: true
```

---

## 10. daily-accessibility-review.md

### Changes:
- Removed `discussion: true` from `add-comment` config

```diff
safe-outputs:
add-comment:
- discussion: true
```

---

## Workflows Without Changes (9 files)

The following workflows already use current syntax and required no changes:

1. ci-doctor.md
2. daily-plan.md
3. daily-repo-status.md
4. daily-team-status.md
5. issue-triage.md
6. plan.md
7. update-docs.md
8. weekly-research.md
9. shared/reporting.md

---

## How These Fixes Were Applied

All fixes were applied automatically using the `gh aw fix` command:

```bash
cd agentics
gh aw fix --write
```

The following codemods were automatically applied:
- `bash-anonymous-removal`: Replaces `bash:` with `bash: true`
- `discussion-flag-removal`: Removes deprecated `add-comment.discussion` field

## Verification

After applying fixes, all workflows compile successfully:

```bash
gh aw compile --validate --strict
✓ Compiled 18 workflow(s): 0 error(s), 11 warning(s)
```
40 changes: 40 additions & 0 deletions docs/reports/agentics-fixed-workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Agentics Collection - Fixed Workflows

This directory contains the fixed versions of workflows from the [githubnext/agentics](https://github.com/githubnext/agentics) repository after applying syntax updates for the latest gh-aw version.

## What Was Fixed

All workflows in this directory have been updated to use the latest gh-aw syntax:

1. **Deprecated `bash:` syntax** → `bash: true`
- 9 workflows affected

2. **Deprecated `add-comment.discussion` field** → removed
- 5 workflows affected

## How to Apply These Fixes

To apply the same fixes to the agentics repository:

```bash
cd /path/to/agentics
gh aw fix --write
gh aw compile
```

## Verification

All workflows have been verified to compile successfully:

```bash
gh aw compile --validate --strict
✓ Compiled 18 workflow(s): 0 error(s), 11 warning(s)
```

## Report

See the full analysis report: [agentics-syntax-check-2026-02-09.md](../agentics-syntax-check-2026-02-09.md)

## Date

Fixed: 2026-02-09
Loading