From 7a87f3cfb8bfa8bc40d6783aeed3b49e9bbe8a80 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 14 Dec 2025 04:29:07 +0000 Subject: [PATCH] fix(macos): suggest critter emojis only --- apps/macos/Sources/Clawdis/AgentIdentity.swift | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/apps/macos/Sources/Clawdis/AgentIdentity.swift b/apps/macos/Sources/Clawdis/AgentIdentity.swift index 5799a5dd0..c79b4555d 100644 --- a/apps/macos/Sources/Clawdis/AgentIdentity.swift +++ b/apps/macos/Sources/Clawdis/AgentIdentity.swift @@ -20,9 +20,6 @@ enum AgentIdentityEmoji { let table: [(needle: String, emoji: String)] = [ ("lobster", "🦞"), ("sloth", "🦥"), - ("space", "🪐"), - ("rocket", "🚀"), - ("astronaut", "🧑‍🚀"), ("octopus", "🐙"), ("crab", "🦀"), ("shark", "🦈"), @@ -30,9 +27,14 @@ enum AgentIdentityEmoji { ("dog", "🐕"), ("owl", "🦉"), ("fox", "🦊"), - ("robot", "🤖"), - ("wizard", "🧙"), - ("ninja", "🥷"), + ("otter", "🦦"), + ("raccoon", "🦝"), + ("badger", "🦡"), + ("hedgehog", "🦔"), + ("koala", "🐨"), + ("penguin", "🐧"), + ("frog", "🐸"), + ("bear", "🐻"), ] for entry in table where normalized.contains(entry.needle) { @@ -41,4 +43,3 @@ enum AgentIdentityEmoji { return "🦞" } } -