From washing-machine
Runs a washing machine cycle on laundry. Triggers: "wash", "laundry", "clean clothes", "heavy duty", "quick wash", "delicates", "rinse", "spin", "pre-wash", "soak"
How this skill is triggered — by the user, by Claude, or both
Slash command
/washing-machine:skill-snapshot-with-keywordsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a washing cycle by selecting sub-features directly or via a preset cycle.
Run a washing cycle by selecting sub-features directly or via a preset cycle.
| Signal phrases | Sub-feature |
|---|---|
| "pre-wash", "pre-clean" | Pre-wash |
| "wash", "clean", "renew" | Wash |
| "soak", "pre-soak" | Soak |
| "rinse", "pre-rinse" | Rinse |
| "spin", "pre-spin", "dry", "remove water" | Spin |
| "heavy duty", "heavy soil", "dirty" | Pre-wash, soak, wash, rinse, spin |
| "standard", "default", "normal" | Pre-wash, wash, rinse, spin |
| "quick", "fast", "express" | Wash, rinse, spin |
| "delicates", "gentle", "fragile" | Pre-wash, wash, rinse |
Detect these from the user's natural language:
| Behaviour | Cues | Default | Applies to |
|---|---|---|---|
| Auto (skip confirmation) | "just do it", "go ahead", "no need to confirm", "auto", "no prompt", "over to you" | Off | All phases |
| Dry run | "just show me", "preview", "don't actually wash" | Off | All phases |
| Double wash | "double wash", "extra wash", "twice the wash" | Off | Wash |
| Extra rinse | "extra rinse", "more rinse", "rinse twice" | Off | Rinse |
| Super spin | "super spin", "extra spin", "spin faster" | Off | Spin |
Scan both $ARGUMENTS and the user's original message for signal phrases and behavioural modifiers.
When a signal phrase is detected, route directly to the matched sub-features.
When no signal phrase is detected, use AskUserQuestion:
header: "Cycle"
question: "What wash cycle would you like?"
multiSelect: false
options:
- label: "Heavy Duty"
description: "Pre-wash, soak, wash, rinse, and spin for heavily soiled laundry"
- label: "Standard"
description: "Pre-wash, wash, rinse, and spin for everyday laundry"
- label: "Quick"
description: "Wash, rinse, and spin for lightly soiled laundry"
- label: "Delicates"
description: "Pre-wash, wash, and rinse for fragile fabrics"
- label: "Auto"
description: "Let the machine analyse the load and pick the best cycle"
Once a cycle is selected, run each sub-feature in order. For each phase:
If dry run is active, describe what each phase would do without executing it.
If auto (skip confirmation) is NOT active, use AskUserQuestion to confirm before starting.
| File | Contents | When to load |
|---|---|---|
| agentic-wash.md | Agentic wash flow | If Auto cycle is selected |
| pre-wash.md | Pre-wash instructions | First, or after agentic wash |
| soak.md | Soak instructions | After pre-wash |
| wash.md | Wash instructions | After pre-wash and soak |
| rinse.md | Rinse instructions | After wash |
| spin.md | Spin instructions | After rinse |
washing machine, laundry, wash cycle, heavy duty, standard, quick, delicates, rinse, spin, pre-wash, soak
npx claudepluginhub makerxstudio/blog-skill-examples --plugin washing-machineCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.