Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@
"version": "v4.1.0",
"sha": "4907a6ddec9925e35a0a9e82d7399ccc52663121"
},
"docker/metadata-action@v6": {
"repo": "docker/metadata-action",
"version": "v6",
"sha": "80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9"
},
"docker/metadata-action@v6.0.0": {
"repo": "docker/metadata-action",
"version": "v6.0.0",
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ But here's the ultimate challenge: how do you coordinate *multiple* agents worki

These agents coordinate multi-agent plans and projects:

- **[Plan Command](https://github.com/github/gh-aw/tree/2c1f68a721ae7b3b67d0c2d93decf1fa5bcf7ee3/.github/workflows/plan.md?plain=1)** - Breaks down issues into actionable sub-tasks via `/plan` command - **514 merged PRs out of 761 proposed (67% merge rate)**
- **[Discussion Task Miner](https://github.com/github/gh-aw/tree/2c1f68a721ae7b3b67d0c2d93decf1fa5bcf7ee3/.github/workflows/discussion-task-miner.md?plain=1)** - Extracts actionable tasks from discussion threads - **60 merged PRs out of 105 proposed (57% merge rate)**
- **[Plan Command](https://github.com/githubnext/agentics/blob/main/workflows/plan.md?plain=1)** - Breaks down issues into actionable sub-tasks via `/plan` command - **514 merged PRs out of 761 proposed (67% merge rate)**
- **[Discussion Task Miner](https://github.com/githubnext/agentics/blob/main/workflows/discussion-task-miner.md?plain=1)** - Extracts actionable tasks from discussion threads - **60 merged PRs out of 105 proposed (57% merge rate)**

Plan Command has contributed **514 merged PRs out of 761 proposed (67% merge rate)**, providing on-demand task decomposition that breaks complex issues into actionable sub-tasks. This is the **highest-volume workflow by attribution** in the entire factory. Developers can comment `/plan` on any issue to get an AI-generated breakdown into actionable sub-issues that agents can work on. A verified example causal chain: [Discussion #7631](https://github.com/github/gh-aw/discussions/7631) → [Issue #8058](https://github.com/github/gh-aw/issues/8058) → [PR #8110](https://github.com/github/gh-aw/pull/8110).

Expand All @@ -46,13 +46,13 @@ You can add these workflows to your own repository and remix them. Get going wit
**Plan Command:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/plan.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/plan.md
```

**Discussion Task Miner:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/discussion-task-miner.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/discussion-task-miner.md
```

Then edit and remix the workflow specifications to meet your needs, regenerate the lock file using `gh aw compile`, and push to your repository. See our [Quick Start](https://github.github.com/gh-aw/setup/quick-start/) for further installation and setup instructions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ In our [previous posts](/gh-aw/blog/2026-01-13-meet-the-workflows-continuous-sim

## Continuous Improvement Workflows

- **[Go Module Usage Expert (aka Go Fan)](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/go-fan.md?plain=1)** - Daily Go module usage reviewer
- **[Typist](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/typist.md?plain=1)** - Analyzes type usage patterns for improved safety
- **[Go Module Usage Expert (aka Go Fan)](https://github.com/github/gh-aw/blob/main/.github/workflows/go-fan.md?plain=1)** - Daily Go module usage reviewer
- **[Typist](https://github.com/github/gh-aw/blob/main/.github/workflows/typist.md?plain=1)** - Analyzes type usage patterns for improved safety
- **[Functional Pragmatist](https://github.com/github/gh-aw/blob/main/.github/workflows/functional-programming-enhancer.md?plain=1)** - Applies functional techniques pragmatically
- **[Repository Quality Improver](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/repository-quality-improver.md?plain=1)** - Holistic code quality analysis
- **[Repository Quality Improver](https://github.com/githubnext/agentics/blob/main/workflows/repository-quality-improver.md?plain=1)** - Holistic code quality analysis

### Go Module Usage Expert: The Dependency Enthusiast 🐹

Expand Down Expand Up @@ -119,13 +119,13 @@ You can add these workflows to your own repository and remix them. Get going wit
**Go Module Usage Expert:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/go-fan.md
gh aw add-wizard https://github.com/github/gh-aw/blob/main/.github/workflows/go-fan.md
```

**Typist:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/typist.md
gh aw add-wizard https://github.com/github/gh-aw/blob/main/.github/workflows/typist.md
```

**Functional Pragmatist:**
Expand All @@ -137,7 +137,7 @@ gh aw add-wizard https://github.com/github/gh-aw/blob/main/.github/workflows/fun
**Repository Quality Improver:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/repository-quality-improver.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/repository-quality-improver.md
```

Then edit and remix the workflow specifications to meet your needs, regenerate the lock file using `gh aw compile`, and push to your repository. See our [Quick Start](https://github.github.com/gh-aw/setup/quick-start/) for further installation and setup instructions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Now let's meet the agents that work quietly in the background to keep code simpl

The next two agents represent different aspects of code simplicity: detecting *overcomplicated code* and *duplicated logic*:

- **[Automatic Code Simplifier](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/code-simplifier.md?plain=1)** - Analyzes recently modified code and creates PRs with simplifications
- **[Duplicate Code Detector](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/duplicate-code-detector.md?plain=1)** - Uses Serena's semantic analysis to identify duplicate code patterns
- **[Automatic Code Simplifier](https://github.com/githubnext/agentics/blob/main/workflows/code-simplifier.md?plain=1)** - Analyzes recently modified code and creates PRs with simplifications
- **[Duplicate Code Detector](https://github.com/githubnext/agentics/blob/main/workflows/duplicate-code-detector.md?plain=1)** - Uses Serena's semantic analysis to identify duplicate code patterns

The **Automatic Code Simplifier** runs daily, analyzing recently modified code for opportunities to simplify without changing functionality. It looks at what changed in the last few commits and asks: "Could this be clearer? Could it be shorter? Could it be more idiomatic?"

Expand Down Expand Up @@ -65,13 +65,13 @@ You can add these workflows to your own repository and remix them. Get going wit
**Automatic Code Simplifier:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/code-simplifier.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/code-simplifier.md
```

**Duplicate Code Detector:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/duplicate-code-detector.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/duplicate-code-detector.md
```

Then edit and remix the workflow specifications to meet your needs, regenerate the lock file using `gh aw compile`, and push to your repository. See our [Quick Start](https://github.github.com/gh-aw/setup/quick-start/) for further installation and setup instructions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ But here's the thing: work doesn't have to be all business. While we've built se

These agents facilitate team communication and remind us that work can be fun:

- **[Daily Team Status](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-team-status.md?plain=1)** - Shares team mood and status updates - **22 issues**, **17 discussions** (plus 2 causal chain PRs!)
- **[Daily News](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-news.md?plain=1)** - Curates relevant news for the team - **45 news digest discussions**
- **[Poem Bot](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/poem-bot.md?plain=1)** - Responds to `/poem-bot` commands with creative verses (yes, really)
- **[Weekly Issue Summary](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/weekly-issue-summary.md?plain=1)** - Creates digestible summaries complete with charts and trends - **5 weekly analysis discussions**
- **[Daily Repo Chronicle](https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-repo-chronicle.md?plain=1)** - Narrates the day's activity like a storyteller - **6 chronicle discussions**
- **[Daily Team Status](https://github.com/githubnext/agentics/blob/main/workflows/daily-team-status.md?plain=1)** - Shares team mood and status updates - **22 issues**, **17 discussions** (plus 2 causal chain PRs!)
- **[Daily News](https://github.com/github/gh-aw/blob/main/.github/workflows/daily-news.md?plain=1)** - Curates relevant news for the team - **45 news digest discussions**
- **[Poem Bot](https://github.com/github/gh-aw/blob/main/.github/workflows/poem-bot.md?plain=1)** - Responds to `/poem-bot` commands with creative verses (yes, really)
- **[Weekly Issue Summary](https://github.com/github/gh-aw/blob/main/.github/workflows/weekly-issue-summary.md?plain=1)** - Creates digestible summaries complete with charts and trends - **5 weekly analysis discussions**
- **[Daily Repo Chronicle](https://github.com/githubnext/agentics/blob/main/workflows/daily-repo-chronicle.md?plain=1)** - Narrates the day's activity like a storyteller - **6 chronicle discussions**

The Poem Bot started as a whimsy in our Copilot for PRs project in 2022. Someone said "wouldn't it be funny if we had an agent that writes poems about our code?" and then we built it. Poem Bot responds to `/poem-bot` commands with creative verses about code, adding a touch of whimsy to the development workflow. We learned that AI agents don't have to be all business - they can build culture and create moments of joy.

Expand All @@ -57,31 +57,31 @@ You can add these workflows to your own repository and remix them. Get going wit
**Daily Team Status:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-team-status.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/daily-team-status.md
```

**Daily News:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-news.md
gh aw add-wizard https://github.com/github/gh-aw/blob/main/.github/workflows/daily-news.md
```

**Poem Bot:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/poem-bot.md
gh aw add-wizard https://github.com/github/gh-aw/blob/main/.github/workflows/poem-bot.md
```

**Weekly Issue Summary:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/weekly-issue-summary.md
gh aw add-wizard https://github.com/github/gh-aw/blob/main/.github/workflows/weekly-issue-summary.md
```

**Daily Repo Chronicle:**

```bash
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-repo-chronicle.md
gh aw add-wizard https://github.com/githubnext/agentics/blob/main/workflows/daily-repo-chronicle.md
```

Then edit and remix the workflow specifications to meet your needs, regenerate the lock file using `gh aw compile`, and push to your repository. See our [Quick Start](https://github.github.com/gh-aw/setup/quick-start/) for further installation and setup instructions.
Expand Down
Loading