debug — connected-home Linus-Dashboard, community, connected-home, ide skills, custom-dashboard, dashboard, domotics, hacs-integration, hass-magic-areas, home-assistant

v1.0.0

Über diesen Skill

Perfekt für Home Assistant-Integration Agents, die eine systematische Fehlersuche und eine umfassende Inhaltsanalyse benötigen. Debug errors, bugs, and unexpected behavior systematically in Home Assistant integration. Use when investigating errors, analyzing stack traces, fixing bugs, or troubleshooting unexpected behavior.

# Core Topics

Thank-you-Linus Thank-you-Linus
[181]
[5]
Updated: 3/17/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
52
Canonical Locale
en
Detected Body Locale
en

Perfekt für Home Assistant-Integration Agents, die eine systematische Fehlersuche und eine umfassende Inhaltsanalyse benötigen. Debug errors, bugs, and unexpected behavior systematically in Home Assistant integration. Use when investigating errors, analyzing stack traces, fixing bugs, or troubleshooting unexpected behavior.

Warum diese Fähigkeit verwenden

Ermöglicht es den Agents, Fehler, Bugs und unerwartetes Verhalten in Home Assistant-Integrationen mithilfe von Linus Dashboard systematisch zu debuggen, indem sie saubere Code-Standards und asynchrone Muster befolgen und den Arbeitsablauf mit Projektarchitekturkenntnissen optimieren.

Am besten geeignet für

Perfekt für Home Assistant-Integration Agents, die eine systematische Fehlersuche und eine umfassende Inhaltsanalyse benötigen.

Handlungsfähige Anwendungsfälle for debug

Fehlersuche in Home Assistant-Integrationen
Analyse von umfassendem Inhalt zur Leistungsverbesserung des Systems
Systematische Identifizierung und Behebung von Problemen in Linus Dashboard

! Sicherheit & Einschränkungen

  • Benötigt Kenntnisse über die Integrationsmuster von Home Assistant
  • Benötigt Zugriff auf die Projektarchitektur und saubere Code-Standards
  • Begrenzt auf die Fehlersuche in Home Assistant-Integrationen mit Linus Dashboard

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is debug?

Perfekt für Home Assistant-Integration Agents, die eine systematische Fehlersuche und eine umfassende Inhaltsanalyse benötigen. Debug errors, bugs, and unexpected behavior systematically in Home Assistant integration. Use when investigating errors, analyzing stack traces, fixing bugs, or troubleshooting unexpected behavior.

How do I install debug?

Run the command: npx killer-skills add Thank-you-Linus/Linus-Dashboard/debug. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for debug?

Key use cases include: Fehlersuche in Home Assistant-Integrationen, Analyse von umfassendem Inhalt zur Leistungsverbesserung des Systems, Systematische Identifizierung und Behebung von Problemen in Linus Dashboard.

Which IDEs are compatible with debug?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for debug?

Benötigt Kenntnisse über die Integrationsmuster von Home Assistant. Benötigt Zugriff auf die Projektarchitektur und saubere Code-Standards. Begrenzt auf die Fehlersuche in Home Assistant-Integrationen mit Linus Dashboard.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Thank-you-Linus/Linus-Dashboard/debug. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use debug immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

debug

Install debug, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Debug Errors and Bugs Systematically

Debug errors, bugs, and unexpected behavior in the Linus Dashboard Home Assistant integration.


Context Loading

Before debugging, load:

  1. .aidriven/memorybank.md - Project architecture
  2. .aidriven/rules/clean_code.md - Code standards
  3. .aidriven/rules/homeassistant_integration.md - HA patterns
  4. .aidriven/rules/async_patterns.md - Async best practices

Debug Process

Step 1: Understand the Error

Collect Information:

  • Error message (full stack trace)
  • When does it occur? (startup, service call, state change)
  • Which file/function is involved?
  • User actions that trigger it
  • Home Assistant version and logs

Questions to Ask:

  1. Is this a Python exception or HA-specific error?
  2. Does the error occur consistently or randomly?
  3. Are there related errors in home-assistant.log?
  4. What changed recently (code, config, HA version)?

Step 2: Analyze Root Cause

Common Error Categories:

1. Async/Await Issues

python
1# Symptoms: 2# - "coroutine was never awaited" 3# - Event loop blocking 4# - Timeouts 5 6# Check for: 7await missing_function() # Missing await 8blocking_io_call() # Blocking I/O in async context

2. Home Assistant Integration Errors

python
1# Symptoms: 2# - Integration fails to load 3# - Config flow errors 4# - Entity not showing up 5 6# Check for: 7# - Missing async_setup_entry/async_unload_entry 8# - Incorrect platform registration 9# - Missing unique_id on entities 10# - Data not stored in hass.data correctly

3. API/Network Errors

python
1# Symptoms: 2# - Connection refused 3# - Timeouts 4# - 4xx/5xx HTTP errors 5 6# Check for: 7# - Supabase URL/key configuration 8# - Network connectivity 9# - API rate limits 10# - Timeout values

Step 3: Investigate

Review Code:

  • Read the file where error occurs
  • Trace the execution path
  • Check function signatures
  • Review recent changes with git log

Check Logs:

bash
1# Home Assistant logs 2tail -f /config/home-assistant.log | grep linus 3 4# Check for warnings 5grep -i "warning.*linus" /config/home-assistant.log

Add Debug Logging:

python
1import logging 2_LOGGER = logging.getLogger(__name__) 3 4_LOGGER.debug("Variable value: %s", variable) 5_LOGGER.info("Entering function with args: %s", args)

Step 4: Fix the Issue

Apply Fix:

  • Make minimal changes to fix root cause
  • Follow code standards from .aidriven/rules/clean_code.md
  • Add error handling if missing
  • Update documentation if behavior changed

Test the Fix:

  1. Restart Home Assistant
  2. Reproduce the original error scenario
  3. Verify error is gone
  4. Check logs for new errors
  5. Test related functionality

Step 5: Verify and Document

Verification:

  • Error no longer occurs
  • No new errors introduced
  • Related features still work
  • Logs are clean

Documentation:

  • Update inline comments if needed
  • Note the fix in commit message
  • Update CHANGELOG if user-facing

Common Issues and Solutions

Issue: "coroutine was never awaited"

Solution: Add await before async function calls

python
1# Before 2result = async_function() 3 4# After 5result = await async_function()

Issue: Integration doesn't load

Solution: Check entry setup and platform registration

python
1# Ensure proper setup 2async def async_setup_entry(hass, entry): 3 await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) 4 return True

Issue: Entity not updating

Solution: Verify state updates and coordinator refresh

python
1# Ensure coordinator updates 2await self.coordinator.async_request_refresh()

Issue: Timeout errors

Solution: Increase timeout or optimize slow operations

python
1# Add proper timeout 2async with timeout(30): 3 result = await slow_operation()

Debug Tools

Home Assistant Developer Tools:

  • Services tab - Test service calls
  • States tab - Check entity states
  • Events tab - Monitor events
  • Template tab - Test templates

Python Debugging:

python
1# Add breakpoint (if debugging locally) 2import pdb; pdb.set_trace() 3 4# Add detailed logging 5_LOGGER.debug("State: %s, Attrs: %s", self.state, self.extra_state_attributes)

Git Tools:

bash
1# Find when bug was introduced 2git log --oneline -- path/to/file.py 3 4# Check recent changes 5git diff HEAD~5 -- path/to/file.py

Checklist

Before completing debug:

  • Root cause identified
  • Fix implemented following code standards
  • Error no longer reproduces
  • Related functionality tested
  • Logs reviewed for new issues
  • Changes documented

Verwandte Fähigkeiten

Looking for an alternative to debug or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler