원클릭으로
cpp-happy-check
Check if happy-cli is on the latest version
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check if happy-cli is on the latest version
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Flow: Auto - Full Issue Lifecycle in One Shot - Complete end-to-end workflow: start worktree → analyze issue → ELI5 plan + necessity gate → implement ...
Run quality checks (lint + test + typecheck + security) without committing
Flow: Finish - Quality Gates, Commit, Push, and Create PR - Run quality checks, commit changes, push the branch, and create a pull request.
Flow Commands - Streamlined worktree-based development workflow. No locks, no Redis - just git.
Flow: Merge PR and Clean Up - Merge the current branch's PR, then clean up the worktree and branch.
Diagnose flow workflow setup and environment
| name | cpp-happy-check |
| description | Check if happy-cli is on the latest version |
Check if the installed happy-cli is on the latest version and report status.
happy --version 2>&1 | grep -oP '(?<=happy version: )\S+' || echo "NOT_INSTALLED"
Use the GitHub API to get the latest release:
curl -s https://api.github.com/repos/slopus/happy-cli/releases/latest | grep -oP '"tag_name":\s*"v?\K[0-9.]+' || echo "FETCH_FAILED"
Compare the versions and output status:
Happy CLI Status: UP TO DATE
Installed: {version}
Latest: {version}
Happy CLI Status: UPDATE AVAILABLE
Installed: {installed_version}
Latest: {latest_version}
To update: npm update -g happy-coder
Happy CLI Status: NOT INSTALLED
To install: npm install -g happy-coder
Check if happy settings are valid:
cat ~/.happy/settings.json 2>/dev/null
Report if onboarding is incomplete:
onboardingCompleted: false: Note that onboarding needs to be completed=== Happy CLI Status ===
Version: {status}
Installed: {version}
Latest: {latest}
Settings: {status}
Onboarding: {completed/incomplete}
{action items if any}