Agent skill
s-research
Research WoW addon development topics using CLI tools, Blizzard UI source, and documentation. Covers API discovery, pattern research, and Ace3 usage. Use when investigating unfamiliar APIs, finding Blizzard patterns, or learning. Triggers: research, find, search, API, Blizzard UI, documentation, Ace3.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/s-research
SKILL.md
Researching WoW APIs
Expert guidance for discovering and understanding World of Warcraft APIs and patterns.
Related Commands
- c-research - API research workflow
CLI Commands (Use These First)
MANDATORY: Always use CLI commands before manual exploration.
| Task | Command |
|---|---|
| Search APIs (Offline) | mech call api.search -i '{"query": "*Spell*"}' |
| API Info | mech call api.info -i '{"api_name": "C_Spell.GetSpellInfo"}' |
| List by Namespace | mech call api.list -i '{"namespace": "C_Spell"}' |
| Search Icons | mech call atlas.search -i '{"query": "sword"}' |
| API Stats | mech call api.stats |
Capabilities
- API Discovery — Search 5000+ WoW APIs offline using static definitions
- Blizzard UI Research — Find patterns in Blizzard's own Lua source code
- Ace3 Patterns — Guidance on using common addon libraries (AceDB, AceEvent, etc.)
- Icon/Atlas Search — Find UI assets and textures by name
Routing Logic
| Request type | Load reference |
|---|---|
| Offline API lookup patterns | references/api-research.md |
| Blizzard UI source patterns | references/blizzard-ui.md |
| Ace3 library patterns | references/ace3-patterns.md |
| CLI Reference | ../../docs/cli-reference.md |
Quick Reference
Search WoW APIs
mech call api.search -i '{"query": "GetItem*", "namespace": "C_Item"}'
Get Detailed API Info
mech call api.info -i '{"api_name": "C_Spell.GetSpellInfo"}'
Search Icons
mech call atlas.search -i '{"query": "sword", "limit": 10}'
Best Practices
- Search First: Use
api.searchbefore guessing API names. - Audit Blizzard: Use ripgrep on local wow-ui-source to see how Blizzard uses an API.
- Namespace Awareness: Most modern APIs are in
C_namespaces (e.g.,C_Timer,C_Spell).
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?