$npx -y skills add agent-ecosystem/skill-validator --skill auxiliary-only-skillA skill that uses only shell and config code blocks for testing contamination.
| 1 | # Auxiliary Only Skill |
| 2 | |
| 3 | This skill uses bash commands and config files but no application languages. |
| 4 | |
| 5 | ## Setup |
| 6 | |
| 7 | Install the required tools: |
| 8 | |
| 9 | ```bash |
| 10 | brew install jq yq |
| 11 | ``` |
| 12 | |
| 13 | ## Configuration |
| 14 | |
| 15 | Create a config file: |
| 16 | |
| 17 | ```yaml |
| 18 | server: |
| 19 | host: localhost |
| 20 | port: 8080 |
| 21 | ``` |
| 22 | |
| 23 | Alternatively use JSON: |
| 24 | |
| 25 | ```json |
| 26 | { |
| 27 | "server": { |
| 28 | "host": "localhost", |
| 29 | "port": 8080 |
| 30 | } |
| 31 | } |
| 32 | ``` |
| 33 | |
| 34 | ## Running |
| 35 | |
| 36 | Start the service: |
| 37 | |
| 38 | ```sh |
| 39 | ./start.sh --config config.yaml |
| 40 | ``` |