From c8ddb60397a273be5294b8b611ed7d19fe772db2 Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Sat, 7 Feb 2026 08:18:37 -0800 Subject: [PATCH] Revert query parsing display to V1 format User preferred V1's "I'll research X across Reddit, X, and the web..." with explicit Parsed intent block over V2's emoji format. Co-Authored-By: Claude Opus 4.6 --- SKILL.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/SKILL.md b/SKILL.md index ff2a4de..90ab1a1 100644 --- a/SKILL.md +++ b/SKILL.md @@ -37,18 +37,18 @@ Common patterns: - `TARGET_TOOL = [extracted tool, or "unknown" if not specified]` - `QUERY_TYPE = [RECOMMENDATIONS | NEWS | HOW-TO | GENERAL]` -**DISPLAY your parsing to the user.** Before running any tools, output a single line: +**DISPLAY your parsing to the user.** Before running any tools, output: -๐Ÿ” **{TOPIC}** ยท {QUERY_TYPE} -Searching Reddit, X, and the web for {natural language description of what you'll look for}... +``` +I'll research {TOPIC} across Reddit, X, and the web to find what's been discussed in the last 30 days. -Example outputs: -- ๐Ÿ” **kanye west** ยท News โ€” Searching Reddit, X, and the web for the latest kanye west news and discussions... -- ๐Ÿ” **best MCP servers** ยท Recommendations โ€” Searching Reddit, X, and the web for the most recommended MCP servers... -- ๐Ÿ” **nano banana pro prompting** ยท Prompting โ€” Searching Reddit, X, and the web for nano banana pro prompting techniques and tips... -- ๐Ÿ” **open claw** ยท General โ€” Searching Reddit, X, and the web for what people are saying about open claw... +Parsed intent: +- TOPIC = {TOPIC} +- TARGET_TOOL = {TARGET_TOOL or "unknown"} +- QUERY_TYPE = {QUERY_TYPE} +``` -If TARGET_TOOL is known, mention it: "...for nano banana pro prompting techniques to use in ChatGPT..." +If TARGET_TOOL is known, mention it in the intro: "...to find {QUERY_TYPE}-style content for use in {TARGET_TOOL}." This text MUST appear before you call any tools. It confirms to the user that you understood their request.