$npx -y skills add martinemde/skillet --skill task-testTest skill that exercises the Task tool system to create and manage tasks
| 1 | # Task System Test Skill |
| 2 | |
| 3 | This skill exercises the Task tool system. You _MUST_ use TaskCreate, TaskUpdate, and TaskList to manage tasks. Set awn owner for the tasks to "haiku". |
| 4 | |
| 5 | ## Instructions |
| 6 | |
| 7 | **Step 1: Create tasks IN PARALLEL** (all three TaskCreate calls in one response): |
| 8 | |
| 9 | - TaskCreate: subject="List Go files", description="Count the number of \*.go files", activeForm="Listing Go files" |
| 10 | - TaskCreate: subject="Check formatting", description="Run go fmt on all the files", activeForm="Checking formatting" |
| 11 | - TaskCreate: subject="Count lines", description="Count # of lines in \*.go files", activeForm="Counting lines" |
| 12 | |
| 13 | **Step 2: List tasks** to see what was created. |
| 14 | |
| 15 | **Step 3: Complete each task** |
| 16 | |
| 17 | Summarize results. |