Install the mintycloud deploy skill =================================== It teaches a coding agent to put a folder online: sign in, pack, deploy, check the page, read the logs. It needs no account set up first. The agent signs you in through your browser the first time it deploys. The short way ------------- Paste this to Claude: Install the mintycloud deploy skill. Fetch https://www.mintycloud.eu/skill and save it as ~/.claude/skills/deploy-to-mintycloud/SKILL.md, making the folder if it is not there. Then tell me it is installed. Then, in a new session, say: "deploy this to mintycloud". By hand, on macOS, Linux or WSL ------------------------------- mkdir -p ~/.claude/skills/deploy-to-mintycloud curl -fsSL https://www.mintycloud.eu/skill -o ~/.claude/skills/deploy-to-mintycloud/SKILL.md By hand, on Windows PowerShell ------------------------------ $dir = "$env:USERPROFILE\.claude\skills\deploy-to-mintycloud" New-Item -ItemType Directory -Force -Path $dir | Out-Null curl.exe -fsSL https://www.mintycloud.eu/skill -o "$dir\SKILL.md" Note the .exe. In Windows PowerShell, "curl" means something else. What it is ---------- One markdown file, no code, nothing to run, nothing installed on your machine. Read it before you install it: it is the same URL, https://www.mintycloud.eu/skill. An agent following it stores a token at ~/.local/state/mintycloud/token, or %LOCALAPPDATA%\mintycloud\token on Windows. Nothing else on your machine is touched. You are in charge of what it may do ----------------------------------- The first deploy asks you to approve it in your browser. That page shows what is asking and lets you choose what it may do and for how long. "Deploy only" can put code online and read logs; it cannot delete a site or see your balance. You can take that access away at any time, on the Access screen of your account.