원클릭으로
check
Check that required tools and env vars are configured for Home Assistant MCP
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check that required tools and env vars are configured for Home Assistant MCP
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | check |
| description | Check that required tools and env vars are configured for Home Assistant MCP |
Run a single bash command to check prerequisites and output ONLY the status report below. Do not add any commentary.
echo "Required tools:"
if command -v uv &>/dev/null; then
echo "- uv: installed"
else
echo "- uv: missing! Install with \`brew install uv\`"
fi
echo ""
echo "Required env vars:"
if [ -n "$HOMEASSISTANT_URL" ]; then
echo "- HOMEASSISTANT_URL: $HOMEASSISTANT_URL"
else
echo "- HOMEASSISTANT_URL: Not set!"
fi
if [ -n "$HOMEASSISTANT_TOKEN" ]; then
echo "- HOMEASSISTANT_TOKEN: exists"
else
echo "- HOMEASSISTANT_TOKEN: Not set!"
fi
Traces code history via git blame and log to explain why code exists in its current form. Use when asked about code history, reasoning behind changes, or "when/why did this change".
Commit changes with smart messages. Supports full and partial commits. Use whenever committing changes or handling pre-commit hook failures.
Use the gh CLI for GitHub interactions, plus setup and pushing. Use when interacting with GitHub, setting up GitHub tools, or pushing to remote.
Universal polyglot linting and per-project config management. Use when you need to lint files, understand tool selection logic, invoke linting from commands/agents, or manage mr-sparkle config.
Resolves git merge conflicts by analyzing intent from both sides. Use when merge conflicts are detected or when git operations fail with conflict errors.
Create a pull request with Problem/Solution format. Can optionally commit first. Use when opening PRs or when branch changes are ready for review.