nav-move_skill

This skill executes exactly one forward move relative to facing direction and reports outcome to enable reliable step-by-step navigation.
  • Python

9

GitHub Stars

2

Bundled Files

2 months ago

Catalog Refreshed

4 months ago

First Indexed

Readme & install

Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.

Installation

Preview and clipboard use veilstrat where the catalogue uses aiagentskills.

npx veilstrat add skill bdambrosio/cognitive_workbench --skill nav-move

  • Skill.md1.9 KB
  • tool.py11.5 KB

Overview

This skill attempts exactly one adjacent forward move relative to the agent's current facing direction and reports a precise outcome. It is an atomic navigation primitive designed to be composed into larger motion plans. The operation aligns the agent, executes a single forward action, verifies landing, and returns structured success or failure details.

How this skill works

Before moving, the agent snaps to the center of the current block and sets yaw to the nearest cardinal direction and pitch to zero to avoid fractional-offset collisions. The skill calls a single forward move action with collision checking, then validates the result using status and observation checks. It returns structured output describing start/end positions, vertical change, support at the destination, or a specific failure reason.

When to use it

  • You need one guaranteed forward step with verification before composing further moves.
  • Testing or debugging low-level navigation behavior step-by-step.
  • Performing safety-checked movement where a single failed step should abort higher-level plans.
  • Situations where precise alignment and predictable cardinal movement are required.
  • Before invoking multi-step primitives to validate single-step feasibility.

Best practices

  • Allow the skill to realign the agent; do not mix pre-move offsets as it snaps to block center and cardinal yaw.
  • Use this as an atomic primitive inside higher-level planners rather than for long-distance motion.
  • Inspect failure reasons to decide recovery: e.g., treat "fell" as a safety event and trigger backtrack or stop.
  • Set step_duration for smoother simulation if needed, but keep it minimal for responsiveness.
  • Check extra fields (from/to/delta_y/support_here) to validate environmental assumptions before next action.

Example use cases

  • Move one block forward down a corridor, verify support and proceed if successful.
  • Step onto a new block to inspect support type (solid, air, etc.) before placing blocks or interacting.
  • Use in a recovery loop: attempt move, on collision adjust facing or clear obstacle, retry.
  • Combine multiple nav-move calls inside a planner to build stepwise, verifiable paths with immediate fall/collision detection.

FAQ

Success includes a summary text plus extra fields: starting and ending positions, vertical displacement, and detected support at the destination.

What failure reasons should I handle specially?

Treat "fell" as a safety-critical event requiring backtrack or emergency stop. "collision" indicates blocked path; consider clearing or re-planning. "unexpected_vertical_change" and "support_ambiguous" indicate sensing or environment anomalies.

Should I use nav-move for long movements?

No. Use this for single-step atomic moves. For multi-step forward motion, prefer a higher-level primitive designed for advancement and path planning.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational
nav-move skill by bdambrosio/cognitive_workbench | VeilStrat