The Preview Pane
When you’re in the skill editor (Settings → Skills → Create New or edit an existing skill), the right side of the screen shows a preview pane — a live test environment for the skill. Enter a sample input in the preview pane and click Run to see exactly what the skill produces. Adjust the system prompt and test again without leaving the editor.Testing Process
Write your skill in the editor
Fill in the skill name, system prompt, tools, and model in the editor panel.
Enter a test input in the preview pane
Type or paste a representative example of what a user would provide when invoking this skill.For a
@summarize skill: paste a paragraph or article you want summarized.
For an @explain-code skill: paste a function or code snippet.
For a @translate skill: paste a sentence or paragraph in the source language.Click Run or Test
The skill processes your test input using the current system prompt and shows the output in the preview pane.
Evaluate the output
Ask yourself:
- Is the format what I wanted?
- Is the length appropriate?
- Did it follow all the instructions?
- Would this output be useful in a real workflow?
Adjust and re-test
If the output isn’t right, edit the system prompt and run the test again. Repeat until the output consistently matches your expectations.
What to Test For
Format consistency — run the same skill 2–3 times on the same input. Does it produce the same format each time? If not, add more explicit format instructions. Edge cases:- Empty or very short input — does the skill handle it gracefully?
- Very long input — does it still stay within your expected output length?
- Off-topic input — does the skill stay focused or does it wander?
- Input in an unexpected language or format — what happens?
Iteration Expectations
Most skills need 3–5 iterations before they reach consistently good quality. This is normal. Common iteration patterns:| Problem | Fix |
|---|---|
| Output is too long | Add a word limit or max bullet count to the system prompt |
| Format is inconsistent | Specify the exact structure with an example in the prompt |
| Skill ignores constraints | Make the constraint more explicit (“You MUST return only…”) |
| Output includes unwanted preamble | Add “Return only the result — no intro, no commentary” |
| Model doesn’t follow all rules | Number the rules and add emphasis to the most critical ones |

