No description
Find a file
2026-06-10 02:17:43 +02:00
bin coa-db-skill: db.exil.es item/spell/NPC/quest lookup skill 2026-06-08 00:42:07 +02:00
skills/coa-db-skill skill: document /spells ?aura= filter (69 absorb, 354 heal-to-absorb proc, 301 heal-absorb) 2026-06-10 02:17:43 +02:00
.gitignore coa-db-skill: db.exil.es item/spell/NPC/quest lookup skill 2026-06-08 00:42:07 +02:00
README.md coa-db-skill: db.exil.es item/spell/NPC/quest lookup skill 2026-06-08 00:42:07 +02:00

coa-db-skill

An agent skill for looking up Conquest of Ascension (CoA) WoW items, spells, NPCs, and quests on db.exil.es — the CoA Guild "Exiles" database — via its public JSON API.

Works for Claude Code and the Sub-Net Sub-Bots. No credentials required; the db.exil.es API is public and read-only.

What's here

  • skills/coa-db-skill/SKILL.md — the skill (curl-based; API reference + workflow).
  • bin/coa-db — optional bash helper (coa-db search "…", coa-db item <id>, …).

Install

Claude Code

Symlink (or copy) the skill into your skills dir:

ln -s "$(pwd)/skills/coa-db-skill" ~/.claude/skills/coa-db-skill

Optionally put the helper on your PATH:

ln -s "$(pwd)/bin/coa-db" ~/.local/bin/coa-db

Sub-Bots

Drop skills/coa-db-skill/ into the bot's skills directory (the same place the other */SKILL.md skills live), or vendor this repo and point the loader at it. The skill only needs curl (and jq/python3 for pretty output).

Quick use

curl -s 'https://db.exil.es/api/v1/search?q=Neurotoxin%20Edge'
curl -s 'https://db.exil.es/api/v1/items/312518'
# or, with the helper:
coa-db search "Neurotoxin Edge"
coa-db item 312518

API base https://db.exil.es/api/v1; OpenAPI at https://db.exil.es/api/openapi.json. See skills/coa-db-skill/SKILL.md for the full endpoint reference.