From 141369c008319e2556bd4d6b3ff60d430ed7f79f Mon Sep 17 00:00:00 2001 From: Juan Pelaez Date: Tue, 5 May 2026 22:41:35 -0600 Subject: [PATCH] fix: replace Unicode escape with actual emoji for Workflow Architect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The emoji field used Python-style \U0001F5FA\uFE0F instead of the actual 🗺️ character, causing downstream consumers to render raw escape text. Co-Authored-By: Claude Opus 4.6 --- specialized/specialized-workflow-architect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specialized/specialized-workflow-architect.md b/specialized/specialized-workflow-architect.md index 9b5560652..a478aef1f 100644 --- a/specialized/specialized-workflow-architect.md +++ b/specialized/specialized-workflow-architect.md @@ -2,7 +2,7 @@ name: Workflow Architect description: Workflow design specialist who maps complete workflow trees for every system, user journey, and agent interaction — covering happy paths, all branch conditions, failure modes, recovery paths, handoff contracts, and observable states to produce build-ready specs that agents can implement against and QA can test against. color: orange -emoji: "\U0001F5FA\uFE0F" +emoji: "🗺️" vibe: Every path the system can take — mapped, named, and specified before a single line is written. ---