ha-indygo-pool AGENTS.md

ha-indygo-pool AGENTS.md is an instructions file for Codex, OpenCode from FunFR/ha-indygo-pool. It costs 932 tokens per session, scanned A, original, Apache-2.0.

Project-specific development instructions for FunFR/ha-indygo-pool, a Home Assistant integration project. They describe its coding principles, structure, workflow, and release practices.

In plain words
What is it for?
Use them when modifying the integration, especially its polling, configuration flows, HTTP requests, translations, constants, and verification process.
Why use it?
They give coding agents the local rules needed to make changes that fit the project and avoid common Home Assistant or testing mistakes.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/funfr/ha-indygo-pool/agents-md
Clone the repo
git clone --depth 1 https://github.com/FunFR/ha-indygo-pool

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for ha-indygo-pool AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/funfr/ha-indygo-pool/agents-md.svg)](https://agentmods.dev/instructions/funfr/ha-indygo-pool/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/funfr/ha-indygo-pool/agents-md"><img src="https://agentmods.dev/badge/instructions/funfr/ha-indygo-pool/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 932 This file is loaded in full into every session.
When invoked 932 The same file โ€” it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00932 $0.00932
Opus 5 $0.00466 $0.00466
Sonnet 5 $0.00186 $0.00186
Haiku 4.5 $0.00093 $0.00093

Measured 4d ago against content hash 3e5da91672b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ha-indygo-pool AGENTS.md 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 4d 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.

AGENTS.md ยท 44 lines

How it starts

The opening of the file, as written. The whole thing โ€” 44 lines โ€” stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md

This file serves as a guide for AI agents working on the ha-indygo-pool project. Follow these instructions to ensure consistency, quality, and maintainability.

๐Ÿง  Philosophy & Principles

  • KISS (Keep It Simple, Stupid): Avoid over-engineering. Solutions should be simple and easy to understand.
  • DRY (Don't Repeat Yourself): Reuse code where possible. Extract common logic into helper functions or classes.
  • Modern Home Assistant Architecture: Follow the latest Home Assistant Developer Docs. Use DataUpdateCoordinator for polling, config flows for setup, and standard entity platforms.
    • HTTP Requests: ALWAYS use homeassistant.helpers.aiohttp_client.async_create_clientsession or async_get_clientsession instead of instantiating aiohttp.ClientSession directly.
    • Entity Translations: Use translation_key in entity descriptions. DO NOT hardcode English strings in the name attribute of EntityDescriptions if a translation key is present.
    • Constants: Use native HA constants (e.g., UnitOfTime.HOURS) instead of hardcoded strings whenever possible.
  • Test-Driven Mental Model: Always verify changes. If you break it, you buy it.

๐Ÿ“‚ Project Structure & Responsibilities

  • api.py: Contains ALL core logic for interacting with the MyIndygo API. No Home Assistant code here.
  • coordinator.py: Handles data fetching and caching using DataUpdateCoordinator. Maps API data to a format usable by entities.
  • entity.py: Base entity class to share CoordinatorEntity logic and device_info across all platforms.
  • sensor.py / binary_sensor.py: Entity platform definitions. Should be thin wrappers around data from the coordinator.
  • config_flow.py: Handles integration setup and option flows.
  • diagnostics.py: Generates diagnostic data for easier troubleshooting.
  • strings.json: Contains ALL user-facing strings (labels, descriptions, errors). NEVER hardcode strings in Python files.
  • tests/: Contains pytest tests. Mirror the source structure.

Read the full file on GitHub ยท 44 lines

Changes

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.

  1. 4d ago First seen ยท 44 lines ยท 932 tokens per session scan A 3e5da91672b5

Subscribe to this mod's changes

ha-indygo-pool AGENTS.md is an instructions file published in the GitHub repository FunFR/ha-indygo-pool (11 stars, last pushed 5d ago), licensed Apache-2.0. It adds 932 tokens to every session, about $0.0047 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-30.

Related

Other instructions, from other repositories

ha-mcp AGENTS.md

AGENTS.md instructions for homeassistant-ai/ha-mcp, covering agents.md, instruction structure, repository structure, worktree workflow and project overview.

homeassistant-ai/ha-mcp ยท 2,867 tokens

ha-selora-ai CLAUDE.md

Claude Code instructions for SeloraHomes/ha-selora-ai, covering selora ai โ€” home assistant integration, what this is, architecture, project structure and key conventions.

SeloraHomes/ha-selora-ai ยท 32,124 tokens

ecowitt_local CLAUDE.md

Claude Code instructions for alexlenk/ecowitt_local, covering claude.md, project overview, โš ๏ธ critical: entity creation pipeline issues, development commands and local environment.

alexlenk/ecowitt_local ยท 9,707 tokens

hacs.integration_blueprint AGENTS.md

Instructions for jpawlowski/hacs.integration_blueprint, covering ai agent instructions, which repository is this?, project overview, where the rules live and routing table.

jpawlowski/hacs.integration_blueprint ยท 7,306 tokens

OVO_Aus_api AGENTS.md

Instructions for HallyAus/OVO_Aus_api, covering ovo energy australia (ha integration) โ€” agent brief, what a mistake costs, stack, run it and where things live.

HallyAus/OVO_Aus_api ยท 2,130 tokens

hass-mcp-server AGENTS.md

AGENTS.md instructions for ganhammar/hass-mcp-server, covering working on this integration, calling into home assistant, before replacing a private call with a service, anything left in category 2 or 3 and conventions.

ganhammar/hass-mcp-server ยท 863 tokens