GitHub Agentic Workflows: Write CI Automation in Markdown, Run It as an AI Agent GitHub has released gh-aw (GitHub Agentic Workflows), an MIT-licensed CLI extension that lets developers write CI automation in Markdown and run it as an AI agent using GitHub Copilot, Claude, OpenAI Codex, or Google Gemini, compiling to standard GitHub Actions YAML. The tool, which has over 4,800 stars, defaults to read-only operations with sandboxing and safe-outputs for writes, but GitHub is retiring releases 0.68.4 through 0.71.3 due to a billing bug, urging users to upgrade. GitHub Agentic Workflows: Write CI Automation in Markdown, Run It as an AI Agent gh-aw GitHub Agentic Workflows is GitHub's own MIT-licensed CLI extension for writing repository automation in plain Markdown that compiles to real GitHub Actions YAML, running Copilot, Claude, Codex, or Gemini as the agent with read-only defaults, sandboxing, and safe-outputs for writes. - ⭐ 4852 - Go - MIT - Updated 2026-08-03 CI/CD Tools Compared: GitHub Actions vs GitLab CI vs Jenkins https://dibi8.com/resources/dev-utils/cicd-tools-github-actions-vs-gitlab-ci-vs-jenkins/ • Agent Governance Toolkit: Microsoft’s Answer to “Which Agent Did This?” https://dibi8.com/resources/llm-frameworks/agent-governance-toolkit-microsoft-2026/ What Is GitHub Agentic Workflows? what-is-github-agentic-workflows GitHub Agentic Workflows gh-aw is GitHub’s own answer to “what if a CI workflow’s steps were an AI agent’s judgment instead of a fixed shell script?” The README’s own framing: “Actions + Agent + Safety.” You write repository automation in plain Markdown — a description of what should happen, plus a YAML frontmatter block for trigger and engine config — and gh-aw runs GitHub Copilot, Claude, OpenAI Codex, or Google Gemini as the agent that carries it out inside GitHub Actions. 🔗 GitHub : https://github.com/github/gh-aw https://github.com/github/gh-aw MIT licensed, built and maintained by GitHub itself, at 4,800+ stars , with a commit from August 2, 2026 — the day before this article. Being a first-party GitHub project not a third-party wrapper around Actions gives it a credibility baseline most agentic-CI tools don’t start with. Worth flagging upfront : the README currently warns that releases 0.68.4 through 0.71.3 are being retired due to a bug that impacts billing — if you’re already running gh-aw, check your version and upgrade gh extension upgrade aw before relying on it further. Installation & Quick Start installation--quick-start curl -sL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh | bash No GitHub token is required for the install script itself. Then, inside a repository: gh aw init init configures the repository for agentic workflows — this is a one-time setup step per repo, separate from creating an individual workflow. Create a new workflow gh aw new