Skip to main content
  1. Blog/

GitHub Universe 2022 — Copilot for Business and the AI-Assisted Future

·914 words·5 mins
Osmond van Hemert
Author
Osmond van Hemert
Developer Tooling - This article is part of a series.
Part : This Article

GitHub Universe 2022 wrapped up yesterday, and the message was clear: AI-assisted development isn’t a future vision — it’s the product strategy. The conference delivered a slate of announcements that range from genuinely useful to thought-provoking, all centered around the idea that developer productivity is the key metric GitHub is optimizing for.

Copilot for Business: Enterprise AI Arrives
#

The biggest announcement is GitHub Copilot for Business, which makes the AI pair programmer available with enterprise-grade features: organization-wide policy management, centralized billing, and — critically — a proxy server option that routes through your organization’s network.

The individual version of Copilot has been available since June, and I’ve been using it daily. My experience has been mixed but trending positive. For boilerplate code, test scaffolding, and common patterns, it’s remarkably good. It saves me real time on tasks I’d otherwise spend five minutes writing by hand. For complex logic or domain-specific code, it’s less reliable but still useful as a starting point.

The Business tier adds features that enterprises actually need. The organization-wide policy controls let administrators enable or disable Copilot across teams, block suggestions that match public code (addressing the copyright concerns), and manage licenses centrally. The VPN-compatible proxy option addresses the data sovereignty concerns that kept many regulated industries from adopting the individual version.

I expect adoption to accelerate now. The objections I’ve heard from engineering managers have consistently been about policy control and licensing, not about the technology itself. This release removes those barriers.

Hey, GitHub! — Voice Coding
#

The more experimental announcement was “Hey, GitHub!”, a voice-controlled coding interface. Currently in technical preview, it lets developers write and edit code using natural language voice commands.

I’m less convinced about this one. Voice coding has been attempted before — tools like Talon and Serenade have served the accessibility community well — but mainstream adoption has been limited. The demo showed writing Python functions by describing them verbally, which is impressive, but the real challenge is editing existing code, navigating large codebases, and handling the back-and-forth of iterative development.

Where I see genuine value is in accessibility. Developers with repetitive strain injuries or other conditions that limit keyboard use deserve first-class tools, and GitHub investing in this space is positive regardless of whether it becomes a mainstream workflow.

Codespaces for Free Tier
#

GitHub is making Codespaces available to all users, including free-tier accounts, with 60 hours per month of 2-core usage and 15 GB of storage included. This is a significant democratization move.

I’ve been using Codespaces for several open-source projects, and the onboarding improvement is dramatic. A new contributor can go from “I want to help” to “I have a running development environment” in under two minutes. No local setup, no dependency conflicts, no “works on my machine” issues.

For open-source maintainers, this is arguably more impactful than Copilot. The biggest barrier to open-source contribution isn’t writing code — it’s setting up the development environment. DevContainers and Codespaces effectively eliminate that barrier. I’ve already added devcontainer.json files to several of my repositories, and the increase in drive-by contributions has been noticeable.

GitHub Actions Improvements
#

The Actions announcements were less flashy but practically important. Required workflows let organization admins enforce that specific workflows run on every repository — think security scanning, compliance checks, or standardized testing. Reusable workflows improvements now support calling workflows from private repositories, which makes it practical to maintain internal workflow libraries.

Required workflows, in particular, solve a governance problem I’ve fought with for years. When you have hundreds of repositories in an organization, ensuring that every one runs your security scanning pipeline is a constant battle. Some teams forget, some teams remove it, some teams never added it. Being able to enforce it at the organization level is exactly right.

The Broader AI Strategy
#

Stepping back from individual announcements, what’s striking about Universe this year is how comprehensively GitHub is integrating AI. Copilot writes code. Copilot Labs explains and translates code. The upcoming code review features use AI to suggest improvements. The security scanning uses AI to detect vulnerabilities.

GitHub is building toward a future where AI is involved in every stage of the development lifecycle — writing, reviewing, testing, deploying, and monitoring. Whether that’s exciting or concerning depends on your perspective.

I lean toward cautiously excited. The tools I’ve used — Copilot primarily — have made me more productive without making me less thoughtful about code quality. The key is that these are assistive tools, not autonomous ones. I still make every architectural decision, I still review every suggestion, and I still write the critical logic myself. AI handles the tedious parts so I can focus on the interesting parts.

My Take
#

GitHub Universe 2022 confirms that AI-assisted development is no longer experimental — it’s the product. Copilot for Business will drive enterprise adoption, free Codespaces will boost open-source contribution, and the Actions improvements will make platform engineering teams’ lives easier.

The question I keep coming back to is: what does this mean for junior developers? If AI handles the boilerplate, how do newcomers build the intuition that comes from writing it themselves? I don’t have a good answer yet, but it’s a question our industry needs to grapple with as these tools become ubiquitous.

For now, if you haven’t tried Copilot, give it a shot. If you maintain open-source projects, add a devcontainer.json. And if you’re an engineering manager, Copilot for Business just removed your last excuse for not evaluating it.

Developer Tooling - This article is part of a series.
Part : This Article