Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add nolte/claude-home-assistant --skill ha-conversation-agent-augmentgit clone --depth 1 https://github.com/nolte/claude-home-assistantWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/nolte/claude-home-assistant/ha-conversation-agent-augment)<a href="https://agentmods.dev/skills/nolte/claude-home-assistant/ha-conversation-agent-augment"><img src="https://agentmods.dev/badge/skills/nolte/claude-home-assistant/ha-conversation-agent-augment/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/nolte/claude-home-assistant/ha-conversation-agent-augment"><img src="https://agentmods.dev/badge/skills/nolte/claude-home-assistant/ha-conversation-agent-augment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00206 | $0.02376 |
| Opus 5 | $0.00103 | $0.01188 |
| Sonnet 5 | $0.00041 | $0.00475 |
| Haiku 4.5 | $0.00021 | $0.00238 |
Grade A, and why
ha-conversation-agent-augment scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
HA Conversation Agent Augment
Spec: spec/claude/ha-conversation-agent-augment/en.md (EN canonical) / spec/claude/ha-conversation-agent-augment/de.md (DE translation).
Why this is a skill, not an agent
- Human-visible augmentation surface — the user describes a Voice & AI capability and reads back the generated handlers/entity/tools and the conformance report; a skill keeps this on the visible command surface, like the sibling augment skills (
ha-config-flow-augment,ha-coordinator-add,ha-device-automation-add). - Scope decision up front — which of the three surfaces (intents / conversation entity / LLM tools) and, for tools, expose-vs-consume, is a per-run dialogue the user approves before any generation; that belongs in the working context.
- Bounded, inline generation — intent handlers, one
conversation.py, and a smallllm.APIwith its tools fit inline; no isolated agent context is needed. - Counter-dimension considered: the draft→validate loop could be an agent, but the surface-scope decision and the two-axis separation belong in the user's working context; skill wins.
When this skill activates
Use this skill to add one or more Voice & AI surfaces — intent handlers, a conversation agent, and/or LLM API tools — to an existing integration, so its devices respond to Assist sentences and/or it exposes tools to the assistant.
When NOT to activate
- Assist satellite / STT / TTS / wake-word entities →
ha/entity-platforms-voice - a registered service with its own schema →
ha-service-definition-add/ha/services - translation of intent sentences / response / prompt texts →
ha/translations - greenfield integration scaffolding →
ha-integration-scaffold - deploying/importing into a running HA instance → out of scope
Hard rules
- Decide scope first. Resolve with the user which surface(s) are in scope — intents, a conversation entity, and/or LLM tools — and, for tools, the role: expose an
llm.APIvs. consume an API. Keep the two axes (intents/conversation vs. tools) separated. - Read
spec/ha/intents-conversation/en.mdandspec/ha/llm-api/en.mdfirst (at least the in-scope one). Do not generate from memory. - Intent handler contract. Every handler derives from
homeassistant.helpers.intent.IntentHandler, setsintent_type, is registered viaintent.async_register(hass, handler)inasync_setup/async_setup_entry(never in platform modules), andasync_handle(self, intent_obj) -> IntentResponsereturns anIntentResponse— neverNoneor a raw string. Read slots viaintent_obj.slots["<name>"]["value"]; declare aslot_schemafor expected slots. - Built-in intents, no deprecated ones. Implement domain-appropriate built-in intents (
HassTurnOn/HassTurnOff/HassGetState), treatingHassTurnOn/HassTurnOffslots as optional; never re-implement deprecated intents (HassToggle,HassOpenCover, …). - Speech & response type. Create the response via
intent_obj.create_response()+response.async_set_speech(...); speech is onlyplainorssml; set the correctresponse_type(action_done/query_answer/error) and a validdata.code(no_intent_match/no_valid_targets/failed_to_handle/unknown) on error. - Conversation entity. A conversation agent lives in
conversation.py, derives fromconversation.ConversationEntity, declaressupported_languages(list[str]or"*"), and implements_async_handle_message(self, user_input, chat_log) -> ConversationResult— not the deprecatedasync_process. SetConversationEntityFeature.CONTROLonly when the agent actually controls HA; perform no I/O in property getters. - LLM tool contract. Every tool derives from
llm.Tool, carries aname, implements asyncasync_call(self, hass, tool_input, llm_context), returns a JSON-serializableJsonObjectType, and raises errors asHomeAssistantError— no in-band error codes. A custom API inherits fromAPI, implementsasync_get_api_instance(self, llm_context) -> APIInstance(with the requiredapi_prompt), is registered viallm.async_register_api(hass, api)with a uniqueid/name, and is unregistered viaentry.async_on_unload(unreg). - Localization out of code. Keep localized sentences/response/prompt texts out of handler/tool code — sentences in
intents/<lang>.yaml(seespec/ha/translations/en.md). - Name per
spec/ha/naming-conventions/en.mdand verify HA internals against the official docs (seespec/ha/upstream-docs-verification/en.md).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 112 lines · 206 tokens per session scan A 90a122873ca9
ha-conversation-agent-augment is a skill published in the GitHub repository nolte/claude-home-assistant (1 stars, last pushed 1mo ago), licensed MIT. It adds 206 tokens to every session and 2,376 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
authentication-patterns
OAuth 2.0, JWT, SSO, MFA, NextAuth/Clerk/Supabase Auth implementation patterns.
email-systems
Transactional email (Resend, SendGrid, SES), templates (React Email, MJML), deliverability (SPF/DKIM/DMARC), and inboxing best practices. Use when building email infrastructure, designing templates, or troubleshooting deliverability.
event-driven-architecture
Kafka, RabbitMQ, SQS/SNS, event sourcing, CQRS, saga patterns, dead letter queues, and idempotency. Use when designing asynchronous systems, implementing message-driven workflows, or building event streaming pipelines.
graphql-expert
GraphQL API design and implementation. Use when building GraphQL APIs, designing schemas, implementing resolvers, or optimizing GraphQL performance.
api-design
REST and GraphQL API design best practices including OpenAPI specs. Use when designing APIs, documenting endpoints, or reviewing API architecture.
generic-fullstack-feature-developer
Guide feature development for full-stack applications with architecture focus. Covers Next.js App Router patterns, NestJS backend services, database models, data workflows, and seamless integration. Use when adding new features, refactoring existing code, or planning major changes.