Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:2
forks:0
updated:1 de marzo de 2026, 05:10
SKILL.md
| name | example-skill |
| description | An example skill demonstrating the SKILL.md format |
| version | 1.0.0 |
| author | pi contributors |
| tags | ["example","documentation","rust"] |
This is an example skill file. Skills allow you to provide custom instructions to the AI agent for specific tasks or coding styles.
Use this skill when you want to see how the SKILL.md format works.
// Good: Clear, idiomatic Rust
fn calculate_sum(numbers: &[i32]) -> i32 {
numbers.iter().sum()
}
// Avoid: Unnecessary complexity
fn calculate_sum_bad(numbers: &[i32]) -> i32 {
let mut sum = 0;
for i in 0..numbers.len() {
sum = sum + numbers[i];
}
sum
}
.pi/skills/example-skill/SKILL.mdpi /skill:enable example-skill