bat-adhoc
Run bot acceptance tests to validate MCP tools work correctly from a real AI agent's perspective. Use when testing PRs, detecting regressions, or verifying…
Create a git worktree in worktree/ subdirectory with up-to-date master
$ npx -y skills add homeassistant-ai/ha-mcp --skill wt --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/wtContext preview
The summary Claude sees to decide when to auto-load this skill.
Create a git worktree in worktree/ subdirectory with up-to-date master
name: wt description: Create a git worktree in worktree/ subdirectory with up-to-date master argument-hint: "<branch-name>" allowed-tools: Bash
Create a new worktree in `worktree/<branch-name>` with branch `<branch-name>`.
# Return to repo root cd "$(git rev-parse --show-toplevel)" # Pull latest master git checkout master git pull origin master # Create worktree git worktree add worktree/"$ARGUMENTS" -b "$ARGUMENTS" # Initialize submodules (skills-vendor) git -C worktree/"$ARGUMENTS" submodule update --init --recursive # Navigate to worktree cd worktree/"$ARGUMENTS" # Confirm location and branch echo "" echo "✅ Worktree created and ready:" echo " Location: $(pwd)" echo " Branch: $(git rev-parse --abbrev-ref HEAD)" echo "" echo "You can now work in this isolated environment."
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with Home Assistant. Using natural language, control smart home devices, query states, execute services and manage your automations.
Repo: homeassistant-ai/ha-mcp
Run bot acceptance tests to validate MCP tools work correctly from a real AI agent's perspective. Use when testing PRs, detecting regressions, or verifying…
Compare MCP tool behavior between target and baseline versions using pre-built and custom stories with diff-based triage.
Review a contribution PR for safety, quality, and readiness. Checks for security concerns, test coverage, size appropriateness, and intent alignment. Use when…
Find merged PR authors missing from README and update the contributors list after approval
Deep analysis of a single GitHub issue with codebase exploration, implementation planning, and architectural assessment. Use when you need to analyze a GitHub…
Implement a GitHub issue end-to-end — create a worktree branch, implement the feature with tests, create a draft PR, then iteratively resolve all CI failures…