$npx -y skills add martinemde/skillet --skill test-skillA simple test skill that creates a greeting file
| 1 | # Test Skill |
| 2 | |
| 3 | This is a simple test skill to verify skillet is working correctly. |
| 4 | |
| 5 | ## Task |
| 6 | |
| 7 | Create a todo list item: |
| 8 | |
| 9 | 1. Check if the greeting.txt file exists |
| 10 | 2. Write a new version of the greeting.txt file with the content |
| 11 | |
| 12 | ``` |
| 13 | Hello from Skillet! |
| 14 | This file was created by Claude Code through the skillet CLI. |
| 15 | Date: [current date] |
| 16 | ``` |
| 17 | |
| 18 | After creating the file, read it back and confirm the contents were written correctly. |