Item price support

This commit is contained in:
2026-03-05 22:45:55 -06:00
parent 4282c2a770
commit d920a1e62d
15 changed files with 834 additions and 26 deletions

78
README.md Normal file
View File

@@ -0,0 +1,78 @@
# 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 5070."*
- *"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) |