npx claudepluginhub qmu/workaholic --plugin trippinThis skill is limited to using the following tools:
sh/find-cloud-md.shsh/merge-pr.shsh/pre-check.shMerge a pull request, deploy to production, and verify the deployment. Claude Code acts as the deployment agent, following instructions from a user-provided cloud.md file.
cloud.md is a project-level file authored by the user (not part of Workaholic). It tells the ship command how to deploy and verify.
bash ${CLAUDE_PLUGIN_ROOT}/skills/ship/sh/find-cloud-md.sh
Searches: ./cloud.md, ./.workaholic/cloud.md
## Deploy
Step-by-step deployment instructions for Claude Code to execute.
## Verify
Health checks, smoke tests, and expected outcomes.
Before executing deploy instructions, the ship command displays the Deploy section and asks for user confirmation via AskUserQuestion. If the user declines, deployment is skipped.
If no cloud.md is found, skip deploy and verify steps. Inform the user that deployment was skipped because no cloud.md was found.
bash ${CLAUDE_PLUGIN_ROOT}/skills/ship/sh/pre-check.sh "<branch>"
Verifies a PR exists for the branch. Returns JSON with PR number, URL, and merge status.
bash ${CLAUDE_PLUGIN_ROOT}/skills/ship/sh/merge-pr.sh "<pr-number>"
Merges the PR, checks out main, and pulls to sync. Returns JSON with merge status and commit hash.
bash ${CLAUDE_PLUGIN_ROOT}/skills/ship/sh/find-cloud-md.sh
Searches for cloud.md in standard locations. Returns JSON with path or {"found": false}.