traversal-system

Design traversal architecture separating world data, movement verbs, execution, and economy.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/Firzus/agent-skills --skill traversal-system
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: traversal-system
Source: https://github.com/Firzus/agent-skills/tree/main/skills/game/traversal-system
Command: npx skills add https://github.com/Firzus/agent-skills --skill traversal-system

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you design and implement traversal systems that let players climb, glide, swim, grapple, parkour, and use vehicles without breaking world readability, player intent, or progression balance.

Core Features & Use Cases

  • Traversal architecture: Separates world facts, traversal verbs, stamina or momentum economy, and controller execution into clean responsibilities.
  • World interaction design: Defines climbable surfaces, volumes, anchors, movement gates, and readability cues for authored or systemic traversal.
  • Implementation guidance: Covers mantle and vault detection, motion warping, IK, wall-running, grapples, networking, and Mover-based execution.
  • Failure prevention: Addresses common issues such as seam flicker, forbidden geometry climbing, stamina edge cases, and traversal trivializing content.
  • Use case: Build a reliable climbing and parkour system for an action game, or audit an existing traversal stack that feels inconsistent, exploitable, or hard to maintain.

Quick Start

Ask for a traversal design plan for your game by describing the movement verbs, world constraints, progression rules, and target engine.

Frequently Asked Questions about traversal-system

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

FAQPage Schema
How do I design a game traversal system that separates world data from movement execution?

Game traversal system design separates world facts, traversal verbs, stamina or momentum economy, and controller execution into clean responsibilities to maintain world readability and player intent. This architecture prevents inconsistent movement behavior and progression balance issues.

Why does my parkour movement system allow players to climb forbidden geometry?

Forbidden geometry climbing occurs when traversal systems lack proper surface probing and readability cues. Defining specific climbable surfaces, volumes, and anchors with authored or systemic constraints prevents players from exploiting unintended traversal paths.

Can I use motion warping and IK to fix seam flicker during climbing animations?

Motion warping and IK presentation address seam flicker by ensuring accurate limb placement during climbing traversal. Proper mantle and vault detection combined with controller-owned movement execution creates smooth transitions between traversal states.

What's the best way to structure stamina and momentum policies for an open-world traversal system?

Stamina and momentum policies for traversal systems should be designed as a distinct economy layer separate from movement verbs and execution. This separation ensures balanced progression rules and prevents edge cases like stamina trivializing content or breaking game difficulty.

How do I implement wall-running and grappling hooks without breaking network replication?

Wall-running and grapples require controller-owned movement execution with proper networking considerations to maintain synchronization. Implementing these traversal verbs through a Mover-based execution model ensures consistent state replication across authored and systemic traversal interactions.

Does this traversal architecture approach work for both authored and systemic movement styles?

Traversal architecture design applies to both authored and systemic movement styles across climbing, parkour, gliding, swimming, grappling, and vehicle route design. Typed requests and outcome validation ensure reliable behavior regardless of whether traversal paths are hand-crafted or procedurally generated.