- Add pick_test_tube task: USDC asset repackaging, grasp generation, task config - Add tools: usdc_to_obj.py, repackage_test_tube.py, fix_test_tube_materials.py - Add custom_task_guide.md: full Chinese documentation for creating custom tasks - Add crawled InternDataEngine online docs (23 pages) - Add grasp generation script (gen_tube_grasp.py) and pipeline config
2.6 KiB
2.6 KiB
Source: https://internrobotics.github.io/InternDataEngine-Docs/concepts/skills.html
Skills
Skills are the fundamental building blocks of robotic manipulation in InternDataEngine. Each skill defines an atomic action that a robot can perform, from simple gripper operations to complex manipulation sequences.
Quick Navigation
| Category | Description | | Overview | Skill architecture and available skills | | Pick Skill | Grasping and lifting objects | | Place Skill | Placing objects at target locations | | Articulation Skill | Operating articulated objects (doors, drawers) |
What is a Skill?
A skill encapsulates:
- **Motion Planning **: Trajectory generation using CuRobo
- **Execution Control **: Step-by-step command execution
- **State Monitoring **: Success/failure evaluation
- **Gripper Actions **: Open/close operations
Skill Categories
Manipulation Skills
Skills for interacting with objects in the environment:
- **Pick **: Grasp and lift objects using sampled grasp poses
- **Place **: Position objects at target locations
- **Articulation **: Operate doors, drawers, and other articulated objects
Motion Skills
Skills for robot movement:
goto_pose- Move to a target end-effector posemove- Cartesian motion in a directionrotate- Rotate the end-effector
Utility Skills
Helper skills for common operations:
home- Return to home configurationopen/close- Gripper controlwait- Pause execution
Getting Started
- Read the Skills Overviewto understand the architecture
- Learn about Pick Skillfor grasping objects
- Explore Place Skillfor placing operations
- Check Articulation Skillfor operating doors and drawers
Related Topics
- Tasks- Combine skills into complete workflows
- Controllers- Understand motion control
- Custom Skill- Create your own skills