Raised: $0
0% of monthly goal Help us cross the finish line!
Goal: $12,000
Raised: $0 Goal: $12,000
0% of monthly goal Help us cross the finish line!
Sponsor DDEV

If you find this add-on useful, please star it on GitHub — stars show appreciation and help maintainers know their work matters.

add-on registry tests last commit release

DDEV GitHub Copilot CLI

Overview

This DDEV add-on installs GitHub Copilot CLI inside the DDEV web container and automatically shares your host GitHub CLI and Copilot configuration — including authentication and Copilot settings — with no additional setup required.

Once installed, running copilot inside ddev ssh or ddev exec uses a writable copy of your host configuration and a token derived from your host gh authentication.

Requirements

Installation

ddev add-on get e0ipso/ddev-assistant-copilot
ddev restart

After installation, commit the .ddev directory to version control.

What it does

Usage

# Open a shell with Copilot CLI available
ddev ssh
copilot

# Run Copilot CLI non-interactively
ddev exec copilot --version

# GitHub CLI is also available
ddev exec gh auth status

Why not manual setup?

You can install Copilot CLI and gh inside a DDEV container yourself. This add-on automates the parts that are easy to get wrong or forget:

  This add-on Manual setup
GitHub CLI Installed in the image layer via official apt repo; on $PATH for every shell Must install and re-install after image rebuilds
Copilot CLI npm install -g @github/copilot on every start into ~/.local/bin Must run npm install manually; easy to lose on restart
Config approach Seeds writable container ~/.config/gh/ and ~/.copilot/ from your host config on restart — zero setup if you already use gh and Copilot on the host Must copy or symlink config by hand; stale container files persist
Authentication COPILOT_GITHUB_TOKEN exported automatically from gh auth token Must export token manually in every shell type
Non-interactive shells BASH_ENV=/etc/bash.env ensures ddev exec gets PATH and token ddev exec often misses PATH and env vars
Mount safety Pre-start hook ensures host config directories exist before Docker bind-mounts them Bind-mount fails silently or blocks start if dirs are missing
Tests / CI BATS integration tests, GitHub Actions CI matrix (DDEV stable + HEAD), daily scheduled runs No automated verification

This add-on does one thing: install GitHub Copilot CLI into your DDEV container and share your existing host configuration. Nothing else.

Credits

Contributed and maintained by @e0ipso

If you find this add-on useful, please star it on GitHub — stars show appreciation and help maintainers know their work matters.