Files
claude-plugin-runescape/README.md
2026-03-05 22:57:15 -06:00

67 lines
1.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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 5070."*
- *"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 <name>`
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 <name>`
Look up quest requirements, items needed, enemies to defeat, and rewards.
```
rsw osrs quest "Monkey Madness I"
rsw rs3 quest "Plague's End"
```
### `skill <name>`
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 <name>`
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"
```