Basic skill
Skill wind-will-not-stop/skillViewer/sample-skills/basic-skill
Demonstrate a flow graph with serial steps, branching, parallel review, tool calls, approval gates, and retry loops.From its SKILL.md
npx -y skills add wind-will-not-stop/skillViewer --skill basic-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `scripts/compose_summary.py` and 1 more.
SKILL.md
1.7 KB, 335 tokens by cl100k_base, as published. Nobody here has run it
Basic Skill
Overview
This skill demonstrates a workflow-oriented graph. It validates a request, fans out into parallel review steps, joins the results, calls a policy helper, runs synthesis, validates the draft, and either delivers the result or routes the work to manual review.
Required Steps
- Read
references/summary.mdto understand the task context. - In parallel, review
references/style-guide.md,references/policy-rules.md, andagents/openai.yaml. - Join the review results into a single working context.
- Call a policy helper to normalize policy and compliance hints.
- Run
scripts/compose_summary.pyto prepare a draft answer. - If the draft is incomplete, loop back and run
scripts/compose_summary.pyagain with a tighter summary. - Run
scripts/validate_summary.pyto verify compliance before delivery. - If compliance still fails, route the draft to manual review; otherwise return the final answer to the user.
Decision Logic
- If the request is missing required context, stop early and ask for clarification.
- Otherwise continue into the review flow.
- If the draft misses required points, retry the synthesis step once before finalizing.
- If the final validation fails, request manual review instead of delivering the draft directly.
Outputs
output/final-summary.mdoutput/manual-review.md
Guardrails
- Do not edit source files.
- Keep the final answer under five sentences.
- Keep the retry loop bounded to one additional pass.
- Only mark the flow as complete after validation succeeds or manual review is requested.
What ships with it: 9 files
50.6 KB alongside SKILL.md, 2 of them executable
agents/
- openai.yaml130 B
- skill-graph.json48.5 KB
output/
- final-summary.md204 B
- manual-review.md230 B
references/
- policy-rules.md287 B
- style-guide.md179 B
- summary.md99 B
scripts/
- compose_summary.pyruns585 B
- validate_summary.pyruns418 B