diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,12 @@
+0.5.2
+---
+
+- Helpers from `UpdateParser` module fixed, `commandWithBotName` added (see [#121](https://github.com/fizruk/telegram-bot-simple/pull/121));
+
 0.5.1
 ---
 
-- Fix Haddock inconsistency around `ParseMode` (see [#114](https://github.com/fizruk/telegram-bot-simple/pull/114));
+- Fix inconsistency around `ParseMode` (see [#114](https://github.com/fizruk/telegram-bot-simple/pull/114));
 - Fix `copyMessage` method (see [#116](https://github.com/fizruk/telegram-bot-simple/pull/116));
 - Add CI via GitHub Actions (see [#119](https://github.com/fizruk/telegram-bot-simple/pull/119));
 - Fix GHC 9.0 compilation regression (see [#120](https://github.com/fizruk/telegram-bot-simple/pull/120));
diff --git a/src/Telegram/Bot/Simple/UpdateParser.hs b/src/Telegram/Bot/Simple/UpdateParser.hs
--- a/src/Telegram/Bot/Simple/UpdateParser.hs
+++ b/src/Telegram/Bot/Simple/UpdateParser.hs
@@ -48,7 +48,7 @@
 parseUpdate = runUpdateParser
 
 text :: UpdateParser Text
-text = UpdateParser (updateMessage >=> messageText)
+text = UpdateParser (extractUpdateMessage >=> messageText)
 
 plainText :: UpdateParser Text
 plainText = do
@@ -65,6 +65,14 @@
       -> pure (Text.unwords ws)
     _ -> fail "not that command"
 
+commandWithBotName :: Text -> Text -> UpdateParser Text
+commandWithBotName botname commandname = do
+  t <- text
+  case Text.words t of
+    (w:ws)| w `elem` ["/" <> commandname <> "@" <> botname, "/" <> commandname]
+      -> pure (Text.unwords ws)
+    _ -> fail "not that command"
+
 callbackQueryDataRead :: Read a => UpdateParser a
 callbackQueryDataRead = mkParser $ \update -> do
   query <- updateCallbackQuery update
@@ -72,8 +80,8 @@
   readMaybe (Text.unpack data_)
 
 updateMessageText :: Update -> Maybe Text
-updateMessageText = updateMessage >=> messageText
+updateMessageText = extractUpdateMessage >=> messageText
 
 
 updateMessageSticker :: Update -> Maybe Sticker
-updateMessageSticker = updateMessage >=> messageSticker 
+updateMessageSticker = extractUpdateMessage >=> messageSticker
diff --git a/telegram-bot-simple.cabal b/telegram-bot-simple.cabal
--- a/telegram-bot-simple.cabal
+++ b/telegram-bot-simple.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           telegram-bot-simple
-version:        0.5.1
+version:        0.5.2
 synopsis:       Easy to use library for building Telegram bots.
 description:    Please see the README on Github at <https://github.com/fizruk/telegram-bot-simple#readme>
 category:       Web
