Get Started
From zero to your first agentic workflow in minutes
Prerequisites
✅ Required
- A GitHub Copilot subscription (Individual, Business, or Enterprise)
- GitHub CLI v2.45.0 or later
- The
gh-awCLI extension - Admin access to the target repository
🔑 Tokens & Secrets
COPILOT_GITHUB_TOKEN— required for every workflowGH_AW_AGENT_TOKEN— optional, needed forassign-to-agent- Custom PAT or GitHub App — optional, for cross-repo or elevated access
Install & Initialize
Three commands to go from zero to a fully initialized repository. The CLI handles scaffolding, engine selection, and configuration.
Install the gh-aw CLI extension
Adds the gh aw command to your GitHub CLI. Requires GitHub CLI v2.45.0 or later.
Initialize your repository
Run gh aw init —engine copilot to scaffold your repo. This creates copilot-setup-steps.yml, walks you through engine selection, and configures the necessary directory structure.
Create the required secret
Store your Copilot token as a repository secret so workflows can authenticate with the Copilot API.
# 1. Install the gh-aw CLI extension gh extension install github/gh-aw # 2. Initialize your repository gh aw init --engine copilot # 3. Create the required secret gh secret set COPILOT_GITHUB_TOKEN -R owner/repo
💡 What does gh aw init do? It creates the copilot-setup-steps.yml file that defines your agent’s runtime environment, walks you through engine selection (Copilot, Claude, or Codex), and sets up the .github/workflows/ directory for your first workflow.
Create the COPILOT_GITHUB_TOKEN
Every agentic workflow needs a COPILOT_GITHUB_TOKEN to authenticate API calls. Here’s how to create one:
Generate a fine-grained token
Go to github.com/settings/personal-access-tokens/new and select Fine-grained personal access token.
Grant Copilot permission
Under Account permissions, set Copilot Requests to Read-only. No other permissions are required for the base token.
Store as a repository secret
Run gh secret set COPILOT_GITHUB_TOKEN -R owner/repo and paste the token when prompted — or add it via the repository Settings → Secrets → Actions page.
Secrets Reference
| Secret | When Needed | Permission |
|---|---|---|
COPILOT_GITHUB_TOKEN | Always — every workflow | Copilot Requests: Read-only |
GH_AW_AGENT_TOKEN | Using assign-to-agent | Issues: Read & Write |
ANTHROPIC_API_KEY | Using engine: claude | — |
OPENAI_API_KEY | Using engine: codex | — |
GEMINI_API_KEY | Using engine: gemini | — |
Your First Workflow
Use the CLI to add a pre-built workflow template, compile it into a hardened GitHub Actions file, and push it to your repo.
Add a workflow from the gallery
The add-wizard command pulls a workflow template and saves it as a Markdown source file in .github/workflows/.
Compile to a hardened Actions workflow
The compile command transforms your Markdown source into a .lock.yml file with pinned actions, sandboxed permissions, and safe outputs.
Push to your repository
Commit both the .md source and the .lock.yml compiled file. GitHub Actions picks up the lock file automatically on the next trigger.
# 1. Create a workflow from a template gh aw add-wizard githubnext/agentics/daily-repo-status # 2. Compile to a hardened Actions workflow gh aw compile .github/workflows/daily-repo-status.md # 3. Push both files to your repo git add .github/workflows/ git commit -m "Add daily status report workflow" git push
🎉 That’s it! Your workflow will now trigger automatically based on its configured events (schedule, issue creation, etc.). Check the Actions tab in your repository to see it run.
Workflow Gallery
Browse real-world workflow examples from Peli’s Agent Factory — over 100 workflows battle-tested in the github/gh-aw repository. Add any workflow to your repo with a single command.
Issue Triage Agent
Analyzes new issues, applies labels, and posts helpful comments explaining the classification.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/issue-triage-agent.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to triage new issues: label them by type and priority (bug, feature, enhancement, documentation, question, help-wanted, good-first-issue), identify duplicates, ask clarifying questions when the description is unclear, and post a helpful comment explaining the classification. Code Simplifier
Identifies complex code and proposes simpler, more maintainable alternatives via PRs.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/code-simplifier.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to continuously simplify code: scan the codebase for complex functions with high cyclomatic complexity, deep nesting, and long methods. Propose simpler, more maintainable alternatives and open a draft PR with the refactored code. Duplicate Code Detector
Finds duplicated code patterns across the codebase and suggests consolidation.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/duplicate-code-detector.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to detect duplicated code: find duplicated code patterns across the repository, group similar blocks, suggest how to consolidate them into shared utilities, and open a PR with the proposed changes. Migration Assistant
Identifies deprecated API usage and assists with incremental migration to newer patterns.
gh aw new migration-assistant --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to assist with code migrations: scan the codebase for deprecated API usage, legacy patterns, and outdated library calls, then open incremental PRs that migrate each instance to the recommended modern alternative with tests. PR Review Assistant
Reviews pull requests for code quality, security issues, and style consistency, posting inline review comments.
gh aw new pr-review-assistant --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to review pull requests: when a PR is opened, analyze the diff for code quality issues, potential bugs, security vulnerabilities, and style inconsistencies, then post inline review comments with specific suggestions and approve or request changes. Daily Doc Updater
Keeps documentation aligned with code changes by detecting and fixing mismatches.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-doc-updater.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to update documentation daily: compare code changes from the last 24 hours against existing documentation, identify mismatches between docstrings, READMEs, and actual implementations, then open a PR to fix them. Glossary Maintainer
Maintains and updates the project glossary based on codebase terminology.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/glossary-maintainer.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to maintain the project glossary: scan the codebase for domain-specific terms, acronyms, and concepts, then update the project glossary with any new or changed terminology and clear definitions. Documentation Unbloat
Reviews and simplifies documentation by reducing verbosity while preserving accuracy — 85% merge rate.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/unbloat-docs.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to simplify documentation: review all docs for verbosity, redundant phrasing, and unnecessary complexity, then open PRs that preserve accuracy while making content more concise and scannable. Documentation Noob Tester
Tests documentation from a new user's perspective, identifying confusing steps and unclear instructions.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/docs-noob-tester.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to test documentation as a new user: follow every getting-started guide and tutorial step by step, identify confusing instructions, missing prerequisites, and unclear terminology, then create issues for each problem found. Slide Deck Maintainer
Maintains presentation slide decks by updating them when code or features change.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/slide-deck-maintainer.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to maintain slide decks: review presentation files against the latest codebase state, update outdated screenshots, code examples, and feature descriptions, then open a PR with the refreshed slides. Blog Auditor
Verifies blog posts are accessible, accurate, and contain expected content as the codebase evolves.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/blog-auditor.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to audit blog posts: scan all blog posts for outdated code examples, broken links, deprecated feature references, and inaccurate statements, then create an issue listing all findings with suggested corrections. Onboarding Guide Generator
Generates and maintains a new contributor onboarding guide based on the actual codebase structure.
gh aw new onboarding-guide --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to generate an onboarding guide: analyze the repository structure, key modules, development setup, testing approach, and contribution workflow, then create or update a CONTRIBUTING.md and onboarding guide that helps new developers get productive quickly. Daily Test Improver
Assesses test coverage gaps and writes high-value tests to improve coverage.
gh aw add-wizard githubnext/agentics/daily-test-improver Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to improve test coverage daily: analyze test coverage reports, identify the most impactful uncovered code paths, write high-value unit tests for those paths, and open a PR with the new tests. Daily Testify Expert
Advanced test generation with deep analysis of uncovered code paths.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-testify-uber-super-expert.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to perform advanced test generation: do deep analysis of uncovered code paths, edge cases, and error handling, then generate comprehensive tests including boundary conditions and failure scenarios. Compiler Quality Checker
Validates compilation quality and catches compiler warnings before they become issues.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-compiler-quality.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to check compilation quality: run a full compilation analysis, identify all warnings, deprecation notices, and potential issues, then create an issue summarizing findings with severity assessments and fix suggestions. CLI Consistency Checker
Inspects the CLI for inconsistencies, typos, and documentation gaps — 78% merge rate across 102 PRs.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/cli-consistency-checker.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to check CLI consistency: inspect all CLI commands, flags, help text, and documentation for inconsistencies, typos, undocumented options, and deprecated commands, then open a PR fixing each issue found. CI Coach
Analyzes CI pipelines and suggests optimizations for speed, reliability, and cost — 100% merge rate.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/ci-coach.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to optimize CI pipelines: analyze all CI/CD workflow configurations for inefficiencies including redundant steps, missing caching, unnecessary dependencies, slow test suites, and suboptimal parallelization, then open a PR with targeted improvements. Workflow Health Manager
Meta-orchestrator that monitors the health of all agentic workflows and flags degradations.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/workflow-health-manager.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to monitor workflow health: analyze run histories of all agentic workflows, detect patterns of failure, increasing costs, or declining merge rates, and create issues for workflows that need attention. Multi-Device Docs Tester
Tests documentation site across mobile, tablet, and desktop using Playwright browser automation.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-multi-device-docs-tester.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to test docs across devices: use Playwright to load the documentation site on mobile (375px), tablet (768px), and desktop (1440px) viewports, check for layout issues, broken responsive designs, and accessibility problems, then open a PR fixing any issues found. Accessibility Checker
Audits web UI components for WCAG 2.1 AA compliance and creates issues for violations.
gh aw new accessibility-checker --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to check accessibility compliance: audit all web UI components and pages for WCAG 2.1 AA violations including missing alt text, insufficient color contrast, keyboard navigation issues, and missing ARIA labels, then create issues for each violation with remediation guidance. CI Doctor
Investigates failed CI workflows, analyzes logs, and opens diagnostic issues with fix suggestions.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/ci-doctor.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to investigate CI failures: when a CI workflow fails, analyze the logs, correlate with the triggering diff, search for similar past failures, and open an issue with root cause analysis and a suggested fix. Schema Consistency Checker
Detects when schemas, code, and documentation drift apart.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/schema-consistency-checker.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to check schema consistency: compare JSON schemas, type definitions, structs, and documentation to detect any drift between them, then create a report of inconsistencies that need alignment. Breaking Change Checker
Monitors for backward-incompatible changes and creates alert issues.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/breaking-change-checker.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to detect breaking changes: analyze recent commits for backward-incompatible changes to public APIs, configuration formats, or CLI interfaces, then create an alert issue for any breaking changes found. Performance Regression Detector
Monitors CI benchmark results for performance regressions and creates alerts when metrics degrade.
gh aw new perf-regression-detector --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to detect performance regressions: after CI completes, compare benchmark results against baseline metrics, identify any statistically significant performance degradations in execution time, memory usage, or throughput, and create an alert issue with before/after comparisons. API Contract Checker
Validates API endpoints against their OpenAPI/Swagger specs and detects contract drift.
gh aw new api-contract-checker --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to validate API contracts: compare actual API endpoint implementations against OpenAPI or Swagger specifications, detect any drift in request/response schemas, missing endpoints, or undocumented parameters, and create an issue detailing all contract violations. Security Compliance
Runs vulnerability remediation campaigns with deadline tracking and SLA enforcement.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/security-compliance.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to enforce security compliance: scan for known vulnerabilities, track remediation deadlines against SLAs, create issues for overdue items, and generate a compliance dashboard as a GitHub issue. Firewall Tester
Tests network security rules and validates that agents cannot access unauthorized resources.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/firewall.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to test firewall rules: validate that the agent network firewall correctly blocks unauthorized outbound traffic, test the domain allowlist, and create a daily report of any anomalies or policy violations. Daily Secrets Analysis
Scans commits and discussions for accidentally exposed credentials and API keys.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-secrets-analysis.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to scan for exposed secrets: analyze recent commits, pull request diffs, and discussion content for accidentally committed API keys, tokens, passwords, and other credentials, then create urgent issues for any findings. Malicious Code Scanner
Reviews recent code changes for suspicious patterns and potential supply chain attacks.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-malicious-code-scan.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to scan for malicious code: review all code changes from the last 24 hours for suspicious patterns including obfuscated code, unexpected network calls, data exfiltration attempts, and backdoor indicators, then create an alert issue for any findings. Static Analysis Report
Runs daily security scans using zizmor, poutine, and actionlint for comprehensive static analysis.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/static-analysis-report.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to generate a static analysis report: run comprehensive security scans on all workflow files and code using industry-standard tools, analyze the findings for severity and impact, and create a detailed report as a GitHub discussion. Dependency Auditor
Audits project dependencies for known vulnerabilities, license conflicts, and outdated packages weekly.
gh aw new dependency-auditor --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to audit dependencies weekly: scan all project dependencies for known CVEs, license compatibility issues, and severely outdated packages, then create an issue with a prioritized remediation plan and open PRs for safe automatic updates. Issue Arborist
Links related issues as sub-issues to keep the issue tracker organized.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/issue-arborist.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to organize issues: analyze all open issues, identify related ones that should be linked as sub-issues, create parent issues to group related work, and link sub-issues under them. Issue Monster
Assigns issues to the Copilot coding agent one at a time for automated resolution.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/issue-monster.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to dispatch issues to the Copilot coding agent: find the next unassigned issue suitable for automated resolution and assign it to the Copilot coding agent, one at a time to prevent parallel conflicts. Mergefest
Automatically merges main branch into PR branches to keep them up to date.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/mergefest.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to keep PRs up to date: check all open pull requests and merge the main branch into any that are behind, skipping PRs with merge conflicts and reporting them for manual resolution. Sub Issue Closer
Automatically closes completed sub-issues when parent issues are resolved.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/sub-issue-closer.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to close completed sub-issues: scan for parent issues where all sub-issues are completed, automatically close the parent issue, and add a summary comment listing the resolved sub-issues. Contributor Welcome Bot
Welcomes first-time contributors with personalized guidance, relevant docs links, and mentorship offers.
gh aw new contributor-welcome-bot --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to welcome new contributors: when a first-time contributor opens a PR or issue, post a warm welcome comment with links to the contributing guide, code of conduct, relevant documentation for their change area, and offer to connect them with a mentor. Stale Issue Gardener
Identifies stale issues, pings authors for updates, and closes abandoned ones with a summary comment.
gh aw new stale-issue-gardener --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to garden stale issues: identify issues with no activity for 30+ days, post a polite comment asking for updates, and if there is no response after 14 more days, close the issue with a summary comment explaining it can be reopened. Metrics Collector
Tracks daily performance metrics across the entire agent ecosystem.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/metrics-collector.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to collect daily metrics: gather performance metrics from all agentic workflow runs in the last 24 hours and create a daily report covering success rates, token usage, costs, and execution times. Portfolio Analyst
Analyzes cost and performance across workflows to identify optimization opportunities.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/portfolio-analyst.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to analyze workflow portfolio: review cost and performance trends across all workflows for the past week, identify workflows with high cost-to-value ratios, and suggest optimization opportunities. Audit Workflows
Meta-agent that audits all other agents' runs for errors, costs, and quality patterns.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/audit-workflows.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to audit agentic workflows: audit the last 10 runs of every agentic workflow, check for errors, excessive costs, quality degradation, and unusual patterns, then create a summary report with actionable findings. Daily Issues Report
Creates a daily upbeat status report as a GitHub issue covering recent activity.
gh aw add-wizard githubnext/agentics/daily-repo-status Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to create a daily activity report: summarize recent repository activity including new issues, PR activity, CI health, key metrics, and actionable next steps for maintainers. Deliver it as a GitHub issue. Changeset Generator
Automates version bumps and changelog generation by analyzing commits since the last release — 78% merge rate.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/changeset.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to generate changelogs: analyze all commits since the last release, categorize them (features, fixes, breaking changes), determine the appropriate semantic version bump, update the changelog, and open a release PR. Daily Workflow Updater
Keeps GitHub Actions and dependencies current by checking for updates and applying patches.
gh aw add-wizard https://github.com/github/gh-aw/blob/v0.45.5/.github/workflows/daily-workflow-updater.md Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to update workflow dependencies daily: check all GitHub Actions workflow files for outdated action versions, deprecated features, and available security patches, then open a PR updating them to the latest stable versions. Incident Postmortem Writer
Generates structured incident postmortems by analyzing CI failures, deployments, and related issues.
gh aw new incident-postmortem --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to write incident postmortems: when a production incident label is applied to an issue, gather all related CI failures, deployment logs, commits, and PRs, then generate a structured postmortem issue covering timeline, root cause, impact, resolution, and action items. Tech Debt Tracker
Scans for TODO/FIXME/HACK comments, quantifies tech debt, and creates a prioritized remediation plan.
gh aw new tech-debt-tracker --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to track technical debt: scan the entire codebase for TODO, FIXME, HACK, and XXX comments, categorize them by severity and area, estimate remediation effort, and create a weekly tech debt report as a GitHub issue with a prioritized action plan. Release Notes Generator
Generates human-readable release notes from merged PRs and closed issues for each release.
gh aw new release-notes-generator --engine copilot Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The purpose of the workflow is to generate release notes: when a new release is tagged, analyze all merged PRs and closed issues since the previous release, categorize changes into features, bug fixes, breaking changes, and improvements, then create polished release notes as a GitHub release.