Basic skill
Skill wind-will-not-stop/skillViewer/sample-skills/basic-skill
Inspect, visualize, and generate action-flow graphs for Codex-style agent skills with a local web UI and bundled graph generator.
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.
One thing 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.
What its author says it does
Copied from the file, not written here
Demonstrate a flow graph with serial steps, branching, parallel review, tool calls, approval gates, and retry loops.
SKILL.md
1.7 KB, 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.