Awesome-omni-skill loadstone-cli
Use the Loadstone CLI to search the RuneScape 3 Wiki for quests or item information and RuneMetrics for character information like levels, status, quests completion. Use when the user asks for RS3 wiki data, Ironman-focused answers, RuneMetrics stats, or when they want CLI command guidance for Loadstone.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/loadstone-cli" ~/.claude/skills/diegosouzapw-awesome-omni-skill-loadstone-cli && rm -rf "$T"
manifest:
skills/cli-automation/loadstone-cli/SKILL.mdsource content
Loadstone CLI Skill
Use this skill to operate the Loadstone CLI in this repository and return data from the RuneScape 3 Wiki or RuneMetrics in a user-friendly format.
When to use
- User asks for RS3 Wiki data (pages, categories, tables, training info)
- User asks for RuneMetrics profile or quest info
- User asks how to run or interpret Loadstone CLI commands
- User wants structured JSON output for LLM consumption
Required context
- Prefer
when the user wants structured output.--json
Command usage
[!IMPORTANT] The
command MUST be available on the user's PATH. Do not attempt to run it vialoadstone,bun run, or by pointing to source files directly.npm run
loadstone <command> [args] [options]
Profile data workflow
For token-efficient profile queries, use the filtering options:
- Use
for skill level queries (e.g., "what's my crafting level?") - reduces ~14k tokens to ~300--skills-only - Use
for completed quest counts--completed-quests-only - Use
for current quest progress--started-quests-only - Use
for available quests to start--not-started-quests-only - Use
for all quests with minimal data--quests-only - Add
if you need the complete raw API response--include-raw
Note: The
raw field is excluded by default in JSON mode to save tokens. Use --include-raw only when necessary.
Examples:
# Get only skill levels loadstone profile "Some Player" --json --skills-only
# Get only completed quests loadstone profile "Some Player" --json --completed-quests-only
# Get only started quests loadstone profile "Some Player" --json --started-quests-only
Page content workflow
- First request available headings with
.--headings - Choose only the headings relevant to the user request.
- Request those sections with
.--fields "Heading 1","Heading 2"
Examples:
loadstone page "Abyssal whip" --headings
loadstone page "Abyssal whip" --fields "Usage","Drop sources" --json
Output handling
- If the user asks for data, prefer
and return structured results.--json - If the user asks for a summary, parse JSON and provide a concise summary.
- If a command fails, return the error and offer a fix (missing command, network, rate limit).