Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/graph-robots/open-robot-skillsnpx agentmods add skills/graph-robots/open-robot-skills/grasping-short-axisWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/graph-robots/open-robot-skills/grasping-short-axis)<a href="https://agentmods.dev/skills/graph-robots/open-robot-skills/grasping-short-axis"><img src="https://agentmods.dev/badge/skills/graph-robots/open-robot-skills/grasping-short-axis/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/graph-robots/open-robot-skills/grasping-short-axis"><img src="https://agentmods.dev/badge/skills/graph-robots/open-robot-skills/grasping-short-axis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00164 | $0.03583 |
| Opus 5 | $0.00082 | $0.01792 |
| Sonnet 5 | $0.00033 | $0.00717 |
| Haiku 4.5 | $0.00016 | $0.00358 |
Grade A, and why
grasping-short-axis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 287 lines — stays where its author put it; the contents beside it link to each section on GitHub.
grasping-short-axis
Deterministic, geometry-locked grasping with CuRobo. The grasp pose is computed directly from the target OBB — the gripper descends along world −Z with its finger-opening axis snapped to the OBB's shorter horizontal axis, so the jaws close across the narrow dimension of the bar. An optional node then slides the grasp outward along the handle, clear of a heavier attached body. The subgraph builds a per-observation collision world (target excluded), plans a CuRobo trajectory, executes it, finalizes the last waypoint, closes the gripper, and outputs the EE pose at grasp.
Install
This skill depends on the curobo and geometry tool bundles:
export CUDA_HOME=/usr/local/cuda
uv sync --extra curobo --extra geometry # (pip: pip install -e "open-robot-skills[curobo,geometry]" --no-build-isolation)
When to use
- Elongated targets where grasp orientation matters: pan / pot handles, bottles, tools, utensils.
- A subpart (handle) that protrudes from a heavier body — wire
base_obbfor the outward slide. - When a sampled/scored grasp pose holds at close but the object slips during the lift (marginal off-axis contact patch).
When NOT to use
- Symmetric objects (boxes, cans) where any yaw works — use
grasping-with-planner. curobonot deployed.- You genuinely want multiple sampled candidates for the planner to
choose from — use
grasping-with-planner.
Recommended subgraph state flow
10 states, in order:
open → compute_grasp → offset_from_base → approach → observe
→ build_world → plan → execute → finalize → close → grasped
(grasped is the success-marker noop from sg.add_exit("grasped"),
with an edge to END.)
State details:
open—type: tool,tool: "robot.open_gripper",inputs: { settle_steps: 40 }.compute_grasp—type: script, filescripts/<sg>/short_axis_grasp_pose.py(canonical — do NOT re-emit a```pythonblock; the bundle materializes it). Inputs:target_obb = Ref("in.target_obb"). Optionalz_offset(default −0.04: descend the fingertip 4 cm into the OBB top). Returns{grasp_pose: Se3Pose}.offset_from_base—type: script, filescripts/<sg>/offset_grasp_from_base.py(canonical). Inputs:handle_obb = Ref("in.target_obb"),grasp_pose = Ref("compute_grasp.grasp_pose"), and — ONLY when a body perception was authored andbase_obbdeclared as a subgraph input —base_obb = Ref("in.base_obb"). Returns{adjusted_grasp: Se3Pose}. Safe no-op whenbase_obbis absent.approach—type: script, filescripts/<sg>/approach_above.py(canonical). Inputs:target_position = Ref("offset_from_base.adjusted_grasp.position"),rotation = Ref("offset_from_base.adjusted_grasp.rotation"),target_obb = Ref("in.target_obb").observe—type: tool,tool: "robot.get_observation".build_world—type: script, filescripts/<sg>/build_world.py(canonical). Inputs:observation = Ref("observe"),target_mask = Ref("in.target_mask"),target_obb = Ref("in.target_obb"),target_name = "target".plan—type: script, filescripts/<sg>/plan_grasp.py(canonical). Inputs:world_config = Ref("build_world.config"),observation = Ref("observe"),grasp_poses = Ref("offset_from_base.adjusted_grasp"),target_name = "target".plan_grasp.pyauto-wraps the single bare Se3Pose into a one-element list. All four inputs are required.execute—type: tool,tool: "robot.execute_trajectory",inputs: { trajectory: Ref("plan.trajectory"), subsample: 4 }.finalize—type: script, filescripts/<sg>/finalize_trajectory.py(canonical). Inputs:trajectory = Ref("plan.trajectory"). MANDATORY — see theexecute → finalize → closehard_rule. Edges:execute → finalize,finalize → close.close—type: tool,tool: "robot.close_gripper",inputs: { settle_steps: 60 }. Edge directly fromcloseto thegraspedsuccess marker.
The cross-subgraph output binding:
sg.set_outputs(
ee_pose_at_grasp=Ref("observe.arms.0.ee_pose"),
grasp_pose=Ref("offset_from_base.adjusted_grasp"),
)
Wire the exit:
sg.add_edge("close", "grasped")
sg.add_edge("grasped", END)
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/design_grasp_curobo.md 1.7 KB
- references/gripper_settle_constants.md 1.2 KB
- scripts/approach_above.py 3.3 KB runs code
- scripts/build_world.py 2.2 KB runs code
- scripts/finalize_trajectory.py 1.6 KB runs code
- scripts/offset_grasp_from_base.py 4.5 KB runs code
- scripts/plan_grasp_motion.py 5.2 KB runs code
- scripts/plan_grasp.py 5.4 KB runs code
- scripts/short_axis_grasp_pose.py 6.0 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 287 lines · 164 tokens per session scan A 941e585611b9
grasping-short-axis is a skill published in the GitHub repository graph-robots/open-robot-skills (41 stars, last pushed yesterday), licensed Apache-2.0. It adds 164 tokens to every session and 3,583 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
gap
Program robots with GaP (graph-as-policy) — compile natural-language tasks into typed, verified robot skill graphs and run them on simulators or real robots. Use when the user mentions GaP or graph-as-policy, robot manipulation, robot skills, robot tools or capabilities, skill registries, open-robot-skills, LIBERO or…
bambu-labs
Dry-run, upload, and cautiously initiate local Bambu Lab print jobs from validated plain .gcode, using Bambu LAN FTPS/MQTT handoffs.
srdf
MoveIt2 SRDF authoring, validation, and planning-semantics workflow. Use when creating, editing, inspecting, or validating .srdf files, MoveIt planning groups, virtual joints, passive joints, end effectors, group states, disabled collisions, URDF-paired planning semantics, or SRDF handoff for live review. Use the URDF…
cad-viewer
Start CAD Viewer and return review links for CAD and robot-description files. Use when visually reviewing .step, .stp, .glb, .stl, .3mf, .dxf, .urdf, .srdf, or .sdf files, especially when handed off from CAD, URDF, SRDF, or SDF generation skills.
urdf
URDF robot description authoring and validation. Use when creating, editing, inspecting, validating, or debugging .urdf files, robot links, joints, limits, inertials, visual/collision geometry, mesh references, frame conventions, or robot-description artifacts. Use the SRDF skill for MoveIt2 semantic groups and…
gcode
Generate, inspect, dry-run, and statically validate plain FDM .gcode from 3D mesh files by orchestrating real slicer CLIs. Use when Codex needs to slice .stl, .obj, unsliced .3mf, .ply, .glb, or .gltf into printer-profiled G-code, discover local slicer backends, inspect whether a mesh is slice-ready, or validate…