HealIQ is a smart spell suggestion addon for Restoration Druids in World of Warcraft. It helps you prioritize your next healing spell based on current combat context, active HoTs, procs, and cooldowns.
- Displays optimal healing spell suggestions based on Wowhead Restoration Druid guide
- Tracks HoT durations (e.g. Lifebloom, Rejuvenation)
- Recognizes Clearcasting procs and emergency situations
- Shows Swiftmend combo opportunities and AoE healing priorities
- Alerts for cooldown-based healing (e.g. Wild Growth, Tranquility)
- Supports movement and configuration of suggestion UI
- Shows upcoming suggestions in a queue display
- Provides extensive strategy customization options
Enhanced Strategy Features:
- Efflorescence maintenance prioritization
- Smart Lifebloom tank management with bloom timing
- Clearcasting proc optimization
- Swiftmend + Wild Growth combo suggestions
- Grove Guardians charge pooling
- Wrath filler for mana restoration
- Configurable thresholds for all healing decisions
Note: HealIQ provides visual suggestions only. Due to Blizzard restrictions, spell casting must be done manually using your normal keybinds or action bars.
HealIQ is inspired by Hekili, but for healing. Designed with Restoration Druids in mind, support for other healers may be added later.
- Download from CurseForge using the CurseForge app or website
- Automatic updates and dependency management
- Download the latest release from GitHub Releases
- Unzip to your
Interface/AddOns/directory - Enable the addon in the WoW AddOn menu
- Type
/healiqfor basic options and slash commands (coming soon)
- UI icon is movable (drag-and-drop)
- Suggestions shown via a single icon by default
- Queue preview shows upcoming spell suggestions
- Extensive strategy customization via
/healiq strategycommands - Rule enable/disable via
/healiq rulescommands - All healing thresholds and priorities are tunable
Strategy Configuration:
- Access via
/healiq strategy listto see all settings - Modify with
/healiq strategy set <setting> <value> - Reset to optimal defaults with
/healiq strategy reset - See STRATEGY.md for detailed configuration guide
- DBM integration for upcoming damage phases
- Rule customization (enable/disable rules)
- Visual “queue” preview
- Support for hybrid Resto-DPS catweaving
Healing doesn’t follow a strict rotation, but there are patterns of optimal decision-making. HealIQ helps you build muscle memory and learn when to refresh HoTs, use procs, or prep cooldowns for big AoE.
This addon is written in Lua using the WoW AddOn API.
-
Quick Setup:
./setup-dev.sh
This script will install Lua, luacheck, and set up the development environment.
-
Manual Setup:
# Install dependencies (Ubuntu/Debian) sudo apt-get install lua5.1 luarocks sudo luarocks install luacheck # Or on macOS with Homebrew brew install lua luarocks luarocks install luacheck
This project uses automated linting to catch issues early:
- Pre-commit hooks automatically run luacheck before each commit
- CI/CD pipeline runs comprehensive linting on all pull requests
- Local linting: Run
luacheck *.luato check your code
# Run the main test suite
lua5.1 test_runner.lua
# Run basic validation
lua5.1 Tests.lua
# Run loading order tests (regression test for issue #98)
lua5.1 test_loading_order.lua- Fork the repository
- Create a feature branch:
git checkout -b feature-name - Make your changes (linting will run automatically on commit)
- Run tests:
lua5.1 test_runner.lua - Submit a pull request
The pre-commit hook will prevent commits with linting issues. To bypass temporarily (not recommended): git commit --no-verify
Contributions and suggestions welcome via Issues and PRs.
MIT License