[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-digitalocean-provision-droplet":3,"mdc--y9wbin-key":35,"related-org-digitalocean-provision-droplet":2335,"related-repo-digitalocean-provision-droplet":2344},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":33,"mdContent":34},"provision-droplet","provision DigitalOcean droplets for remote development","Use when the user wants to spin up \u002F create \u002F launch \u002F provision a DigitalOcean droplet (or \"a remote dev box on DO\") and connect to it from Codex as a remote SSH workspace.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"digitalocean","DigitalOcean","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdigitalocean.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Deployment","deployment","tag",{"name":17,"slug":18,"type":15},"Cloud","cloud",{"name":20,"slug":21,"type":15},"SSH","ssh",{"name":23,"slug":24,"type":15},"Infrastructure","infrastructure",6,"https:\u002F\u002Fgithub.com\u002Fdigitalocean\u002FCodexPlugin","2026-07-12T08:15:20.175219",null,2,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":28},[],"https:\u002F\u002Fgithub.com\u002Fdigitalocean\u002FCodexPlugin\u002Ftree\u002FHEAD\u002Fskills\u002Fprovision-droplet","---\nname: provision-droplet\ndescription: >\n  Use when the user wants to spin up \u002F create \u002F launch \u002F provision a\n  DigitalOcean droplet (or \"a remote dev box on DO\") and connect to it from\n  Codex as a remote SSH workspace.\n---\n\n# Provision a DigitalOcean droplet as a Codex remote workspace\n\nFollow these steps in order. Do not skip or reorder them.\n**Only the installed Codex DigitalOcean app tools and the bundled Python scripts\nmay be used. doctl, ad hoc integration configs, and any other DigitalOcean CLI\ntools are prohibited.**\n\n## Before you start\n\n- **Prerequisites:** a funded DigitalOcean account, the installed and\n  authenticated Codex **DigitalOcean** app, a local `ssh`\u002F`ssh-keygen`\n  (OpenSSH), Python 3, and the Codex desktop app.\n- **Cost:** the droplet bills **hourly from creation until you delete it**.\n  Sizes in step 5 show approximate monthly rates. Remind the user to delete it\n  when done (see *Cleanup* below).\n- **Time:** end-to-end takes ~10–15 minutes — roughly 7 minutes waiting for the\n  droplet to boot (steps 7-8) plus up to 7 minutes for cloud-init (step 9). This\n  is normal; do not abort.\n- **Locate the bundled scripts first (do this before Step 2).** The helper\n  scripts live in the `scripts\u002F` folder **next to this `SKILL.md`** (i.e.\n  `provision-droplet\u002Fscripts\u002F`). Your current working directory is **not** the\n  skill directory, so bare relative paths like `scripts\u002Fkeygen.py` will fail.\n  Resolve the absolute directory that contains this `SKILL.md` and call it\n  `\u003Cskill_dir>`. If you don't already know it, find it — the installed plugin may\n  nest it under a version folder (e.g. `...\u002F\u003Cversion>\u002Fprovision-droplet\u002F`), so\n  locate the directory that actually contains `scripts\u002Fkeygen.py`. Use\n  `\u003Cskill_dir>\u002Fscripts\u002F\u003Cname>.py` (an absolute path) in **every** command below.\n\n## Step 1 — Verify DigitalOcean app access\n\nThis plugin depends on the single Codex **DigitalOcean** app. Use it for all\nDigitalOcean operations; do not register or log in to separate plugin-owned app\nintegrations.\n\nThe **DigitalOcean** app provides both:\n- SSH key tools: `key-create`, `key-list`, `key-delete`.\n- Droplet tools: `droplet-create`, `droplet-get`, `droplet-delete`.\n\nConfirm that these tools are available before continuing. If the app's tools are\nmissing or unauthenticated, stop and tell the user to install or authenticate\nthe DigitalOcean app in Codex. Do not fall back to doctl, API tokens, or a local\nintegration config.\n\n## Step 2 — Generate SSH key pair\n\n```bash\npython3 \u003Cskill_dir>\u002Fscripts\u002Fkeygen.py\n```\n\nParse the JSON output and keep these values for the steps below:\n`prefix`, `name`, `key_name`, `key_path`, `pub_key`.\n\nHow these relate (all derived from one random `prefix` like `bright-hawk-a3f2`):\n- `name` = `codex-\u003Cprefix>` — the **droplet name** and the **local SSH alias**\n  (they are identical).\n- `key_name` = `codex-key-\u003Cprefix>` — the label for the key on DigitalOcean's\n  side only.\n- `key_path` — the local private key file.\n\n## Step 3 — Upload SSH public key\n\nCall the **DigitalOcean** app tool **`key-create`**:\n\n| Parameter | Value |\n|-----------|-------|\n| `Name` | `key_name` from step 2 |\n| `PublicKey` | `pub_key` from step 2 |\n\nExtract `ssh_key.id` from the response — this is `\u003Ckey_id>`.\n\nIf the call fails because a key with that name or fingerprint **already exists**\n(e.g. a previous run), do not create a duplicate: call the **DigitalOcean** app\ntool **`key-list`**, find the entry whose `name` matches `key_name` (or whose\nfingerprint matches the uploaded key), and use its `id` as `\u003Ckey_id>`.\n\n## Step 4 — Choose a region\n\nAsk the user, in chat:\n\n> Use the defaults — region **`nyc3`** (New York, US) and size\n> **`s-2vcpu-4gb`** (2 vCPU \u002F 4 GB, ~$24\u002Fmo) — or customize them?\n\nIf they choose the defaults, use `nyc3` as `\u003Cregion>` and `s-2vcpu-4gb` as\n`\u003Csize>`, then skip step 5 and continue to step 6.\n\nIf they want to customize the defaults, present this region list first and ask\nthem to reply with a slug:\n\n| Slug | Location |\n|------|----------|\n| `nyc3` *(default)* | New York, US |\n| `sfo3` | San Francisco, US |\n| `tor1` | Toronto, CA |\n| `lon1` | London, UK |\n| `fra1` | Frankfurt, DE |\n| `ams3` | Amsterdam, NL |\n| `sgp1` | Singapore, SG |\n| `blr1` | Bangalore, IN |\n| `syd1` | Sydney, AU |\n\nValidate their reply against this table. If it is not one of these slugs, ask\nagain — do not pass an unlisted value through. The chosen slug is `\u003Cregion>`.\n\n## Step 5 — Choose a droplet size\n\nSkip this step if `\u003Csize>` was already set to the default in step 4.\n\nOtherwise, present this size list and ask the user to reply with a slug. Every\nsize below is above the **1 vCPU \u002F 2 GB** floor required by the Codex Universal\nimage. Prices are approximate — confirm in the DigitalOcean dashboard.\n\n| Slug | vCPU | RAM | Tier | ~$\u002Fmo |\n|------|------|-----|------|-------|\n| `s-2vcpu-4gb` *(default)* | 2 | 4 GB | Shared basic | $24 |\n| `s-4vcpu-8gb` | 4 | 8 GB | Shared basic | $48 |\n| `s-8vcpu-16gb` | 8 | 16 GB | Shared basic | $96 |\n| `c-2` | 2 | 4 GB | Premium CPU-optimized | $42 |\n| `g-2vcpu-8gb` | 2 | 8 GB | Premium general-purpose | $63 |\n\nValidate their reply against this table. If it is not one of these slugs, ask\nagain — do not pass an unlisted value through. The chosen slug is `\u003Csize>`.\n\n## Step 6 — Create droplet\n\nCall the **DigitalOcean** app tool **`droplet-create`**:\n\n| Parameter | Value | Notes |\n|-----------|-------|-------|\n| `Name` | `name` from step 2 | |\n| `Region` | `\u003Cregion>` from step 4 | |\n| `Size` | `\u003Csize>` from step 5 | |\n| `ImageID` | `234061005` | DigitalOcean **Codex Universal** image |\n| `SSHKeys` | `[\"\u003Ckey_id>\"]` | |\n\nExtract `droplet.id` from the response — this is `\u003Cdroplet_id>`.\n\nIf `droplet-create` fails, show the user the error and handle it by cause — do\nnot blindly retry the same values:\n- **Size not available in this region** (premium tiers like `c-2` and\n  `g-2vcpu-8gb` are not in every region): go back to step 4 or 5 and pick a\n  different region\u002Fsize combination.\n- **Payment \u002F quota \u002F limit** errors: stop and tell the user to resolve it in\n  the DigitalOcean dashboard, then re-run.\n- **Invalid image or any other error:** stop and report it.\n\nThe uploaded SSH key from step 3 is harmless to leave, but if you abort here see\n*Cleanup* below.\n\n## Step 7 — Schedule delayed deployment check-in\n\nAfter `droplet-create` succeeds, inspect the response before polling. If the\ndroplet is not already `active` with a public IPv4 address in the create\nresponse, assume provisioning is still in progress.\n\nCreate a Codex **heartbeat** to resume this same thread in **5 minutes** for\nthe first status check. Use the Codex automation tool, not a shell sleep or\nlocal timer:\n\n| Field | Value |\n|-------|-------|\n| `mode` | `create` |\n| `kind` | `heartbeat` |\n| `destination` | `thread` |\n| `name` | `Check DigitalOcean droplet \u003Cname>` |\n| `rrule` | `FREQ=MINUTELY;INTERVAL=5` |\n| `status` | `ACTIVE` |\n| `prompt` | `Resume provisioning DigitalOcean droplet \u003Cname> (\u003Cdroplet_id>). Start at Step 8: check whether it is active and has a public IPv4 address, then continue the workflow. The droplet bills hourly until deleted.` |\n\nAfter creating the heartbeat, tell the user the droplet was created and Codex\nwill check back in about 5 minutes. **Stop the active turn here.** Do not start\n20-second polling until the heartbeat wakes the thread back up. This avoids\nbusy-waiting during the normal 5-7 minute deployment window.\n\nKeep the created heartbeat's automation id as `\u003Cheartbeat_id>` if the tool\nreturns one. When the heartbeat resumes the thread, use step 8 to decide\nwhether to keep checking or to delete\u002Fpause the heartbeat and continue.\n\nIf the create response already includes `status == \"active\"` and a public IPv4\naddress, skip the heartbeat and continue immediately to step 8.\n\n## Step 8 — Check whether the droplet is active\n\nCall the **DigitalOcean** app tool **`droplet-get`** once with\n`ID: \u003Cdroplet_id>`.\n\nIf the response has `status == \"active\"` **and** `networks.v4` contains an\nentry with `type == \"public\"`, extract `ip_address` from that entry — this is\n`\u003Cip>`. Delete or pause `\u003Cheartbeat_id>` if it still exists, then continue to\nstep 9.\n\nIf the droplet is still not active or does not yet have a public IPv4 address,\nschedule Codex to check this same thread again in **1 minute**, then **stop the\nactive turn here**. Keep checking back every minute until the droplet is ready;\ndo not give up merely because the DigitalOcean deployment is slow. Prefer\nupdating the existing `\u003Cheartbeat_id>` to a 1-minute interval; if that is not\npossible, create a replacement heartbeat and delete\u002Fpause the old one so there\nis only one active check-in.\n\nUse these values for the 1-minute follow-up heartbeat:\n\n| Field | Value |\n|-------|-------|\n| `mode` | `create` or `update`, depending on the available automation tool |\n| `kind` | `heartbeat` |\n| `destination` | `thread` |\n| `name` | `Check DigitalOcean droplet \u003Cname>` |\n| `rrule` | `FREQ=MINUTELY;INTERVAL=1` |\n| `status` | `ACTIVE` |\n| `prompt` | `Resume provisioning DigitalOcean droplet \u003Cname> (\u003Cdroplet_id>). Start at Step 8: check whether it is active and has a public IPv4 address, then continue the workflow. If it is still not ready, schedule another 1-minute heartbeat. The droplet bills hourly until deleted.` |\n\nKeep all status checks with the DigitalOcean app — do not use doctl or any other\ntool to check droplet status.\n\n## Step 9 — Configure local SSH\n\n```bash\npython3 \u003Cskill_dir>\u002Fscripts\u002Fconfigure_ssh.py \\\n  --alias codex-\u003Cprefix> \\\n  --ip \u003Cip> \\\n  --user root \\\n  --key-path \u003Ckey_path>\n```\n\n**⚠️ Do not interrupt this step.** It waits for cloud-init to finish (up to 7\nminutes) and prints a `⏳` status line every 5 seconds — that output means it is\nworking normally. **Do not run any other commands. Wait for the line\n`DROPLET READY`.** If the script exits with an error instead, report it and\noffer to delete the droplet (see *Cleanup*).\n\n## Final step: adding it to Codex\n\nAsk Codex to open the add-SSH-host flow by responding with a clickable Markdown\nlink. Replace `\u003Cssh-alias>` with `name` from step 2:\n\n`[Add \u003Cssh-alias> to Codex SSH](codex:\u002F\u002Fsettings\u002Fconnections\u002Fssh\u002Fadd?name=\u003Cssh-alias>)`\n\nThe SSH alias is the local host alias created by step 9. In this workflow, it is\nthe same value as the droplet name: `codex-\u003Cprefix>`.\n\nIf the link does not open the flow, or if the user wants to check it manually,\ntell them to open: **Codex App → Settings → Connections → Add SSH Host → pick\nthe alias → choose the remote folder.**\n\n## Cleanup (on failure or when done)\n\nThe droplet bills hourly until deleted. To tear down:\n\n1. **Delete the droplet** — **DigitalOcean** app tool **`droplet-delete`** with\n   `ID: \u003Cdroplet_id>`.\n2. **Delete the SSH key** (optional) — **DigitalOcean** app tool **`key-delete`**\n   with the `\u003Ckey_id>` from step 3.\n\nAlways confirm with the user before deleting. Do not use doctl for cleanup.\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,61,68,239,245,256,267,324,329,335,386,426,446,508,514,535,606,626,682,688,693,724,758,763,944,955,961,973,985,1179,1189,1195,1213,1368,1386,1398,1445,1456,1462,1482,1501,1667,1679,1692,1705,1711,1737,1793,1819,1824,1989,1994,2000,2152,2190,2196,2216,2225,2236,2246,2252,2257,2324,2329],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"provision-a-digitalocean-droplet-as-a-codex-remote-workspace",[46],{"type":47,"value":48},"text","Provision a DigitalOcean droplet as a Codex remote workspace",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,55],{"type":47,"value":54},"Follow these steps in order. Do not skip or reorder them.\n",{"type":41,"tag":56,"props":57,"children":58},"strong",{},[59],{"type":47,"value":60},"Only the installed Codex DigitalOcean app tools and the bundled Python scripts\nmay be used. doctl, ad hoc integration configs, and any other DigitalOcean CLI\ntools are prohibited.",{"type":41,"tag":62,"props":63,"children":65},"h2",{"id":64},"before-you-start",[66],{"type":47,"value":67},"Before you start",{"type":41,"tag":69,"props":70,"children":71},"ul",{},[72,105,130,140],{"type":41,"tag":73,"props":74,"children":75},"li",{},[76,81,83,87,89,95,97,103],{"type":41,"tag":56,"props":77,"children":78},{},[79],{"type":47,"value":80},"Prerequisites:",{"type":47,"value":82}," a funded DigitalOcean account, the installed and\nauthenticated Codex ",{"type":41,"tag":56,"props":84,"children":85},{},[86],{"type":47,"value":9},{"type":47,"value":88}," app, a local ",{"type":41,"tag":90,"props":91,"children":93},"code",{"className":92},[],[94],{"type":47,"value":21},{"type":47,"value":96},"\u002F",{"type":41,"tag":90,"props":98,"children":100},{"className":99},[],[101],{"type":47,"value":102},"ssh-keygen",{"type":47,"value":104},"\n(OpenSSH), Python 3, and the Codex desktop app.",{"type":41,"tag":73,"props":106,"children":107},{},[108,113,115,120,122,128],{"type":41,"tag":56,"props":109,"children":110},{},[111],{"type":47,"value":112},"Cost:",{"type":47,"value":114}," the droplet bills ",{"type":41,"tag":56,"props":116,"children":117},{},[118],{"type":47,"value":119},"hourly from creation until you delete it",{"type":47,"value":121},".\nSizes in step 5 show approximate monthly rates. Remind the user to delete it\nwhen done (see ",{"type":41,"tag":123,"props":124,"children":125},"em",{},[126],{"type":47,"value":127},"Cleanup",{"type":47,"value":129}," below).",{"type":41,"tag":73,"props":131,"children":132},{},[133,138],{"type":41,"tag":56,"props":134,"children":135},{},[136],{"type":47,"value":137},"Time:",{"type":47,"value":139}," end-to-end takes ~10–15 minutes — roughly 7 minutes waiting for the\ndroplet to boot (steps 7-8) plus up to 7 minutes for cloud-init (step 9). This\nis normal; do not abort.",{"type":41,"tag":73,"props":141,"children":142},{},[143,148,150,156,158,169,171,177,179,184,186,192,194,199,201,207,209,215,217,222,224,230,232,237],{"type":41,"tag":56,"props":144,"children":145},{},[146],{"type":47,"value":147},"Locate the bundled scripts first (do this before Step 2).",{"type":47,"value":149}," The helper\nscripts live in the ",{"type":41,"tag":90,"props":151,"children":153},{"className":152},[],[154],{"type":47,"value":155},"scripts\u002F",{"type":47,"value":157}," folder ",{"type":41,"tag":56,"props":159,"children":160},{},[161,163],{"type":47,"value":162},"next to this ",{"type":41,"tag":90,"props":164,"children":166},{"className":165},[],[167],{"type":47,"value":168},"SKILL.md",{"type":47,"value":170}," (i.e.\n",{"type":41,"tag":90,"props":172,"children":174},{"className":173},[],[175],{"type":47,"value":176},"provision-droplet\u002Fscripts\u002F",{"type":47,"value":178},"). Your current working directory is ",{"type":41,"tag":56,"props":180,"children":181},{},[182],{"type":47,"value":183},"not",{"type":47,"value":185}," the\nskill directory, so bare relative paths like ",{"type":41,"tag":90,"props":187,"children":189},{"className":188},[],[190],{"type":47,"value":191},"scripts\u002Fkeygen.py",{"type":47,"value":193}," will fail.\nResolve the absolute directory that contains this ",{"type":41,"tag":90,"props":195,"children":197},{"className":196},[],[198],{"type":47,"value":168},{"type":47,"value":200}," and call it\n",{"type":41,"tag":90,"props":202,"children":204},{"className":203},[],[205],{"type":47,"value":206},"\u003Cskill_dir>",{"type":47,"value":208},". If you don't already know it, find it — the installed plugin may\nnest it under a version folder (e.g. ",{"type":41,"tag":90,"props":210,"children":212},{"className":211},[],[213],{"type":47,"value":214},"...\u002F\u003Cversion>\u002Fprovision-droplet\u002F",{"type":47,"value":216},"), so\nlocate the directory that actually contains ",{"type":41,"tag":90,"props":218,"children":220},{"className":219},[],[221],{"type":47,"value":191},{"type":47,"value":223},". Use\n",{"type":41,"tag":90,"props":225,"children":227},{"className":226},[],[228],{"type":47,"value":229},"\u003Cskill_dir>\u002Fscripts\u002F\u003Cname>.py",{"type":47,"value":231}," (an absolute path) in ",{"type":41,"tag":56,"props":233,"children":234},{},[235],{"type":47,"value":236},"every",{"type":47,"value":238}," command below.",{"type":41,"tag":62,"props":240,"children":242},{"id":241},"step-1-verify-digitalocean-app-access",[243],{"type":47,"value":244},"Step 1 — Verify DigitalOcean app access",{"type":41,"tag":50,"props":246,"children":247},{},[248,250,254],{"type":47,"value":249},"This plugin depends on the single Codex ",{"type":41,"tag":56,"props":251,"children":252},{},[253],{"type":47,"value":9},{"type":47,"value":255}," app. Use it for all\nDigitalOcean operations; do not register or log in to separate plugin-owned app\nintegrations.",{"type":41,"tag":50,"props":257,"children":258},{},[259,261,265],{"type":47,"value":260},"The ",{"type":41,"tag":56,"props":262,"children":263},{},[264],{"type":47,"value":9},{"type":47,"value":266}," app provides both:",{"type":41,"tag":69,"props":268,"children":269},{},[270,298],{"type":41,"tag":73,"props":271,"children":272},{},[273,275,281,283,289,290,296],{"type":47,"value":274},"SSH key tools: ",{"type":41,"tag":90,"props":276,"children":278},{"className":277},[],[279],{"type":47,"value":280},"key-create",{"type":47,"value":282},", ",{"type":41,"tag":90,"props":284,"children":286},{"className":285},[],[287],{"type":47,"value":288},"key-list",{"type":47,"value":282},{"type":41,"tag":90,"props":291,"children":293},{"className":292},[],[294],{"type":47,"value":295},"key-delete",{"type":47,"value":297},".",{"type":41,"tag":73,"props":299,"children":300},{},[301,303,309,310,316,317,323],{"type":47,"value":302},"Droplet tools: ",{"type":41,"tag":90,"props":304,"children":306},{"className":305},[],[307],{"type":47,"value":308},"droplet-create",{"type":47,"value":282},{"type":41,"tag":90,"props":311,"children":313},{"className":312},[],[314],{"type":47,"value":315},"droplet-get",{"type":47,"value":282},{"type":41,"tag":90,"props":318,"children":320},{"className":319},[],[321],{"type":47,"value":322},"droplet-delete",{"type":47,"value":297},{"type":41,"tag":50,"props":325,"children":326},{},[327],{"type":47,"value":328},"Confirm that these tools are available before continuing. If the app's tools are\nmissing or unauthenticated, stop and tell the user to install or authenticate\nthe DigitalOcean app in Codex. Do not fall back to doctl, API tokens, or a local\nintegration config.",{"type":41,"tag":62,"props":330,"children":332},{"id":331},"step-2-generate-ssh-key-pair",[333],{"type":47,"value":334},"Step 2 — Generate SSH key pair",{"type":41,"tag":336,"props":337,"children":342},"pre",{"className":338,"code":339,"language":340,"meta":341,"style":341},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python3 \u003Cskill_dir>\u002Fscripts\u002Fkeygen.py\n","bash","",[343],{"type":41,"tag":90,"props":344,"children":345},{"__ignoreMap":341},[346],{"type":41,"tag":347,"props":348,"children":351},"span",{"class":349,"line":350},"line",1,[352,358,364,370,376,381],{"type":41,"tag":347,"props":353,"children":355},{"style":354},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[356],{"type":47,"value":357},"python3",{"type":41,"tag":347,"props":359,"children":361},{"style":360},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[362],{"type":47,"value":363}," \u003C",{"type":41,"tag":347,"props":365,"children":367},{"style":366},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[368],{"type":47,"value":369},"skill_di",{"type":41,"tag":347,"props":371,"children":373},{"style":372},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[374],{"type":47,"value":375},"r",{"type":41,"tag":347,"props":377,"children":378},{"style":360},[379],{"type":47,"value":380},">",{"type":41,"tag":347,"props":382,"children":383},{"style":366},[384],{"type":47,"value":385},"\u002Fscripts\u002Fkeygen.py\n",{"type":41,"tag":50,"props":387,"children":388},{},[389,391,397,398,404,405,411,412,418,419,425],{"type":47,"value":390},"Parse the JSON output and keep these values for the steps below:\n",{"type":41,"tag":90,"props":392,"children":394},{"className":393},[],[395],{"type":47,"value":396},"prefix",{"type":47,"value":282},{"type":41,"tag":90,"props":399,"children":401},{"className":400},[],[402],{"type":47,"value":403},"name",{"type":47,"value":282},{"type":41,"tag":90,"props":406,"children":408},{"className":407},[],[409],{"type":47,"value":410},"key_name",{"type":47,"value":282},{"type":41,"tag":90,"props":413,"children":415},{"className":414},[],[416],{"type":47,"value":417},"key_path",{"type":47,"value":282},{"type":41,"tag":90,"props":420,"children":422},{"className":421},[],[423],{"type":47,"value":424},"pub_key",{"type":47,"value":297},{"type":41,"tag":50,"props":427,"children":428},{},[429,431,436,438,444],{"type":47,"value":430},"How these relate (all derived from one random ",{"type":41,"tag":90,"props":432,"children":434},{"className":433},[],[435],{"type":47,"value":396},{"type":47,"value":437}," like ",{"type":41,"tag":90,"props":439,"children":441},{"className":440},[],[442],{"type":47,"value":443},"bright-hawk-a3f2",{"type":47,"value":445},"):",{"type":41,"tag":69,"props":447,"children":448},{},[449,481,498],{"type":41,"tag":73,"props":450,"children":451},{},[452,457,459,465,467,472,474,479],{"type":41,"tag":90,"props":453,"children":455},{"className":454},[],[456],{"type":47,"value":403},{"type":47,"value":458}," = ",{"type":41,"tag":90,"props":460,"children":462},{"className":461},[],[463],{"type":47,"value":464},"codex-\u003Cprefix>",{"type":47,"value":466}," — the ",{"type":41,"tag":56,"props":468,"children":469},{},[470],{"type":47,"value":471},"droplet name",{"type":47,"value":473}," and the ",{"type":41,"tag":56,"props":475,"children":476},{},[477],{"type":47,"value":478},"local SSH alias",{"type":47,"value":480},"\n(they are identical).",{"type":41,"tag":73,"props":482,"children":483},{},[484,489,490,496],{"type":41,"tag":90,"props":485,"children":487},{"className":486},[],[488],{"type":47,"value":410},{"type":47,"value":458},{"type":41,"tag":90,"props":491,"children":493},{"className":492},[],[494],{"type":47,"value":495},"codex-key-\u003Cprefix>",{"type":47,"value":497}," — the label for the key on DigitalOcean's\nside only.",{"type":41,"tag":73,"props":499,"children":500},{},[501,506],{"type":41,"tag":90,"props":502,"children":504},{"className":503},[],[505],{"type":47,"value":417},{"type":47,"value":507}," — the local private key file.",{"type":41,"tag":62,"props":509,"children":511},{"id":510},"step-3-upload-ssh-public-key",[512],{"type":47,"value":513},"Step 3 — Upload SSH public key",{"type":41,"tag":50,"props":515,"children":516},{},[517,519,523,525,533],{"type":47,"value":518},"Call the ",{"type":41,"tag":56,"props":520,"children":521},{},[522],{"type":47,"value":9},{"type":47,"value":524}," app tool ",{"type":41,"tag":56,"props":526,"children":527},{},[528],{"type":41,"tag":90,"props":529,"children":531},{"className":530},[],[532],{"type":47,"value":280},{"type":47,"value":534},":",{"type":41,"tag":536,"props":537,"children":538},"table",{},[539,558],{"type":41,"tag":540,"props":541,"children":542},"thead",{},[543],{"type":41,"tag":544,"props":545,"children":546},"tr",{},[547,553],{"type":41,"tag":548,"props":549,"children":550},"th",{},[551],{"type":47,"value":552},"Parameter",{"type":41,"tag":548,"props":554,"children":555},{},[556],{"type":47,"value":557},"Value",{"type":41,"tag":559,"props":560,"children":561},"tbody",{},[562,585],{"type":41,"tag":544,"props":563,"children":564},{},[565,575],{"type":41,"tag":566,"props":567,"children":568},"td",{},[569],{"type":41,"tag":90,"props":570,"children":572},{"className":571},[],[573],{"type":47,"value":574},"Name",{"type":41,"tag":566,"props":576,"children":577},{},[578,583],{"type":41,"tag":90,"props":579,"children":581},{"className":580},[],[582],{"type":47,"value":410},{"type":47,"value":584}," from step 2",{"type":41,"tag":544,"props":586,"children":587},{},[588,597],{"type":41,"tag":566,"props":589,"children":590},{},[591],{"type":41,"tag":90,"props":592,"children":594},{"className":593},[],[595],{"type":47,"value":596},"PublicKey",{"type":41,"tag":566,"props":598,"children":599},{},[600,605],{"type":41,"tag":90,"props":601,"children":603},{"className":602},[],[604],{"type":47,"value":424},{"type":47,"value":584},{"type":41,"tag":50,"props":607,"children":608},{},[609,611,617,619,625],{"type":47,"value":610},"Extract ",{"type":41,"tag":90,"props":612,"children":614},{"className":613},[],[615],{"type":47,"value":616},"ssh_key.id",{"type":47,"value":618}," from the response — this is ",{"type":41,"tag":90,"props":620,"children":622},{"className":621},[],[623],{"type":47,"value":624},"\u003Ckey_id>",{"type":47,"value":297},{"type":41,"tag":50,"props":627,"children":628},{},[629,631,636,638,642,644,652,654,659,661,666,668,674,676,681],{"type":47,"value":630},"If the call fails because a key with that name or fingerprint ",{"type":41,"tag":56,"props":632,"children":633},{},[634],{"type":47,"value":635},"already exists",{"type":47,"value":637},"\n(e.g. a previous run), do not create a duplicate: call the ",{"type":41,"tag":56,"props":639,"children":640},{},[641],{"type":47,"value":9},{"type":47,"value":643}," app\ntool ",{"type":41,"tag":56,"props":645,"children":646},{},[647],{"type":41,"tag":90,"props":648,"children":650},{"className":649},[],[651],{"type":47,"value":288},{"type":47,"value":653},", find the entry whose ",{"type":41,"tag":90,"props":655,"children":657},{"className":656},[],[658],{"type":47,"value":403},{"type":47,"value":660}," matches ",{"type":41,"tag":90,"props":662,"children":664},{"className":663},[],[665],{"type":47,"value":410},{"type":47,"value":667}," (or whose\nfingerprint matches the uploaded key), and use its ",{"type":41,"tag":90,"props":669,"children":671},{"className":670},[],[672],{"type":47,"value":673},"id",{"type":47,"value":675}," as ",{"type":41,"tag":90,"props":677,"children":679},{"className":678},[],[680],{"type":47,"value":624},{"type":47,"value":297},{"type":41,"tag":62,"props":683,"children":685},{"id":684},"step-4-choose-a-region",[686],{"type":47,"value":687},"Step 4 — Choose a region",{"type":41,"tag":50,"props":689,"children":690},{},[691],{"type":47,"value":692},"Ask the user, in chat:",{"type":41,"tag":694,"props":695,"children":696},"blockquote",{},[697],{"type":41,"tag":50,"props":698,"children":699},{},[700,702,711,713,722],{"type":47,"value":701},"Use the defaults — region ",{"type":41,"tag":56,"props":703,"children":704},{},[705],{"type":41,"tag":90,"props":706,"children":708},{"className":707},[],[709],{"type":47,"value":710},"nyc3",{"type":47,"value":712}," (New York, US) and size\n",{"type":41,"tag":56,"props":714,"children":715},{},[716],{"type":41,"tag":90,"props":717,"children":719},{"className":718},[],[720],{"type":47,"value":721},"s-2vcpu-4gb",{"type":47,"value":723}," (2 vCPU \u002F 4 GB, ~$24\u002Fmo) — or customize them?",{"type":41,"tag":50,"props":725,"children":726},{},[727,729,734,735,741,743,748,750,756],{"type":47,"value":728},"If they choose the defaults, use ",{"type":41,"tag":90,"props":730,"children":732},{"className":731},[],[733],{"type":47,"value":710},{"type":47,"value":675},{"type":41,"tag":90,"props":736,"children":738},{"className":737},[],[739],{"type":47,"value":740},"\u003Cregion>",{"type":47,"value":742}," and ",{"type":41,"tag":90,"props":744,"children":746},{"className":745},[],[747],{"type":47,"value":721},{"type":47,"value":749}," as\n",{"type":41,"tag":90,"props":751,"children":753},{"className":752},[],[754],{"type":47,"value":755},"\u003Csize>",{"type":47,"value":757},", then skip step 5 and continue to step 6.",{"type":41,"tag":50,"props":759,"children":760},{},[761],{"type":47,"value":762},"If they want to customize the defaults, present this region list first and ask\nthem to reply with a slug:",{"type":41,"tag":536,"props":764,"children":765},{},[766,782],{"type":41,"tag":540,"props":767,"children":768},{},[769],{"type":41,"tag":544,"props":770,"children":771},{},[772,777],{"type":41,"tag":548,"props":773,"children":774},{},[775],{"type":47,"value":776},"Slug",{"type":41,"tag":548,"props":778,"children":779},{},[780],{"type":47,"value":781},"Location",{"type":41,"tag":559,"props":783,"children":784},{},[785,808,825,842,859,876,893,910,927],{"type":41,"tag":544,"props":786,"children":787},{},[788,803],{"type":41,"tag":566,"props":789,"children":790},{},[791,796,798],{"type":41,"tag":90,"props":792,"children":794},{"className":793},[],[795],{"type":47,"value":710},{"type":47,"value":797}," ",{"type":41,"tag":123,"props":799,"children":800},{},[801],{"type":47,"value":802},"(default)",{"type":41,"tag":566,"props":804,"children":805},{},[806],{"type":47,"value":807},"New York, US",{"type":41,"tag":544,"props":809,"children":810},{},[811,820],{"type":41,"tag":566,"props":812,"children":813},{},[814],{"type":41,"tag":90,"props":815,"children":817},{"className":816},[],[818],{"type":47,"value":819},"sfo3",{"type":41,"tag":566,"props":821,"children":822},{},[823],{"type":47,"value":824},"San Francisco, US",{"type":41,"tag":544,"props":826,"children":827},{},[828,837],{"type":41,"tag":566,"props":829,"children":830},{},[831],{"type":41,"tag":90,"props":832,"children":834},{"className":833},[],[835],{"type":47,"value":836},"tor1",{"type":41,"tag":566,"props":838,"children":839},{},[840],{"type":47,"value":841},"Toronto, CA",{"type":41,"tag":544,"props":843,"children":844},{},[845,854],{"type":41,"tag":566,"props":846,"children":847},{},[848],{"type":41,"tag":90,"props":849,"children":851},{"className":850},[],[852],{"type":47,"value":853},"lon1",{"type":41,"tag":566,"props":855,"children":856},{},[857],{"type":47,"value":858},"London, UK",{"type":41,"tag":544,"props":860,"children":861},{},[862,871],{"type":41,"tag":566,"props":863,"children":864},{},[865],{"type":41,"tag":90,"props":866,"children":868},{"className":867},[],[869],{"type":47,"value":870},"fra1",{"type":41,"tag":566,"props":872,"children":873},{},[874],{"type":47,"value":875},"Frankfurt, DE",{"type":41,"tag":544,"props":877,"children":878},{},[879,888],{"type":41,"tag":566,"props":880,"children":881},{},[882],{"type":41,"tag":90,"props":883,"children":885},{"className":884},[],[886],{"type":47,"value":887},"ams3",{"type":41,"tag":566,"props":889,"children":890},{},[891],{"type":47,"value":892},"Amsterdam, NL",{"type":41,"tag":544,"props":894,"children":895},{},[896,905],{"type":41,"tag":566,"props":897,"children":898},{},[899],{"type":41,"tag":90,"props":900,"children":902},{"className":901},[],[903],{"type":47,"value":904},"sgp1",{"type":41,"tag":566,"props":906,"children":907},{},[908],{"type":47,"value":909},"Singapore, SG",{"type":41,"tag":544,"props":911,"children":912},{},[913,922],{"type":41,"tag":566,"props":914,"children":915},{},[916],{"type":41,"tag":90,"props":917,"children":919},{"className":918},[],[920],{"type":47,"value":921},"blr1",{"type":41,"tag":566,"props":923,"children":924},{},[925],{"type":47,"value":926},"Bangalore, IN",{"type":41,"tag":544,"props":928,"children":929},{},[930,939],{"type":41,"tag":566,"props":931,"children":932},{},[933],{"type":41,"tag":90,"props":934,"children":936},{"className":935},[],[937],{"type":47,"value":938},"syd1",{"type":41,"tag":566,"props":940,"children":941},{},[942],{"type":47,"value":943},"Sydney, AU",{"type":41,"tag":50,"props":945,"children":946},{},[947,949,954],{"type":47,"value":948},"Validate their reply against this table. If it is not one of these slugs, ask\nagain — do not pass an unlisted value through. The chosen slug is ",{"type":41,"tag":90,"props":950,"children":952},{"className":951},[],[953],{"type":47,"value":740},{"type":47,"value":297},{"type":41,"tag":62,"props":956,"children":958},{"id":957},"step-5-choose-a-droplet-size",[959],{"type":47,"value":960},"Step 5 — Choose a droplet size",{"type":41,"tag":50,"props":962,"children":963},{},[964,966,971],{"type":47,"value":965},"Skip this step if ",{"type":41,"tag":90,"props":967,"children":969},{"className":968},[],[970],{"type":47,"value":755},{"type":47,"value":972}," was already set to the default in step 4.",{"type":41,"tag":50,"props":974,"children":975},{},[976,978,983],{"type":47,"value":977},"Otherwise, present this size list and ask the user to reply with a slug. Every\nsize below is above the ",{"type":41,"tag":56,"props":979,"children":980},{},[981],{"type":47,"value":982},"1 vCPU \u002F 2 GB",{"type":47,"value":984}," floor required by the Codex Universal\nimage. Prices are approximate — confirm in the DigitalOcean dashboard.",{"type":41,"tag":536,"props":986,"children":987},{},[988,1018],{"type":41,"tag":540,"props":989,"children":990},{},[991],{"type":41,"tag":544,"props":992,"children":993},{},[994,998,1003,1008,1013],{"type":41,"tag":548,"props":995,"children":996},{},[997],{"type":47,"value":776},{"type":41,"tag":548,"props":999,"children":1000},{},[1001],{"type":47,"value":1002},"vCPU",{"type":41,"tag":548,"props":1004,"children":1005},{},[1006],{"type":47,"value":1007},"RAM",{"type":41,"tag":548,"props":1009,"children":1010},{},[1011],{"type":47,"value":1012},"Tier",{"type":41,"tag":548,"props":1014,"children":1015},{},[1016],{"type":47,"value":1017},"~$\u002Fmo",{"type":41,"tag":559,"props":1019,"children":1020},{},[1021,1057,1088,1119,1149],{"type":41,"tag":544,"props":1022,"children":1023},{},[1024,1037,1042,1047,1052],{"type":41,"tag":566,"props":1025,"children":1026},{},[1027,1032,1033],{"type":41,"tag":90,"props":1028,"children":1030},{"className":1029},[],[1031],{"type":47,"value":721},{"type":47,"value":797},{"type":41,"tag":123,"props":1034,"children":1035},{},[1036],{"type":47,"value":802},{"type":41,"tag":566,"props":1038,"children":1039},{},[1040],{"type":47,"value":1041},"2",{"type":41,"tag":566,"props":1043,"children":1044},{},[1045],{"type":47,"value":1046},"4 GB",{"type":41,"tag":566,"props":1048,"children":1049},{},[1050],{"type":47,"value":1051},"Shared basic",{"type":41,"tag":566,"props":1053,"children":1054},{},[1055],{"type":47,"value":1056},"$24",{"type":41,"tag":544,"props":1058,"children":1059},{},[1060,1069,1074,1079,1083],{"type":41,"tag":566,"props":1061,"children":1062},{},[1063],{"type":41,"tag":90,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":47,"value":1068},"s-4vcpu-8gb",{"type":41,"tag":566,"props":1070,"children":1071},{},[1072],{"type":47,"value":1073},"4",{"type":41,"tag":566,"props":1075,"children":1076},{},[1077],{"type":47,"value":1078},"8 GB",{"type":41,"tag":566,"props":1080,"children":1081},{},[1082],{"type":47,"value":1051},{"type":41,"tag":566,"props":1084,"children":1085},{},[1086],{"type":47,"value":1087},"$48",{"type":41,"tag":544,"props":1089,"children":1090},{},[1091,1100,1105,1110,1114],{"type":41,"tag":566,"props":1092,"children":1093},{},[1094],{"type":41,"tag":90,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":47,"value":1099},"s-8vcpu-16gb",{"type":41,"tag":566,"props":1101,"children":1102},{},[1103],{"type":47,"value":1104},"8",{"type":41,"tag":566,"props":1106,"children":1107},{},[1108],{"type":47,"value":1109},"16 GB",{"type":41,"tag":566,"props":1111,"children":1112},{},[1113],{"type":47,"value":1051},{"type":41,"tag":566,"props":1115,"children":1116},{},[1117],{"type":47,"value":1118},"$96",{"type":41,"tag":544,"props":1120,"children":1121},{},[1122,1131,1135,1139,1144],{"type":41,"tag":566,"props":1123,"children":1124},{},[1125],{"type":41,"tag":90,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":47,"value":1130},"c-2",{"type":41,"tag":566,"props":1132,"children":1133},{},[1134],{"type":47,"value":1041},{"type":41,"tag":566,"props":1136,"children":1137},{},[1138],{"type":47,"value":1046},{"type":41,"tag":566,"props":1140,"children":1141},{},[1142],{"type":47,"value":1143},"Premium CPU-optimized",{"type":41,"tag":566,"props":1145,"children":1146},{},[1147],{"type":47,"value":1148},"$42",{"type":41,"tag":544,"props":1150,"children":1151},{},[1152,1161,1165,1169,1174],{"type":41,"tag":566,"props":1153,"children":1154},{},[1155],{"type":41,"tag":90,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":47,"value":1160},"g-2vcpu-8gb",{"type":41,"tag":566,"props":1162,"children":1163},{},[1164],{"type":47,"value":1041},{"type":41,"tag":566,"props":1166,"children":1167},{},[1168],{"type":47,"value":1078},{"type":41,"tag":566,"props":1170,"children":1171},{},[1172],{"type":47,"value":1173},"Premium general-purpose",{"type":41,"tag":566,"props":1175,"children":1176},{},[1177],{"type":47,"value":1178},"$63",{"type":41,"tag":50,"props":1180,"children":1181},{},[1182,1183,1188],{"type":47,"value":948},{"type":41,"tag":90,"props":1184,"children":1186},{"className":1185},[],[1187],{"type":47,"value":755},{"type":47,"value":297},{"type":41,"tag":62,"props":1190,"children":1192},{"id":1191},"step-6-create-droplet",[1193],{"type":47,"value":1194},"Step 6 — Create droplet",{"type":41,"tag":50,"props":1196,"children":1197},{},[1198,1199,1203,1204,1212],{"type":47,"value":518},{"type":41,"tag":56,"props":1200,"children":1201},{},[1202],{"type":47,"value":9},{"type":47,"value":524},{"type":41,"tag":56,"props":1205,"children":1206},{},[1207],{"type":41,"tag":90,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":47,"value":308},{"type":47,"value":534},{"type":41,"tag":536,"props":1214,"children":1215},{},[1216,1235],{"type":41,"tag":540,"props":1217,"children":1218},{},[1219],{"type":41,"tag":544,"props":1220,"children":1221},{},[1222,1226,1230],{"type":41,"tag":548,"props":1223,"children":1224},{},[1225],{"type":47,"value":552},{"type":41,"tag":548,"props":1227,"children":1228},{},[1229],{"type":47,"value":557},{"type":41,"tag":548,"props":1231,"children":1232},{},[1233],{"type":47,"value":1234},"Notes",{"type":41,"tag":559,"props":1236,"children":1237},{},[1238,1261,1286,1311,1344],{"type":41,"tag":544,"props":1239,"children":1240},{},[1241,1249,1258],{"type":41,"tag":566,"props":1242,"children":1243},{},[1244],{"type":41,"tag":90,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":47,"value":574},{"type":41,"tag":566,"props":1250,"children":1251},{},[1252,1257],{"type":41,"tag":90,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":47,"value":403},{"type":47,"value":584},{"type":41,"tag":566,"props":1259,"children":1260},{},[],{"type":41,"tag":544,"props":1262,"children":1263},{},[1264,1273,1283],{"type":41,"tag":566,"props":1265,"children":1266},{},[1267],{"type":41,"tag":90,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":47,"value":1272},"Region",{"type":41,"tag":566,"props":1274,"children":1275},{},[1276,1281],{"type":41,"tag":90,"props":1277,"children":1279},{"className":1278},[],[1280],{"type":47,"value":740},{"type":47,"value":1282}," from step 4",{"type":41,"tag":566,"props":1284,"children":1285},{},[],{"type":41,"tag":544,"props":1287,"children":1288},{},[1289,1298,1308],{"type":41,"tag":566,"props":1290,"children":1291},{},[1292],{"type":41,"tag":90,"props":1293,"children":1295},{"className":1294},[],[1296],{"type":47,"value":1297},"Size",{"type":41,"tag":566,"props":1299,"children":1300},{},[1301,1306],{"type":41,"tag":90,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":47,"value":755},{"type":47,"value":1307}," from step 5",{"type":41,"tag":566,"props":1309,"children":1310},{},[],{"type":41,"tag":544,"props":1312,"children":1313},{},[1314,1323,1332],{"type":41,"tag":566,"props":1315,"children":1316},{},[1317],{"type":41,"tag":90,"props":1318,"children":1320},{"className":1319},[],[1321],{"type":47,"value":1322},"ImageID",{"type":41,"tag":566,"props":1324,"children":1325},{},[1326],{"type":41,"tag":90,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":47,"value":1331},"234061005",{"type":41,"tag":566,"props":1333,"children":1334},{},[1335,1337,1342],{"type":47,"value":1336},"DigitalOcean ",{"type":41,"tag":56,"props":1338,"children":1339},{},[1340],{"type":47,"value":1341},"Codex Universal",{"type":47,"value":1343}," image",{"type":41,"tag":544,"props":1345,"children":1346},{},[1347,1356,1365],{"type":41,"tag":566,"props":1348,"children":1349},{},[1350],{"type":41,"tag":90,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":47,"value":1355},"SSHKeys",{"type":41,"tag":566,"props":1357,"children":1358},{},[1359],{"type":41,"tag":90,"props":1360,"children":1362},{"className":1361},[],[1363],{"type":47,"value":1364},"[\"\u003Ckey_id>\"]",{"type":41,"tag":566,"props":1366,"children":1367},{},[],{"type":41,"tag":50,"props":1369,"children":1370},{},[1371,1372,1378,1379,1385],{"type":47,"value":610},{"type":41,"tag":90,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":47,"value":1377},"droplet.id",{"type":47,"value":618},{"type":41,"tag":90,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":47,"value":1384},"\u003Cdroplet_id>",{"type":47,"value":297},{"type":41,"tag":50,"props":1387,"children":1388},{},[1389,1391,1396],{"type":47,"value":1390},"If ",{"type":41,"tag":90,"props":1392,"children":1394},{"className":1393},[],[1395],{"type":47,"value":308},{"type":47,"value":1397}," fails, show the user the error and handle it by cause — do\nnot blindly retry the same values:",{"type":41,"tag":69,"props":1399,"children":1400},{},[1401,1425,1435],{"type":41,"tag":73,"props":1402,"children":1403},{},[1404,1409,1411,1416,1418,1423],{"type":41,"tag":56,"props":1405,"children":1406},{},[1407],{"type":47,"value":1408},"Size not available in this region",{"type":47,"value":1410}," (premium tiers like ",{"type":41,"tag":90,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":47,"value":1130},{"type":47,"value":1417}," and\n",{"type":41,"tag":90,"props":1419,"children":1421},{"className":1420},[],[1422],{"type":47,"value":1160},{"type":47,"value":1424}," are not in every region): go back to step 4 or 5 and pick a\ndifferent region\u002Fsize combination.",{"type":41,"tag":73,"props":1426,"children":1427},{},[1428,1433],{"type":41,"tag":56,"props":1429,"children":1430},{},[1431],{"type":47,"value":1432},"Payment \u002F quota \u002F limit",{"type":47,"value":1434}," errors: stop and tell the user to resolve it in\nthe DigitalOcean dashboard, then re-run.",{"type":41,"tag":73,"props":1436,"children":1437},{},[1438,1443],{"type":41,"tag":56,"props":1439,"children":1440},{},[1441],{"type":47,"value":1442},"Invalid image or any other error:",{"type":47,"value":1444}," stop and report it.",{"type":41,"tag":50,"props":1446,"children":1447},{},[1448,1450,1454],{"type":47,"value":1449},"The uploaded SSH key from step 3 is harmless to leave, but if you abort here see\n",{"type":41,"tag":123,"props":1451,"children":1452},{},[1453],{"type":47,"value":127},{"type":47,"value":1455}," below.",{"type":41,"tag":62,"props":1457,"children":1459},{"id":1458},"step-7-schedule-delayed-deployment-check-in",[1460],{"type":47,"value":1461},"Step 7 — Schedule delayed deployment check-in",{"type":41,"tag":50,"props":1463,"children":1464},{},[1465,1467,1472,1474,1480],{"type":47,"value":1466},"After ",{"type":41,"tag":90,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":47,"value":308},{"type":47,"value":1473}," succeeds, inspect the response before polling. If the\ndroplet is not already ",{"type":41,"tag":90,"props":1475,"children":1477},{"className":1476},[],[1478],{"type":47,"value":1479},"active",{"type":47,"value":1481}," with a public IPv4 address in the create\nresponse, assume provisioning is still in progress.",{"type":41,"tag":50,"props":1483,"children":1484},{},[1485,1487,1492,1494,1499],{"type":47,"value":1486},"Create a Codex ",{"type":41,"tag":56,"props":1488,"children":1489},{},[1490],{"type":47,"value":1491},"heartbeat",{"type":47,"value":1493}," to resume this same thread in ",{"type":41,"tag":56,"props":1495,"children":1496},{},[1497],{"type":47,"value":1498},"5 minutes",{"type":47,"value":1500}," for\nthe first status check. Use the Codex automation tool, not a shell sleep or\nlocal timer:",{"type":41,"tag":536,"props":1502,"children":1503},{},[1504,1519],{"type":41,"tag":540,"props":1505,"children":1506},{},[1507],{"type":41,"tag":544,"props":1508,"children":1509},{},[1510,1515],{"type":41,"tag":548,"props":1511,"children":1512},{},[1513],{"type":47,"value":1514},"Field",{"type":41,"tag":548,"props":1516,"children":1517},{},[1518],{"type":47,"value":557},{"type":41,"tag":559,"props":1520,"children":1521},{},[1522,1543,1563,1584,1604,1625,1646],{"type":41,"tag":544,"props":1523,"children":1524},{},[1525,1534],{"type":41,"tag":566,"props":1526,"children":1527},{},[1528],{"type":41,"tag":90,"props":1529,"children":1531},{"className":1530},[],[1532],{"type":47,"value":1533},"mode",{"type":41,"tag":566,"props":1535,"children":1536},{},[1537],{"type":41,"tag":90,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":47,"value":1542},"create",{"type":41,"tag":544,"props":1544,"children":1545},{},[1546,1555],{"type":41,"tag":566,"props":1547,"children":1548},{},[1549],{"type":41,"tag":90,"props":1550,"children":1552},{"className":1551},[],[1553],{"type":47,"value":1554},"kind",{"type":41,"tag":566,"props":1556,"children":1557},{},[1558],{"type":41,"tag":90,"props":1559,"children":1561},{"className":1560},[],[1562],{"type":47,"value":1491},{"type":41,"tag":544,"props":1564,"children":1565},{},[1566,1575],{"type":41,"tag":566,"props":1567,"children":1568},{},[1569],{"type":41,"tag":90,"props":1570,"children":1572},{"className":1571},[],[1573],{"type":47,"value":1574},"destination",{"type":41,"tag":566,"props":1576,"children":1577},{},[1578],{"type":41,"tag":90,"props":1579,"children":1581},{"className":1580},[],[1582],{"type":47,"value":1583},"thread",{"type":41,"tag":544,"props":1585,"children":1586},{},[1587,1595],{"type":41,"tag":566,"props":1588,"children":1589},{},[1590],{"type":41,"tag":90,"props":1591,"children":1593},{"className":1592},[],[1594],{"type":47,"value":403},{"type":41,"tag":566,"props":1596,"children":1597},{},[1598],{"type":41,"tag":90,"props":1599,"children":1601},{"className":1600},[],[1602],{"type":47,"value":1603},"Check DigitalOcean droplet \u003Cname>",{"type":41,"tag":544,"props":1605,"children":1606},{},[1607,1616],{"type":41,"tag":566,"props":1608,"children":1609},{},[1610],{"type":41,"tag":90,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":47,"value":1615},"rrule",{"type":41,"tag":566,"props":1617,"children":1618},{},[1619],{"type":41,"tag":90,"props":1620,"children":1622},{"className":1621},[],[1623],{"type":47,"value":1624},"FREQ=MINUTELY;INTERVAL=5",{"type":41,"tag":544,"props":1626,"children":1627},{},[1628,1637],{"type":41,"tag":566,"props":1629,"children":1630},{},[1631],{"type":41,"tag":90,"props":1632,"children":1634},{"className":1633},[],[1635],{"type":47,"value":1636},"status",{"type":41,"tag":566,"props":1638,"children":1639},{},[1640],{"type":41,"tag":90,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":47,"value":1645},"ACTIVE",{"type":41,"tag":544,"props":1647,"children":1648},{},[1649,1658],{"type":41,"tag":566,"props":1650,"children":1651},{},[1652],{"type":41,"tag":90,"props":1653,"children":1655},{"className":1654},[],[1656],{"type":47,"value":1657},"prompt",{"type":41,"tag":566,"props":1659,"children":1660},{},[1661],{"type":41,"tag":90,"props":1662,"children":1664},{"className":1663},[],[1665],{"type":47,"value":1666},"Resume provisioning DigitalOcean droplet \u003Cname> (\u003Cdroplet_id>). Start at Step 8: check whether it is active and has a public IPv4 address, then continue the workflow. The droplet bills hourly until deleted.",{"type":41,"tag":50,"props":1668,"children":1669},{},[1670,1672,1677],{"type":47,"value":1671},"After creating the heartbeat, tell the user the droplet was created and Codex\nwill check back in about 5 minutes. ",{"type":41,"tag":56,"props":1673,"children":1674},{},[1675],{"type":47,"value":1676},"Stop the active turn here.",{"type":47,"value":1678}," Do not start\n20-second polling until the heartbeat wakes the thread back up. This avoids\nbusy-waiting during the normal 5-7 minute deployment window.",{"type":41,"tag":50,"props":1680,"children":1681},{},[1682,1684,1690],{"type":47,"value":1683},"Keep the created heartbeat's automation id as ",{"type":41,"tag":90,"props":1685,"children":1687},{"className":1686},[],[1688],{"type":47,"value":1689},"\u003Cheartbeat_id>",{"type":47,"value":1691}," if the tool\nreturns one. When the heartbeat resumes the thread, use step 8 to decide\nwhether to keep checking or to delete\u002Fpause the heartbeat and continue.",{"type":41,"tag":50,"props":1693,"children":1694},{},[1695,1697,1703],{"type":47,"value":1696},"If the create response already includes ",{"type":41,"tag":90,"props":1698,"children":1700},{"className":1699},[],[1701],{"type":47,"value":1702},"status == \"active\"",{"type":47,"value":1704}," and a public IPv4\naddress, skip the heartbeat and continue immediately to step 8.",{"type":41,"tag":62,"props":1706,"children":1708},{"id":1707},"step-8-check-whether-the-droplet-is-active",[1709],{"type":47,"value":1710},"Step 8 — Check whether the droplet is active",{"type":41,"tag":50,"props":1712,"children":1713},{},[1714,1715,1719,1720,1728,1730,1736],{"type":47,"value":518},{"type":41,"tag":56,"props":1716,"children":1717},{},[1718],{"type":47,"value":9},{"type":47,"value":524},{"type":41,"tag":56,"props":1721,"children":1722},{},[1723],{"type":41,"tag":90,"props":1724,"children":1726},{"className":1725},[],[1727],{"type":47,"value":315},{"type":47,"value":1729}," once with\n",{"type":41,"tag":90,"props":1731,"children":1733},{"className":1732},[],[1734],{"type":47,"value":1735},"ID: \u003Cdroplet_id>",{"type":47,"value":297},{"type":41,"tag":50,"props":1738,"children":1739},{},[1740,1742,1747,1748,1753,1754,1760,1762,1768,1770,1776,1778,1784,1786,1791],{"type":47,"value":1741},"If the response has ",{"type":41,"tag":90,"props":1743,"children":1745},{"className":1744},[],[1746],{"type":47,"value":1702},{"type":47,"value":797},{"type":41,"tag":56,"props":1749,"children":1750},{},[1751],{"type":47,"value":1752},"and",{"type":47,"value":797},{"type":41,"tag":90,"props":1755,"children":1757},{"className":1756},[],[1758],{"type":47,"value":1759},"networks.v4",{"type":47,"value":1761}," contains an\nentry with ",{"type":41,"tag":90,"props":1763,"children":1765},{"className":1764},[],[1766],{"type":47,"value":1767},"type == \"public\"",{"type":47,"value":1769},", extract ",{"type":41,"tag":90,"props":1771,"children":1773},{"className":1772},[],[1774],{"type":47,"value":1775},"ip_address",{"type":47,"value":1777}," from that entry — this is\n",{"type":41,"tag":90,"props":1779,"children":1781},{"className":1780},[],[1782],{"type":47,"value":1783},"\u003Cip>",{"type":47,"value":1785},". Delete or pause ",{"type":41,"tag":90,"props":1787,"children":1789},{"className":1788},[],[1790],{"type":47,"value":1689},{"type":47,"value":1792}," if it still exists, then continue to\nstep 9.",{"type":41,"tag":50,"props":1794,"children":1795},{},[1796,1798,1803,1805,1810,1812,1817],{"type":47,"value":1797},"If the droplet is still not active or does not yet have a public IPv4 address,\nschedule Codex to check this same thread again in ",{"type":41,"tag":56,"props":1799,"children":1800},{},[1801],{"type":47,"value":1802},"1 minute",{"type":47,"value":1804},", then ",{"type":41,"tag":56,"props":1806,"children":1807},{},[1808],{"type":47,"value":1809},"stop the\nactive turn here",{"type":47,"value":1811},". Keep checking back every minute until the droplet is ready;\ndo not give up merely because the DigitalOcean deployment is slow. Prefer\nupdating the existing ",{"type":41,"tag":90,"props":1813,"children":1815},{"className":1814},[],[1816],{"type":47,"value":1689},{"type":47,"value":1818}," to a 1-minute interval; if that is not\npossible, create a replacement heartbeat and delete\u002Fpause the old one so there\nis only one active check-in.",{"type":41,"tag":50,"props":1820,"children":1821},{},[1822],{"type":47,"value":1823},"Use these values for the 1-minute follow-up heartbeat:",{"type":41,"tag":536,"props":1825,"children":1826},{},[1827,1841],{"type":41,"tag":540,"props":1828,"children":1829},{},[1830],{"type":41,"tag":544,"props":1831,"children":1832},{},[1833,1837],{"type":41,"tag":548,"props":1834,"children":1835},{},[1836],{"type":47,"value":1514},{"type":41,"tag":548,"props":1838,"children":1839},{},[1840],{"type":47,"value":557},{"type":41,"tag":559,"props":1842,"children":1843},{},[1844,1873,1892,1911,1930,1950,1969],{"type":41,"tag":544,"props":1845,"children":1846},{},[1847,1855],{"type":41,"tag":566,"props":1848,"children":1849},{},[1850],{"type":41,"tag":90,"props":1851,"children":1853},{"className":1852},[],[1854],{"type":47,"value":1533},{"type":41,"tag":566,"props":1856,"children":1857},{},[1858,1863,1865,1871],{"type":41,"tag":90,"props":1859,"children":1861},{"className":1860},[],[1862],{"type":47,"value":1542},{"type":47,"value":1864}," or ",{"type":41,"tag":90,"props":1866,"children":1868},{"className":1867},[],[1869],{"type":47,"value":1870},"update",{"type":47,"value":1872},", depending on the available automation tool",{"type":41,"tag":544,"props":1874,"children":1875},{},[1876,1884],{"type":41,"tag":566,"props":1877,"children":1878},{},[1879],{"type":41,"tag":90,"props":1880,"children":1882},{"className":1881},[],[1883],{"type":47,"value":1554},{"type":41,"tag":566,"props":1885,"children":1886},{},[1887],{"type":41,"tag":90,"props":1888,"children":1890},{"className":1889},[],[1891],{"type":47,"value":1491},{"type":41,"tag":544,"props":1893,"children":1894},{},[1895,1903],{"type":41,"tag":566,"props":1896,"children":1897},{},[1898],{"type":41,"tag":90,"props":1899,"children":1901},{"className":1900},[],[1902],{"type":47,"value":1574},{"type":41,"tag":566,"props":1904,"children":1905},{},[1906],{"type":41,"tag":90,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":47,"value":1583},{"type":41,"tag":544,"props":1912,"children":1913},{},[1914,1922],{"type":41,"tag":566,"props":1915,"children":1916},{},[1917],{"type":41,"tag":90,"props":1918,"children":1920},{"className":1919},[],[1921],{"type":47,"value":403},{"type":41,"tag":566,"props":1923,"children":1924},{},[1925],{"type":41,"tag":90,"props":1926,"children":1928},{"className":1927},[],[1929],{"type":47,"value":1603},{"type":41,"tag":544,"props":1931,"children":1932},{},[1933,1941],{"type":41,"tag":566,"props":1934,"children":1935},{},[1936],{"type":41,"tag":90,"props":1937,"children":1939},{"className":1938},[],[1940],{"type":47,"value":1615},{"type":41,"tag":566,"props":1942,"children":1943},{},[1944],{"type":41,"tag":90,"props":1945,"children":1947},{"className":1946},[],[1948],{"type":47,"value":1949},"FREQ=MINUTELY;INTERVAL=1",{"type":41,"tag":544,"props":1951,"children":1952},{},[1953,1961],{"type":41,"tag":566,"props":1954,"children":1955},{},[1956],{"type":41,"tag":90,"props":1957,"children":1959},{"className":1958},[],[1960],{"type":47,"value":1636},{"type":41,"tag":566,"props":1962,"children":1963},{},[1964],{"type":41,"tag":90,"props":1965,"children":1967},{"className":1966},[],[1968],{"type":47,"value":1645},{"type":41,"tag":544,"props":1970,"children":1971},{},[1972,1980],{"type":41,"tag":566,"props":1973,"children":1974},{},[1975],{"type":41,"tag":90,"props":1976,"children":1978},{"className":1977},[],[1979],{"type":47,"value":1657},{"type":41,"tag":566,"props":1981,"children":1982},{},[1983],{"type":41,"tag":90,"props":1984,"children":1986},{"className":1985},[],[1987],{"type":47,"value":1988},"Resume provisioning DigitalOcean droplet \u003Cname> (\u003Cdroplet_id>). Start at Step 8: check whether it is active and has a public IPv4 address, then continue the workflow. If it is still not ready, schedule another 1-minute heartbeat. The droplet bills hourly until deleted.",{"type":41,"tag":50,"props":1990,"children":1991},{},[1992],{"type":47,"value":1993},"Keep all status checks with the DigitalOcean app — do not use doctl or any other\ntool to check droplet status.",{"type":41,"tag":62,"props":1995,"children":1997},{"id":1996},"step-9-configure-local-ssh",[1998],{"type":47,"value":1999},"Step 9 — Configure local SSH",{"type":41,"tag":336,"props":2001,"children":2003},{"className":338,"code":2002,"language":340,"meta":341,"style":341},"python3 \u003Cskill_dir>\u002Fscripts\u002Fconfigure_ssh.py \\\n  --alias codex-\u003Cprefix> \\\n  --ip \u003Cip> \\\n  --user root \\\n  --key-path \u003Ckey_path>\n",[2004],{"type":41,"tag":90,"props":2005,"children":2006},{"__ignoreMap":341},[2007,2040,2076,2106,2124],{"type":41,"tag":347,"props":2008,"children":2009},{"class":349,"line":350},[2010,2014,2018,2022,2026,2030,2035],{"type":41,"tag":347,"props":2011,"children":2012},{"style":354},[2013],{"type":47,"value":357},{"type":41,"tag":347,"props":2015,"children":2016},{"style":360},[2017],{"type":47,"value":363},{"type":41,"tag":347,"props":2019,"children":2020},{"style":366},[2021],{"type":47,"value":369},{"type":41,"tag":347,"props":2023,"children":2024},{"style":372},[2025],{"type":47,"value":375},{"type":41,"tag":347,"props":2027,"children":2028},{"style":360},[2029],{"type":47,"value":380},{"type":41,"tag":347,"props":2031,"children":2032},{"style":366},[2033],{"type":47,"value":2034},"\u002Fscripts\u002Fconfigure_ssh.py",{"type":41,"tag":347,"props":2036,"children":2037},{"style":372},[2038],{"type":47,"value":2039}," \\\n",{"type":41,"tag":347,"props":2041,"children":2042},{"class":349,"line":29},[2043,2048,2053,2058,2063,2068,2072],{"type":41,"tag":347,"props":2044,"children":2045},{"style":366},[2046],{"type":47,"value":2047},"  --alias",{"type":41,"tag":347,"props":2049,"children":2050},{"style":366},[2051],{"type":47,"value":2052}," codex-",{"type":41,"tag":347,"props":2054,"children":2055},{"style":360},[2056],{"type":47,"value":2057},"\u003C",{"type":41,"tag":347,"props":2059,"children":2060},{"style":366},[2061],{"type":47,"value":2062},"prefi",{"type":41,"tag":347,"props":2064,"children":2065},{"style":372},[2066],{"type":47,"value":2067},"x",{"type":41,"tag":347,"props":2069,"children":2070},{"style":360},[2071],{"type":47,"value":380},{"type":41,"tag":347,"props":2073,"children":2074},{"style":372},[2075],{"type":47,"value":2039},{"type":41,"tag":347,"props":2077,"children":2079},{"class":349,"line":2078},3,[2080,2085,2089,2094,2098,2102],{"type":41,"tag":347,"props":2081,"children":2082},{"style":366},[2083],{"type":47,"value":2084},"  --ip",{"type":41,"tag":347,"props":2086,"children":2087},{"style":360},[2088],{"type":47,"value":363},{"type":41,"tag":347,"props":2090,"children":2091},{"style":366},[2092],{"type":47,"value":2093},"i",{"type":41,"tag":347,"props":2095,"children":2096},{"style":372},[2097],{"type":47,"value":50},{"type":41,"tag":347,"props":2099,"children":2100},{"style":360},[2101],{"type":47,"value":380},{"type":41,"tag":347,"props":2103,"children":2104},{"style":372},[2105],{"type":47,"value":2039},{"type":41,"tag":347,"props":2107,"children":2109},{"class":349,"line":2108},4,[2110,2115,2120],{"type":41,"tag":347,"props":2111,"children":2112},{"style":366},[2113],{"type":47,"value":2114},"  --user",{"type":41,"tag":347,"props":2116,"children":2117},{"style":366},[2118],{"type":47,"value":2119}," root",{"type":41,"tag":347,"props":2121,"children":2122},{"style":372},[2123],{"type":47,"value":2039},{"type":41,"tag":347,"props":2125,"children":2127},{"class":349,"line":2126},5,[2128,2133,2137,2142,2147],{"type":41,"tag":347,"props":2129,"children":2130},{"style":366},[2131],{"type":47,"value":2132},"  --key-path",{"type":41,"tag":347,"props":2134,"children":2135},{"style":360},[2136],{"type":47,"value":363},{"type":41,"tag":347,"props":2138,"children":2139},{"style":366},[2140],{"type":47,"value":2141},"key_pat",{"type":41,"tag":347,"props":2143,"children":2144},{"style":372},[2145],{"type":47,"value":2146},"h",{"type":41,"tag":347,"props":2148,"children":2149},{"style":360},[2150],{"type":47,"value":2151},">\n",{"type":41,"tag":50,"props":2153,"children":2154},{},[2155,2160,2162,2168,2170,2182,2184,2188],{"type":41,"tag":56,"props":2156,"children":2157},{},[2158],{"type":47,"value":2159},"⚠️ Do not interrupt this step.",{"type":47,"value":2161}," It waits for cloud-init to finish (up to 7\nminutes) and prints a ",{"type":41,"tag":90,"props":2163,"children":2165},{"className":2164},[],[2166],{"type":47,"value":2167},"⏳",{"type":47,"value":2169}," status line every 5 seconds — that output means it is\nworking normally. ",{"type":41,"tag":56,"props":2171,"children":2172},{},[2173,2175,2181],{"type":47,"value":2174},"Do not run any other commands. Wait for the line\n",{"type":41,"tag":90,"props":2176,"children":2178},{"className":2177},[],[2179],{"type":47,"value":2180},"DROPLET READY",{"type":47,"value":297},{"type":47,"value":2183}," If the script exits with an error instead, report it and\noffer to delete the droplet (see ",{"type":41,"tag":123,"props":2185,"children":2186},{},[2187],{"type":47,"value":127},{"type":47,"value":2189},").",{"type":41,"tag":62,"props":2191,"children":2193},{"id":2192},"final-step-adding-it-to-codex",[2194],{"type":47,"value":2195},"Final step: adding it to Codex",{"type":41,"tag":50,"props":2197,"children":2198},{},[2199,2201,2207,2209,2214],{"type":47,"value":2200},"Ask Codex to open the add-SSH-host flow by responding with a clickable Markdown\nlink. Replace ",{"type":41,"tag":90,"props":2202,"children":2204},{"className":2203},[],[2205],{"type":47,"value":2206},"\u003Cssh-alias>",{"type":47,"value":2208}," with ",{"type":41,"tag":90,"props":2210,"children":2212},{"className":2211},[],[2213],{"type":47,"value":403},{"type":47,"value":2215}," from step 2:",{"type":41,"tag":50,"props":2217,"children":2218},{},[2219],{"type":41,"tag":90,"props":2220,"children":2222},{"className":2221},[],[2223],{"type":47,"value":2224},"[Add \u003Cssh-alias> to Codex SSH](codex:\u002F\u002Fsettings\u002Fconnections\u002Fssh\u002Fadd?name=\u003Cssh-alias>)",{"type":41,"tag":50,"props":2226,"children":2227},{},[2228,2230,2235],{"type":47,"value":2229},"The SSH alias is the local host alias created by step 9. In this workflow, it is\nthe same value as the droplet name: ",{"type":41,"tag":90,"props":2231,"children":2233},{"className":2232},[],[2234],{"type":47,"value":464},{"type":47,"value":297},{"type":41,"tag":50,"props":2237,"children":2238},{},[2239,2241],{"type":47,"value":2240},"If the link does not open the flow, or if the user wants to check it manually,\ntell them to open: ",{"type":41,"tag":56,"props":2242,"children":2243},{},[2244],{"type":47,"value":2245},"Codex App → Settings → Connections → Add SSH Host → pick\nthe alias → choose the remote folder.",{"type":41,"tag":62,"props":2247,"children":2249},{"id":2248},"cleanup-on-failure-or-when-done",[2250],{"type":47,"value":2251},"Cleanup (on failure or when done)",{"type":41,"tag":50,"props":2253,"children":2254},{},[2255],{"type":47,"value":2256},"The droplet bills hourly until deleted. To tear down:",{"type":41,"tag":2258,"props":2259,"children":2260},"ol",{},[2261,2292],{"type":41,"tag":73,"props":2262,"children":2263},{},[2264,2269,2271,2275,2276,2284,2286,2291],{"type":41,"tag":56,"props":2265,"children":2266},{},[2267],{"type":47,"value":2268},"Delete the droplet",{"type":47,"value":2270}," — ",{"type":41,"tag":56,"props":2272,"children":2273},{},[2274],{"type":47,"value":9},{"type":47,"value":524},{"type":41,"tag":56,"props":2277,"children":2278},{},[2279],{"type":41,"tag":90,"props":2280,"children":2282},{"className":2281},[],[2283],{"type":47,"value":322},{"type":47,"value":2285}," with\n",{"type":41,"tag":90,"props":2287,"children":2289},{"className":2288},[],[2290],{"type":47,"value":1735},{"type":47,"value":297},{"type":41,"tag":73,"props":2293,"children":2294},{},[2295,2300,2302,2306,2307,2315,2317,2322],{"type":41,"tag":56,"props":2296,"children":2297},{},[2298],{"type":47,"value":2299},"Delete the SSH key",{"type":47,"value":2301}," (optional) — ",{"type":41,"tag":56,"props":2303,"children":2304},{},[2305],{"type":47,"value":9},{"type":47,"value":524},{"type":41,"tag":56,"props":2308,"children":2309},{},[2310],{"type":41,"tag":90,"props":2311,"children":2313},{"className":2312},[],[2314],{"type":47,"value":295},{"type":47,"value":2316},"\nwith the ",{"type":41,"tag":90,"props":2318,"children":2320},{"className":2319},[],[2321],{"type":47,"value":624},{"type":47,"value":2323}," from step 3.",{"type":41,"tag":50,"props":2325,"children":2326},{},[2327],{"type":47,"value":2328},"Always confirm with the user before deleting. Do not use doctl for cleanup.",{"type":41,"tag":2330,"props":2331,"children":2332},"style",{},[2333],{"type":47,"value":2334},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2336,"total":350},[2337],{"slug":4,"name":4,"fn":5,"description":6,"org":2338,"tags":2339,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2340,2341,2342,2343],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"items":2345,"total":350},[2346],{"slug":4,"name":4,"fn":5,"description":6,"org":2347,"tags":2348,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2349,2350,2351,2352],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15}]