AdrianLlopart commited on
Commit
e1f772b
·
verified ·
1 Parent(s): e29d57c

chore: drop legacy -none quant segment

Browse files
Files changed (1) hide show
  1. SKILL.md +4 -4
SKILL.md CHANGED
@@ -1,11 +1,11 @@
1
  ---
2
  name: rskill-moveit-eef-pose
3
  description: >-
4
- S1 ROS action skill (weightless). Capabilities: reach. Plan and execute a collision-free motion that brings the end-effector link to a target 6-DOF Cartesian pose (position + orientation) via MoveIt's MoveGroup (self + planning-scene collision checked). Use when you have a Cartesian end-effector goal (e.g. a pre-grasp pose); for a joint-space goal use rskill-moveit-multi-joints-none, and to aim a camera at a point use rskill-moveit-multi-look_at-none. Discovery view of an OpenRAL rSkill — NOT directly runnable by an agent harness; it runs via rSkill.from_pretrained + the robot HAL.
5
  metadata:
6
  openral_rskill: true # generated discovery view of an rSkill
7
  schema_version: 0.1
8
- rskill_id: OpenRAL/rskill-moveit-multi-eef_pose-none
9
  manifest: ./rskill.yaml
10
  role: s1
11
  kind: ros_action
@@ -28,7 +28,7 @@ metadata:
28
 
29
  ## What it is
30
 
31
- An OpenRAL **ROS action skill (weightless)** (`role: s1`, `kind: ros_action`). Plan and execute a collision-free motion that brings the end-effector link to a target 6-DOF Cartesian pose (position + orientation) via MoveIt's MoveGroup (self + planning-scene collision checked). Use when you have a Cartesian end-effector goal (e.g. a pre-grasp pose); for a joint-space goal use rskill-moveit-multi-joints-none, and to aim a camera at a point use rskill-moveit-multi-look_at-none.
32
 
33
  ## Capabilities
34
 
@@ -52,7 +52,7 @@ this file. Execution always goes through the OpenRAL loader and the robot HAL.
52
  ```python
53
  from openral_rskill import rSkill
54
 
55
- skill = rSkill.from_pretrained("OpenRAL/rskill-moveit-multi-eef_pose-none")
56
  # the loader validates embodiment / sensors / runtime / quantization against the target
57
  # RobotDescription and enforces the weight-license gate before any weights load.
58
  ```
 
1
  ---
2
  name: rskill-moveit-eef-pose
3
  description: >-
4
+ S1 ROS action skill (weightless). Capabilities: reach. Plan and execute a collision-free motion that brings the end-effector link to a target 6-DOF Cartesian pose (position + orientation) via MoveIt's MoveGroup (self + planning-scene collision checked). Use when you have a Cartesian end-effector goal (e.g. a pre-grasp pose); for a joint-space goal use rskill-moveit-multi-joints, and to aim a camera at a point use rskill-moveit-multi-look_at. Discovery view of an OpenRAL rSkill — NOT directly runnable by an agent harness; it runs via rSkill.from_pretrained + the robot HAL.
5
  metadata:
6
  openral_rskill: true # generated discovery view of an rSkill
7
  schema_version: 0.1
8
+ rskill_id: OpenRAL/rskill-moveit-multi-eef_pose
9
  manifest: ./rskill.yaml
10
  role: s1
11
  kind: ros_action
 
28
 
29
  ## What it is
30
 
31
+ An OpenRAL **ROS action skill (weightless)** (`role: s1`, `kind: ros_action`). Plan and execute a collision-free motion that brings the end-effector link to a target 6-DOF Cartesian pose (position + orientation) via MoveIt's MoveGroup (self + planning-scene collision checked). Use when you have a Cartesian end-effector goal (e.g. a pre-grasp pose); for a joint-space goal use rskill-moveit-multi-joints, and to aim a camera at a point use rskill-moveit-multi-look_at.
32
 
33
  ## Capabilities
34
 
 
52
  ```python
53
  from openral_rskill import rSkill
54
 
55
+ skill = rSkill.from_pretrained("OpenRAL/rskill-moveit-multi-eef_pose")
56
  # the loader validates embodiment / sensors / runtime / quantization against the target
57
  # RobotDescription and enforces the weight-license gate before any weights load.
58
  ```