Try It Out
Paste the following prompt into your AI chat to install this skill:
Install @user_57f71de6/skill-creator-v2 by following https://skillhub.cn/install/skillhub.md.
About this skill
What problem it addresses
When building agent skills, the hard part is usually not producing a first SKILL.md, but knowing whether it actually helps: Does it trigger reliably? Does it produce more stable output than a baseline? Are token usage and runtime acceptable? After several iterations, which assertions are meaningful and which just re-check the same behavior? Try It Out turns this ad hoc debugging loop into a repeatable workflow.
How it works
It starts by clarifying intent: what the skill should do, when it should trigger, what output format is expected, and whether test cases are useful. If the current conversation already contains a workflow, it can extract the relevant tool calls, step order, input/output formats, and user corrections before asking for missing details.
The main loop then moves from draft to evaluation:
- Write a
SKILL.mddraft, putting trigger conditions indescriptionand using progressive disclosure or domain-specific reference files when needed. - Create 2 to 3 realistic prompts that a real user might say, stored in
evals/evals.json. - Launch
with-skillandbaselineruns in the same turn so they finish around the same time. - Draft objectively verifiable assertions while runs are in progress, then update
eval_metadata.json. - Capture timing data, grade assertions, aggregate
benchmark.jsonandbenchmark.md, and open a review viewer for both qualitative outputs and quantitative metrics.
It also performs an analyst pass to surface patterns hidden by aggregate stats, such as assertions that always pass, high-variance evaluations, and token/runtime tradeoffs. This helps decide whether the next iteration should focus on the description, the skill body, or a broader test set.
Boundaries and notes
The workflow is most useful for skills with verifiable outputs or stable procedural steps, such as file transforms, data extraction, code generation, or fixed workflows. For subjective outcomes like writing style or design quality, the source material favors qualitative review over forced quantitative assertions. Expect meaningful runtime overhead from multiple subagents, grading steps, and result files. In headless environments, a static review file can replace an interactive viewer.
Use Cases
- {'text': 'Draft a first SKILL.md for a data-extraction skill and generate test prompts to verify output format.'}
- {'text': 'Compare skill-enabled runs against baseline runs to check whether the skill reduces malformed output.'}
- {'text': 'Add verifiable assertions to a file-transform skill to confirm the generated file matches the expected structure.'}
- {'text': 'Refine the skill description so the model triggers the skill more reliably when users mention related tasks.'}
Best For
- {'text': 'Full-stack engineers packaging fixed tool workflows into reusable agent skills'}
- {'text': 'Prompt engineers deciding whether skill triggering is too weak or too broad'}
- {'text': 'Platform engineers validating success rates for data extraction or file transformation skills'}
- {'text': 'Agent product leads maintaining multiple skill versions and comparing old versus new behavior'}
Related Skills
Collects daily conversations, task logs, and errors, then runs a nine-module review to surface blind spots, generate actions, and update memory.
Local long-term memory for AI agents that appends key facts and daily logs, supports cross-session context and search recall, and auto-archives old diaries to gzip files.
Run a grilling session to interact with or test AI agents.
A systematic prompt optimization skill that refines prompts using a four-step distillation framework (diagnose, structure, think, compress) and methodologies from four prompting masters.