From codepresso
Manage Codepresso cloud development EC2 instances from Codex or Claude Code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codepresso:cloud-devThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage your cloud development EC2 instance directly from Claude Code.
Manage your cloud development EC2 instance directly from Claude Code.
Check current status — Call the cloud_dev_status MCP tool to get the current state of the user's instance.
Present status and options — Show the user their instance status, then use AskUserQuestion to offer actions:
If instance is stopped:
If instance is running:
If no instance found or credentials error:
codepresso:setup or configuring AWS credentialsExecute the chosen action:
cloud_dev_start MCP tool. Report the public IP address when ready.
Format: "Your instance is now running at <public-ip>"cloud_dev_stop MCP tool. Confirm when stopped.
Format: "Your instance has been stopped."cloud_dev_list MCP tool. Display a table of all team instances with columns: Name, Email, State, IP.After action — If the user started an instance, remind them about the auto-stop Lambda: "Note: Your instance will auto-stop after being idle. No need to manually stop it."
Purpose=cloud-dev-env and Email=<git-email>ap-northeast-2 (configurable via cloudDev.region in ~/.codepresso/config.json)The cloudDev section in ~/.codepresso/config.json:
{
"cloudDev": {
"enabled": true,
"region": "ap-northeast-2",
"tagKey": "Email",
"purposeTag": "cloud-dev-env"
}
}
npx claudepluginhub code-presso/codepresso-ai-plugin --plugin codepressoGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.