From weft
Edit an existing weft workflow template. Use only when user types /wf-edit-template.
How this skill is triggered — by the user, by Claude, or both
Slash command
/weft:wf-edit-template <template-name><template-name>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load an existing template, modify it interactively, and save.
Load an existing template, modify it interactively, and save.
$ARGUMENTS
If no arguments, list templates and ask which to edit:
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" start
Load the template preview:
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" preview <name>
Display the current template with all step details, guards, and policies.
Ask: "What would you like to change?"
Supported modifications:
Show the modified template and ask: "Save these changes?"
Ask whether to overwrite the original or save as a new name.
If saving to the project-local directory:
echo '<template_json>' | python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" save-template
If the original is a plugin-bundled template, always save as a project-local override (don't modify plugin files).
Tell the user the template was saved and how to start it.
npx claudepluginhub dioptx/weft --plugin weftGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.