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."

Step 2 — Register

This is what the command above copied for you. It starts with ssh-ed25519 (or ssh-rsa). Lowercase letters, digits, dashes. 3–31 chars, starts with a letter.

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
  1. Click Download the skill above (saves SKILL.md).
  2. Put SKILL.md into the folder ~/.claude/skills/copilot-deploy/ — or just ask Claude Code to "install the copilot-deploy skill I just downloaded."
  3. 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