This skill should be used when the user asks to "audit loot", "check treasure distribution", "review magic items", "is loot balanced", "treasure by level", "too much gold", "not enough magic items", "wealth check", or mentions "treasure placement", "loot tables", or "magic item distribution". Audits treasure and magic item placement across modules and character inventories to flag wealth imbalances, rarity mismatches, and loot gaps.
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
This skill should be used when the user asks to "audit loot", "check treasure distribution", "review magic items", "is loot balanced", "treasure by level", "too much gold", "not enough magic items", "wealth check", or mentions "treasure placement", "loot tables", or "magic item distribution". Audits treasure and magic item placement across modules and character inventories to flag wealth imbalances, rarity mismatches, and loot gaps.
Loot & Treasure Audit
Purpose
Analyze treasure and magic item distribution across the campaign to ensure appropriate wealth and power progression. Identify modules with no loot, excessive rewards, or missing item types.
Analysis Process
1. Gather All Loot Data
list_modules()
# For each module:
get_module_details(module_id)
# Extract: monsters (for hoard context) and documents.
# NOTE: modules do not track items directly (no loot field is returned).
# Intended treasure lives in the module's dm_notes/description documents —
# read those with read_document to find it.
# Check campaign-level documents for treasure references
list_documents() # omit module_id for campaign-level docs
list_characters(character_type: "npc")
# For each NPC:
get_character(character_id)
get_character_inventory(character_id)
# Extract: inventory items that might be loot
list_characters(character_type: "pc")
# For each PC:
get_character_inventory(character_id)
# Extract: items already awarded to players
2. Catalog Items
For each item found:
search_catalog(category: "item")(name: item_name)
Extract rarity, type (weapon, armor, wondrous, etc.), attunement requirement, and value.
For loot deserts, offer to search the catalog and record the treasure in the module's dm_notes document (module-level item tracking is not implemented), or hand items to an NPC/PC with add_item_to_character
For balance issues, suggest specific swaps
Reference Data
For gold-by-level guidelines and magic item tier expectations, see references/5e-treasure-guidelines.md.