# RuneScape Wiki — Claude Code Plugin Query the RuneScape Wiki directly from Claude Code. Look up items, quests, skill training guides, and live Grand Exchange prices for both **OSRS** and **RS3**, without leaving your terminal. ## Installation 1. Inside Claude Code, add the marketplace: ``` /plugin marketplace add https://git.samlab.cloud/sam/claude-plugin-runescape.git ``` 2. Install the plugin: ``` /plugins ``` Search for `wiki` and install **runescape-wiki**. > **Requires Go** to be installed. The plugin binary is built automatically on first use. ## What it does Once installed, Claude can use the RuneScape Wiki tools when you ask questions like: - *"How do I get an abyssal whip in OSRS?"* - *"What are the requirements for Plague's End in RS3?"* - *"What's the current GE price of a blue partyhat?"* - *"Show me a mining training guide for levels 50–70."* - *"I'm an ironman — how do I get dragon bones?"* ## How It Works This skill contains a CLI that gives Claude the ability to search the RS wikis & GE prices. Claude can then use the below commands to answer your questions: ### `item ` Look up an item's stats, equipment bonuses, drop sources, and Grand Exchange price. ``` rsw osrs item "abyssal whip" rsw rs3 item "dragon bones" --ironman ``` ### `quest ` Look up quest requirements, items needed, enemies to defeat, and rewards. ``` rsw osrs quest "Monkey Madness I" rsw rs3 quest "Plague's End" ``` ### `skill ` Fetch a skill training guide with section-by-section methods. Filter to a level range with `--level`. ``` rsw osrs skill mining rsw rs3 skill prayer --level 50-70 ``` ### `price ` Get live Grand Exchange prices including instant buy/sell, buy limit, and recent 1-hour trade volume. ``` rsw osrs price "abyssal whip" rsw rs3 price "blue partyhat" ```