From worldos
Create or import a WorldOS campaign — generate an original adventure (regions, factions, quest beats, NPC roster with assigned voices) from SRD primitives, or import a campaign module. Use when the player wants to start a new adventure, generate a campaign, or load authored content. Ships only original/CC content; copyrighted adventures are imported privately and never redistributed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/worldos:campaign-authorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create the world the player will adventure in. Two modes:
Create the world the player will adventure in. Two modes:
Build an original campaign from SRD primitives: a premise and hook; a region with a few locations; factions with motives; a quest arc with branching beats; an NPC roster (each with a name, personality, and an assigned voice_id); and CR-appropriate encounters. Write it as a module under content/campaigns/<id>/ and seed initial state in worldos-engine.
scaffold_adventure(title, premise, level_range) (in servers/engine/generator.py) to get a schema-correct skeleton with the right top-level shape and empty locations/npcs/scenes lists.voice_id from the six known voices: narrator-dm, companion-default, npc-male-1, npc-female-1, npc-elder, npc-rogue (see content/voices/voice-map.json). Make each scene's location_id point at a real location id.validate_adventure(adv) — it returns a list of problem strings (empty means valid: no duplicate ids, no unknown voice ids, no dangling scene references, title present). Fix every reported problem, then write the module under content/campaigns/<id>/adventure.json.Load an authored campaign module. Licensing matters: WorldOS ships only original or CC-licensed content. Adventures the player legally owns may be imported for private local play — these live under a git-ignored directory and are never committed or redistributed. Never reproduce copyrighted adventure text into the repository.
Assign every NPC and the companion a stable logical voice_id at creation (see content/voices/voice-map.json) so each character sounds consistent across sessions.
npx claudepluginhub electricsheephq/worldos --plugin worldosCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.