diff --git a/docs/developer/docs/architecture.md b/docs/developer/docs/architecture.md index 77647ad..1a93778 100644 --- a/docs/developer/docs/architecture.md +++ b/docs/developer/docs/architecture.md @@ -6,7 +6,7 @@ comments: false This document provides a visual overview of the integration's architecture, focusing on end-to-end data flow and caching layers. -For detailed implementation patterns, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). +For detailed implementation patterns, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). --- @@ -355,4 +355,4 @@ Sensors organized by **calculation method** (refactored Nov 2025): - **[Setup Guide](./setup.md)** - Development environment setup - **[Testing Guide](./testing.md)** - How to test changes - **[Release Management](./release-management.md)** - Release workflow and versioning -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development diff --git a/docs/developer/docs/caching-strategy.md b/docs/developer/docs/caching-strategy.md index b7b1ea7..40d7386 100644 --- a/docs/developer/docs/caching-strategy.md +++ b/docs/developer/docs/caching-strategy.md @@ -444,4 +444,4 @@ Options Update - **[Timer Architecture](./timer-architecture.md)** - Timer system, scheduling, midnight coordination - **[Architecture](./architecture.md)** - Overall system design, data flow -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development diff --git a/docs/developer/docs/coding-guidelines.md b/docs/developer/docs/coding-guidelines.md index b520c33..a565afd 100644 --- a/docs/developer/docs/coding-guidelines.md +++ b/docs/developer/docs/coding-guidelines.md @@ -4,7 +4,7 @@ comments: false # Coding Guidelines -> **Note:** For complete coding standards, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). +> **Note:** For complete coding standards, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). ## Code Style @@ -75,7 +75,7 @@ Many existing classes lack the `TibberPrices` prefix. Before refactoring: 2. Use `multi_replace_string_in_file` for bulk renames 3. Test thoroughly after each module -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for complete list of classes needing rename. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for complete list of classes needing rename. ## Import Order @@ -118,4 +118,4 @@ enriched = enrich_price_info_with_differences( ) ``` -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for complete guidelines. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for complete guidelines. diff --git a/docs/developer/docs/intro.md b/docs/developer/docs/intro.md index c16d865..7837f7e 100644 --- a/docs/developer/docs/intro.md +++ b/docs/developer/docs/intro.md @@ -20,7 +20,7 @@ This is an independent, community-maintained custom integration for Home Assista ## 🤖 AI Documentation -The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). This file serves as long-term memory for AI assistants and contains: +The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). This file serves as long-term memory for AI assistants and contains: - Detailed architectural patterns - Code quality rules and conventions @@ -28,7 +28,7 @@ The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlow - Common pitfalls and anti-patterns - Project-specific patterns and utilities -**Important:** When proposing changes to patterns or conventions, always update [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) to keep AI guidance consistent. +**Important:** When proposing changes to patterns or conventions, always update [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) to keep AI guidance consistent. ### AI-Assisted Development @@ -61,7 +61,7 @@ This integration is developed with extensive AI assistance (GitHub Copilot, Clau - Translation quality depends on AI's understanding of target language - User feedback is crucial for discovering real-world issues -If you're working with AI tools on this project, the [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) file provides the context and patterns that ensure consistency. +If you're working with AI tools on this project, the [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) file provides the context and patterns that ensure consistency. ## 🚀 Quick Start for Contributors diff --git a/docs/developer/docs/refactoring-guide.md b/docs/developer/docs/refactoring-guide.md index 094fa13..2181fc8 100644 --- a/docs/developer/docs/refactoring-guide.md +++ b/docs/developer/docs/refactoring-guide.md @@ -302,7 +302,7 @@ This project uses AI heavily (GitHub Copilot, Claude). The planning process supp - `docs/development/`: Practical, focused, human-optimized - Both stay in sync but serve different audiences -See [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) section "Planning Major Refactorings" for AI-specific guidance. +See [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) section "Planning Major Refactorings" for AI-specific guidance. ## Tools and Resources diff --git a/docs/developer/docs/setup.md b/docs/developer/docs/setup.md index 4959d2b..d5f4d3f 100644 --- a/docs/developer/docs/setup.md +++ b/docs/developer/docs/setup.md @@ -1,6 +1,6 @@ # Development Setup -> **Note:** This guide is under construction. For now, please refer to [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for detailed setup information. +> **Note:** This guide is under construction. For now, please refer to [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for detailed setup information. ## Prerequisites @@ -54,4 +54,4 @@ Visit http://localhost:8123 ./scripts/release/hassfest ``` -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for detailed patterns and conventions. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for detailed patterns and conventions. diff --git a/docs/developer/docs/timer-architecture.md b/docs/developer/docs/timer-architecture.md index d848925..6abd1c1 100644 --- a/docs/developer/docs/timer-architecture.md +++ b/docs/developer/docs/timer-architecture.md @@ -410,7 +410,7 @@ _LOGGER.setLevel(logging.DEBUG) - **[Architecture](./architecture.md)** - Overall system design, data flow - **[Caching Strategy](./caching-strategy.md)** - Cache lifetimes, invalidation, midnight turnover -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development --- diff --git a/docs/developer/versioned_docs/version-v0.21.0/architecture.md b/docs/developer/versioned_docs/version-v0.21.0/architecture.md index 77647ad..1a93778 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/architecture.md +++ b/docs/developer/versioned_docs/version-v0.21.0/architecture.md @@ -6,7 +6,7 @@ comments: false This document provides a visual overview of the integration's architecture, focusing on end-to-end data flow and caching layers. -For detailed implementation patterns, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). +For detailed implementation patterns, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). --- @@ -355,4 +355,4 @@ Sensors organized by **calculation method** (refactored Nov 2025): - **[Setup Guide](./setup.md)** - Development environment setup - **[Testing Guide](./testing.md)** - How to test changes - **[Release Management](./release-management.md)** - Release workflow and versioning -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development diff --git a/docs/developer/versioned_docs/version-v0.21.0/caching-strategy.md b/docs/developer/versioned_docs/version-v0.21.0/caching-strategy.md index b7b1ea7..40d7386 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/caching-strategy.md +++ b/docs/developer/versioned_docs/version-v0.21.0/caching-strategy.md @@ -444,4 +444,4 @@ Options Update - **[Timer Architecture](./timer-architecture.md)** - Timer system, scheduling, midnight coordination - **[Architecture](./architecture.md)** - Overall system design, data flow -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development diff --git a/docs/developer/versioned_docs/version-v0.21.0/coding-guidelines.md b/docs/developer/versioned_docs/version-v0.21.0/coding-guidelines.md index b520c33..a565afd 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/coding-guidelines.md +++ b/docs/developer/versioned_docs/version-v0.21.0/coding-guidelines.md @@ -4,7 +4,7 @@ comments: false # Coding Guidelines -> **Note:** For complete coding standards, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). +> **Note:** For complete coding standards, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). ## Code Style @@ -75,7 +75,7 @@ Many existing classes lack the `TibberPrices` prefix. Before refactoring: 2. Use `multi_replace_string_in_file` for bulk renames 3. Test thoroughly after each module -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for complete list of classes needing rename. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for complete list of classes needing rename. ## Import Order @@ -118,4 +118,4 @@ enriched = enrich_price_info_with_differences( ) ``` -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for complete guidelines. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for complete guidelines. diff --git a/docs/developer/versioned_docs/version-v0.21.0/intro.md b/docs/developer/versioned_docs/version-v0.21.0/intro.md index 83de866..7837f7e 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/intro.md +++ b/docs/developer/versioned_docs/version-v0.21.0/intro.md @@ -20,7 +20,7 @@ This is an independent, community-maintained custom integration for Home Assista ## 🤖 AI Documentation -The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). This file serves as long-term memory for AI assistants and contains: +The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). This file serves as long-term memory for AI assistants and contains: - Detailed architectural patterns - Code quality rules and conventions @@ -28,7 +28,7 @@ The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlow - Common pitfalls and anti-patterns - Project-specific patterns and utilities -**Important:** When proposing changes to patterns or conventions, always update [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) to keep AI guidance consistent. +**Important:** When proposing changes to patterns or conventions, always update [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) to keep AI guidance consistent. ### AI-Assisted Development @@ -61,7 +61,7 @@ This integration is developed with extensive AI assistance (GitHub Copilot, Clau - Translation quality depends on AI's understanding of target language - User feedback is crucial for discovering real-world issues -If you're working with AI tools on this project, the [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) file provides the context and patterns that ensure consistency. +If you're working with AI tools on this project, the [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) file provides the context and patterns that ensure consistency. ## 🚀 Quick Start for Contributors @@ -174,11 +174,11 @@ Documentation is organized in two Docusaurus sites: ## 🤝 Contributing -See [CONTRIBUTING.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.21.0/CONTRIBUTING.md) for detailed contribution guidelines, code of conduct, and pull request process. +See [CONTRIBUTING.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/CONTRIBUTING.md) for detailed contribution guidelines, code of conduct, and pull request process. ## 📄 License -This project is licensed under the [MIT License](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.21.0/LICENSE). +This project is licensed under the [MIT License](https://github.com/jpawlowski/hass.tibber_prices/blob/main/LICENSE). --- diff --git a/docs/developer/versioned_docs/version-v0.21.0/period-calculation-theory.md b/docs/developer/versioned_docs/version-v0.21.0/period-calculation-theory.md index 4427987..66cd87b 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/period-calculation-theory.md +++ b/docs/developer/versioned_docs/version-v0.21.0/period-calculation-theory.md @@ -1106,7 +1106,7 @@ Low volatility (< 15%) means classification changes are less economically signif - [User Documentation: Period Calculation](https://jpawlowski.github.io/hass.tibber_prices/user/period-calculation) - [Architecture Overview](./architecture.md) - [Caching Strategy](./caching-strategy.md) -- [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.21.0/AGENTS.md) - AI assistant memory (implementation patterns) +- [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) - AI assistant memory (implementation patterns) ## Changelog diff --git a/docs/developer/versioned_docs/version-v0.21.0/refactoring-guide.md b/docs/developer/versioned_docs/version-v0.21.0/refactoring-guide.md index 094fa13..2181fc8 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/refactoring-guide.md +++ b/docs/developer/versioned_docs/version-v0.21.0/refactoring-guide.md @@ -302,7 +302,7 @@ This project uses AI heavily (GitHub Copilot, Claude). The planning process supp - `docs/development/`: Practical, focused, human-optimized - Both stay in sync but serve different audiences -See [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) section "Planning Major Refactorings" for AI-specific guidance. +See [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) section "Planning Major Refactorings" for AI-specific guidance. ## Tools and Resources diff --git a/docs/developer/versioned_docs/version-v0.21.0/setup.md b/docs/developer/versioned_docs/version-v0.21.0/setup.md index 4959d2b..d5f4d3f 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/setup.md +++ b/docs/developer/versioned_docs/version-v0.21.0/setup.md @@ -1,6 +1,6 @@ # Development Setup -> **Note:** This guide is under construction. For now, please refer to [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for detailed setup information. +> **Note:** This guide is under construction. For now, please refer to [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for detailed setup information. ## Prerequisites @@ -54,4 +54,4 @@ Visit http://localhost:8123 ./scripts/release/hassfest ``` -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for detailed patterns and conventions. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for detailed patterns and conventions. diff --git a/docs/developer/versioned_docs/version-v0.21.0/timer-architecture.md b/docs/developer/versioned_docs/version-v0.21.0/timer-architecture.md index d848925..6abd1c1 100644 --- a/docs/developer/versioned_docs/version-v0.21.0/timer-architecture.md +++ b/docs/developer/versioned_docs/version-v0.21.0/timer-architecture.md @@ -410,7 +410,7 @@ _LOGGER.setLevel(logging.DEBUG) - **[Architecture](./architecture.md)** - Overall system design, data flow - **[Caching Strategy](./caching-strategy.md)** - Cache lifetimes, invalidation, midnight turnover -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development --- diff --git a/docs/developer/versioned_docs/version-v0.22.0/architecture.md b/docs/developer/versioned_docs/version-v0.22.0/architecture.md index 77647ad..1a93778 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/architecture.md +++ b/docs/developer/versioned_docs/version-v0.22.0/architecture.md @@ -6,7 +6,7 @@ comments: false This document provides a visual overview of the integration's architecture, focusing on end-to-end data flow and caching layers. -For detailed implementation patterns, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). +For detailed implementation patterns, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). --- @@ -355,4 +355,4 @@ Sensors organized by **calculation method** (refactored Nov 2025): - **[Setup Guide](./setup.md)** - Development environment setup - **[Testing Guide](./testing.md)** - How to test changes - **[Release Management](./release-management.md)** - Release workflow and versioning -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development diff --git a/docs/developer/versioned_docs/version-v0.22.0/caching-strategy.md b/docs/developer/versioned_docs/version-v0.22.0/caching-strategy.md index b7b1ea7..40d7386 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/caching-strategy.md +++ b/docs/developer/versioned_docs/version-v0.22.0/caching-strategy.md @@ -444,4 +444,4 @@ Options Update - **[Timer Architecture](./timer-architecture.md)** - Timer system, scheduling, midnight coordination - **[Architecture](./architecture.md)** - Overall system design, data flow -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development diff --git a/docs/developer/versioned_docs/version-v0.22.0/coding-guidelines.md b/docs/developer/versioned_docs/version-v0.22.0/coding-guidelines.md index b520c33..a565afd 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/coding-guidelines.md +++ b/docs/developer/versioned_docs/version-v0.22.0/coding-guidelines.md @@ -4,7 +4,7 @@ comments: false # Coding Guidelines -> **Note:** For complete coding standards, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). +> **Note:** For complete coding standards, see [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). ## Code Style @@ -75,7 +75,7 @@ Many existing classes lack the `TibberPrices` prefix. Before refactoring: 2. Use `multi_replace_string_in_file` for bulk renames 3. Test thoroughly after each module -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for complete list of classes needing rename. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for complete list of classes needing rename. ## Import Order @@ -118,4 +118,4 @@ enriched = enrich_price_info_with_differences( ) ``` -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for complete guidelines. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for complete guidelines. diff --git a/docs/developer/versioned_docs/version-v0.22.0/intro.md b/docs/developer/versioned_docs/version-v0.22.0/intro.md index 1b52670..7837f7e 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/intro.md +++ b/docs/developer/versioned_docs/version-v0.22.0/intro.md @@ -20,7 +20,7 @@ This is an independent, community-maintained custom integration for Home Assista ## 🤖 AI Documentation -The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md). This file serves as long-term memory for AI assistants and contains: +The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md). This file serves as long-term memory for AI assistants and contains: - Detailed architectural patterns - Code quality rules and conventions @@ -28,7 +28,7 @@ The main AI/Copilot documentation is in [`AGENTS.md`](https://github.com/jpawlow - Common pitfalls and anti-patterns - Project-specific patterns and utilities -**Important:** When proposing changes to patterns or conventions, always update [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) to keep AI guidance consistent. +**Important:** When proposing changes to patterns or conventions, always update [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) to keep AI guidance consistent. ### AI-Assisted Development @@ -61,7 +61,7 @@ This integration is developed with extensive AI assistance (GitHub Copilot, Clau - Translation quality depends on AI's understanding of target language - User feedback is crucial for discovering real-world issues -If you're working with AI tools on this project, the [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) file provides the context and patterns that ensure consistency. +If you're working with AI tools on this project, the [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) file provides the context and patterns that ensure consistency. ## 🚀 Quick Start for Contributors @@ -174,11 +174,11 @@ Documentation is organized in two Docusaurus sites: ## 🤝 Contributing -See [CONTRIBUTING.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.22.0/CONTRIBUTING.md) for detailed contribution guidelines, code of conduct, and pull request process. +See [CONTRIBUTING.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/CONTRIBUTING.md) for detailed contribution guidelines, code of conduct, and pull request process. ## 📄 License -This project is licensed under the [MIT License](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.22.0/LICENSE). +This project is licensed under the [MIT License](https://github.com/jpawlowski/hass.tibber_prices/blob/main/LICENSE). --- diff --git a/docs/developer/versioned_docs/version-v0.22.0/period-calculation-theory.md b/docs/developer/versioned_docs/version-v0.22.0/period-calculation-theory.md index 7af6ea8..66cd87b 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/period-calculation-theory.md +++ b/docs/developer/versioned_docs/version-v0.22.0/period-calculation-theory.md @@ -1106,7 +1106,7 @@ Low volatility (< 15%) means classification changes are less economically signif - [User Documentation: Period Calculation](https://jpawlowski.github.io/hass.tibber_prices/user/period-calculation) - [Architecture Overview](./architecture.md) - [Caching Strategy](./caching-strategy.md) -- [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.22.0/AGENTS.md) - AI assistant memory (implementation patterns) +- [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) - AI assistant memory (implementation patterns) ## Changelog diff --git a/docs/developer/versioned_docs/version-v0.22.0/refactoring-guide.md b/docs/developer/versioned_docs/version-v0.22.0/refactoring-guide.md index 094fa13..2181fc8 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/refactoring-guide.md +++ b/docs/developer/versioned_docs/version-v0.22.0/refactoring-guide.md @@ -302,7 +302,7 @@ This project uses AI heavily (GitHub Copilot, Claude). The planning process supp - `docs/development/`: Practical, focused, human-optimized - Both stay in sync but serve different audiences -See [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) section "Planning Major Refactorings" for AI-specific guidance. +See [AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) section "Planning Major Refactorings" for AI-specific guidance. ## Tools and Resources diff --git a/docs/developer/versioned_docs/version-v0.22.0/setup.md b/docs/developer/versioned_docs/version-v0.22.0/setup.md index 4959d2b..d5f4d3f 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/setup.md +++ b/docs/developer/versioned_docs/version-v0.22.0/setup.md @@ -1,6 +1,6 @@ # Development Setup -> **Note:** This guide is under construction. For now, please refer to [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for detailed setup information. +> **Note:** This guide is under construction. For now, please refer to [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for detailed setup information. ## Prerequisites @@ -54,4 +54,4 @@ Visit http://localhost:8123 ./scripts/release/hassfest ``` -See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md) for detailed patterns and conventions. +See [`AGENTS.md`](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md) for detailed patterns and conventions. diff --git a/docs/developer/versioned_docs/version-v0.22.0/timer-architecture.md b/docs/developer/versioned_docs/version-v0.22.0/timer-architecture.md index d848925..6abd1c1 100644 --- a/docs/developer/versioned_docs/version-v0.22.0/timer-architecture.md +++ b/docs/developer/versioned_docs/version-v0.22.0/timer-architecture.md @@ -410,7 +410,7 @@ _LOGGER.setLevel(logging.DEBUG) - **[Architecture](./architecture.md)** - Overall system design, data flow - **[Caching Strategy](./caching-strategy.md)** - Cache lifetimes, invalidation, midnight turnover -- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/v0.20.0/AGENTS.md)** - Complete reference for AI development +- **[AGENTS.md](https://github.com/jpawlowski/hass.tibber_prices/blob/main/AGENTS.md)** - Complete reference for AI development ---