# Wf Preview

> Preview a weft workflow template with full step details. Use only when user types /wf-preview.

- Skill: `ccplugins/wf-preview` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ccplugins/wf-preview`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ccplugins/wf-preview/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: ccplugins (https://skillmd.com/u/ccplugins)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/ccplugins/wf-preview

---


# Preview Weft Template

Show a detailed view of a workflow template's steps, policies, and guards.

## Arguments
$ARGUMENTS

## Instructions

1. If no arguments, list available templates first:
   ```bash
   python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" start
   ```
   Then ask which one to preview.

2. Show the detailed preview:
   ```bash
   python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" preview <template-name>
   ```

3. Explain the template to the user:
   - What each step does (from descriptions if available)
   - Which steps have guards and what they block
   - Which steps have non-default on_fail policies
   - Which steps are optional
   - Total step count and expected flow

4. Suggest: "Use `/wf-start <name>` to start this workflow."

