79 lines
2.1 KiB
Markdown
79 lines
2.1 KiB
Markdown
# 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. 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?"*
|
||
|
||
## Commands
|
||
|
||
All commands take the game (`osrs` or `rs3`) as the first argument.
|
||
|
||
### `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"
|
||
```
|
||
|
||
## Flags
|
||
|
||
| Flag | Description |
|
||
|------|-------------|
|
||
| `--ironman` / `-i` | Ironman mode: hides GE prices, emphasizes drops, shops, and self-sufficient methods |
|
||
| `--raw` | Output raw wikitext instead of rendered markdown |
|
||
|
||
## Supported games
|
||
|
||
| Argument | Wiki |
|
||
|----------|------|
|
||
| `osrs` | [oldschool.runescape.wiki](https://oldschool.runescape.wiki) |
|
||
| `rs3` | [runescape.wiki](https://runescape.wiki) |
|