rpg-load

Restore RPG server state from a saved slot via POST API and output next_goal.

Updated May 2, 2026
One-click install
npx skills add https://github.com/onelittlenightmusic/skills-rpg --skill rpg-load
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rpg-load
Source: https://github.com/onelittlenightmusic/skills-rpg/tree/main/skills/rpg-load
Command: npx skills add https://github.com/onelittlenightmusic/skills-rpg --skill rpg-load

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Restores the RPG server state from a saved slot, immediately returning the next_goal so you can decide what to do next.

Core Features & Use Cases

  • Restore from a specified save slot and continue sessions with the server state intact.
  • Expose the resulting next_goal to guide immediate actions after loading.
  • Works with the RPG server API to load saves in a deterministic way.

Quick Start

Load the RPG server state from a specified save slot and return the next_goal

Frequently Asked Questions about rpg-load

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I restore an RPG server state from a save slot?

You can restore an RPG server state by sending a POST request to the /api/v1/saves/{slot}/load endpoint. This action reloads the specified save slot and returns the next_goal to guide subsequent gameplay actions.

What is the default RPG_SERVER_URL for loading a save slot?

The default RPG_SERVER_URL is http://localhost:7100. The Skill uses this default URL to communicate with the RPG server REST API if no alternative server URL is provided in the environment configuration.

Can I resume RPG gameplay deterministically using the server REST API?

Yes, you can resume RPG gameplay deterministically by loading a saved slot through the server REST API. This restores the exact server state and exposes the next_goal to confirm immediate subsequent actions.

What information does the RPG server return after loading a save slot?

After loading a save slot, the RPG server returns an ok status, the loaded slot identifier, and the next_goal. This output confirms the state restoration and guides immediate subsequent gameplay actions.

Do I need to configure environment variables to load an RPG save slot?

You only need to configure the RPG_SERVER_URL environment variable if your RPG server is not hosted locally. By default, the Skill targets http://localhost:7100 to perform the save slot load operation.