From declutter-genie
Identify duplicate or near-duplicate items in the workspace inventory — exact name matches, fuzzy name matches, and functional duplicates (multiple kettles, multiple HDMI cables of the same length). Outputs a grouped duplicates report and recommends which to keep based on condition and value.
How this skill is triggered — by the user, by Claude, or both
Slash command
/declutter-genie:find-duplicatesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
User asks "do I have duplicates", wants to consolidate, or runs after `import-inventory` to clean the merged list.
User asks "do I have duplicates", wants to consolidate, or runs after import-inventory to clean the merged list.
<workspace>/inventory/master.json exists with items.
name (lowercased, trimmed, punctuation stripped).name using a similarity threshold (Levenshtein or token-set ratio ≥ 0.85). E.g. "ThinkPad T480" and "Lenovo Thinkpad T-480".category plus a shared key noun in name or description. E.g. three items with category=kitchen and "kettle" in name. Use looser matching here; flag for user judgement, don't auto-merge.qty > 1 already collapsed → just note the count, don't flag as a problem.For each duplicate group, recommend which copy to keep:
condition (new > good > fair > poor > broken).est_value if conditions are equal.location (in-use room over storage box).Write <workspace>/analysis/duplicates.md:
## Group: <canonical name>
- KEEP: <item> (id, location, condition)
- DISCARD/SELL/DONATE: <item> (id, location, condition) — reason
- DISCARD/SELL/DONATE: <item> (id, ...)
Print a summary count to chat: "12 duplicate groups, 19 redundant items".
Offer to push the redundant items into suggest-discards, identify-resale-targets, or identify-donation-targets based on each item's value and condition.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin declutter-genie