Register your SSH key
Get SSH access to docs.copilotartifacts.com in two steps:
grab your key below, then paste it and pick a username.
Step 1 — Get your SSH key
Don't have it handy? Choose your computer, copy the command, and run it. Your key is copied to your clipboard automatically — then paste it in Step 2.
Open Terminal (press ⌘+Space, type Terminal, hit Enter). Paste this and press Enter:
mkdir -p ~/.ssh && if [ ! -f ~/.ssh/id_ed25519.pub ]; then ssh-keygen -t ed25519 -N "" -f ~/.ssh/id_ed25519; fi && pbcopy < ~/.ssh/id_ed25519.pub && echo "Copied! Now paste it into Step 2 below."
Open PowerShell (press ⊞ Win, type PowerShell, hit Enter). Paste this and press Enter:
if (-not (Test-Path "$HOME\.ssh")) { New-Item -ItemType Directory -Path "$HOME\.ssh" | Out-Null } ; if (-not (Test-Path "$HOME\.ssh\id_ed25519.pub")) { ssh-keygen -t ed25519 -N '""' -f "$HOME\.ssh\id_ed25519" } ; Get-Content "$HOME\.ssh\id_ed25519.pub" | Set-Clipboard ; Write-Host "Copied! Now paste it into Step 2 below."
Optional — Deploy from Claude Code
Already registered? Install our Claude Code skill and just say "deploy this folder to copilot." Your Claude will create the subdomain and upload your files.
⬇ Download the skill- Click Download the skill above (saves
SKILL.md). - Put
SKILL.mdinto the folder~/.claude/skills/copilot-deploy/— or just ask Claude Code to "install the copilot-deploy skill I just downloaded." - Restart Claude Code.
Prefer the command line?
mkdir -p ~/.claude/skills/copilot-deploy && \
curl -fsSL https://docs.copilotartifacts.com/skill/download \
-o ~/.claude/skills/copilot-deploy/SKILL.md
No terminal? Publish from your browser
Have an HTML file or a zipped site? Publish it here → No SSH or command line needed.