GitHub Agentic Workflows

Domain and authenticity debate

  • Several commenters initially found github.github.io phishy, arguing users are taught to focus on the main domain (e.g., github.com) rather than subdomains.
  • Others noted GitHub Pages has long used ORGNAME.github.io for static content and that this is standard practice.
  • Concern was raised that mixing “official” content into a domain originally framed as user-generated weakens anti-phishing mental models.
  • GitHub staff clarified the canonical link (github.github.com/gh-aw) and fixed a redirect, confirming it’s an official GitHub Next project.

What Agentic Workflows are

  • It’s a gh CLI extension: you write high-level workflows in Markdown, which are compiled into large GitHub Actions YAML files plus a “lock” file.
  • It uses Copilot CLI / Claude Code / Codex or custom engines; effectively a way to run coding agents in CI under guardrails.
  • Intended use cases: continuous documentation, issue/PR hygiene, code improvement, refactoring, “delegating chores” rather than core build/test pipelines.

Security, determinism, and guardrails

  • Architecture emphasizes: sandboxed agents with minimal secrets, egress firewall with allowlists (enabled by default), “safe outputs” limiting what can be written (e.g., only comments, not new PRs), and sandboxed MCP servers.
  • The Markdown→workflow+lock generation is claimed deterministic; the agent’s runtime behavior is not.
  • Some confusion over “lock file” terminology, given ongoing frustrations with SHA pinning and transitive dependencies in GitHub Actions.

Value proposition vs skepticism

  • Supporters see it as a needed layer for “asynchronous AI”: scheduled/triggered agents for documentation drift, code quality, or semantic tests.
  • Others question why an LLM should be in CI/CD at all, fearing hallucinated changes, noisy PRs, token burn, and more complexity on top of already fragile Actions.
  • Some argue this mostly serves vendor revenue (continuous token consumption) and AI marketing rather than developer needs.

Platform quality and priorities

  • Multiple comments complain about GitHub Actions reliability, billing glitches, poor log viewer, and general uptime issues; they resent investment in AI features instead of core fixes.
  • Some note weird behavior in the gh-aw repo itself (e.g., AI-generated go.mod changes using replace improperly) as evidence agents don’t truly “understand” code.
  • A few have experimented and like the structural separation of “plan” vs “apply,” but emphasize that decision validation (are changes correct, not just allowed) remains unsolved.