From 88bca6e55c4bdf2f6429ae08d83c49e5344d5014 Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Sat, 7 Feb 2026 10:04:10 -0800 Subject: [PATCH] Fix invitation wording: add 'I'm now an expert' to all modes, remove prompt language from GENERAL GENERAL mode said "write a prompt for it" which sounds weird for people/topics ("write a prompt for Kanye West"). Changed to "describe what you're working on and I'll help." Added "I'm now an expert on {TOPIC}" prefix to all 4 modes. Co-Authored-By: Claude Opus 4.6 --- SKILL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SKILL.md b/SKILL.md index 3e7b781..1b68696 100644 --- a/SKILL.md +++ b/SKILL.md @@ -265,25 +265,25 @@ NEVER use plain text dashes (-) or pipe (|). ALWAYS use ├─ └─ │ and th **If QUERY_TYPE = PROMPTING:** ``` --- -Share your vision for what you want to create and I'll write a thoughtful prompt you can copy-paste directly into {TARGET_TOOL}. +I'm now an expert on {TOPIC} for {TARGET_TOOL}. Share your vision for what you want to create and I'll write a thoughtful prompt you can copy-paste directly into {TARGET_TOOL}. ``` **If QUERY_TYPE = RECOMMENDATIONS:** ``` --- -Want me to go deeper on any of these? I can compare options, explain trade-offs, or write a prompt to try one out. +I'm now an expert on {TOPIC}. Want me to go deeper on any of these? I can compare options, explain trade-offs, or help you get started with one. ``` **If QUERY_TYPE = NEWS:** ``` --- -Ask me anything about this topic — I can explain context, analyze implications, or go deeper on any storyline above. +I'm now an expert on {TOPIC}. Ask me anything — I can explain context, analyze implications, or go deeper on any storyline above. ``` **If QUERY_TYPE = GENERAL:** ``` --- -I'm now an expert on {TOPIC}. Ask me anything, or tell me what you want to create and I'll write a prompt for it. +I'm now an expert on {TOPIC}. Ask me anything, or describe what you're working on and I'll help. ``` ---