All authors

Claude Skills by Vincross
github.com/Vincross2 skillsA× 20 installs0 views
APIReferenceA
---- import "mind/core/framework/skill" Package skill provides an interface to be implemented by the robot part of a Skill. This function must be implemented in your skill package: func NewSkill() skill.Interface
developmentgo
0
5
DevelopmentA
You can find the MoveLegsSkill example code on our [GitHub](https://github.com/vincross/mind-sdk/blob/master/examples/MoveLegsSkill/robot/src/movelegsskill.go). Here are some annotated notes about the implementation and reference to help you build your own Skills. ```go func ready() { hexabody.Stand() hexabody.MoveHead(0.0, FAST_DURATION) // Using goroutines to make some commands be executed at the same time go hexabody.MoveLeg(2, hexabody.NewLegPosition().SetCoordinates(-100, 50.0, 70.0), SL...
developmentgogit
0
5