Skillsgenerate-terminal-command
G

generate-terminal-command

This rule explains how to generate a terminal command

NazmusSayad
22 stars
1.2k downloads
Updated 6d ago

Readme

generate-terminal-command follows the SKILL.md standard. Use the install command to add it to your agent stack.

---
name: generate-terminal-command
description: This rule explains how to generate a terminal command
---

### Use Linux paths

*Correct:*
```sh
go build -o ./output ./input
go build /c/Users/Sayad/...
```

*Incorrect:*
```sh
go build -o .\\output .\\input
go build C:\\Users\\Sayad\\...
```

### Avoid `cd`

*Correct:*
```sh
ls -l
```

*Incorrect:*
```sh
cd ./path; ls -l
```

Install

Requires askill CLI v1.0+

Metadata

LicenseUnknown
Version-
Updated6d ago
PublisherNazmusSayad

Tags

ci-cd