Fuzzy search and browse Apple Messages/iMessage. Use when user asks to find texts, search messages, look up conversations, find what someone said, who texted recently, or view recent messages.
Fuzzy search and browse Apple Messages/iMessage. Use when user asks to find texts, search messages, look up conversations, find what someone said, who texted recently, or view recent messages.
/plugin marketplace add cardmagic/ai-marketplace/plugin install cardmagic-messages-plugins-messages@cardmagic/ai-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Fuzzy search through Apple Messages using the messages CLI tool.
If the messages CLI is not installed, install it:
git clone https://github.com/cardmagic/messages.git
cd messages && make install
Requirements:
Use this skill when user asks about:
Proactive triggers: "find text", "search messages", "what did X say", "message from", "text about", "iMessage", "look up conversation", "who texted", "recent messages", "recent texts"
For browsing recent messages and conversations (no search query needed):
# Show most recent messages (answers "who texted me?")
messages recent
# List contacts by recent activity
messages contacts --limit 10
# List conversations with message counts
messages conversations
# Show recent messages from/to a specific person
messages from "John"
# Show full conversation thread with someone
messages thread "John" --after 2024-12-01
For fuzzy searching through message content:
# Rebuild index and search (recommended)
messages index-and-search "search query"
# Search with filters
messages search "query" --from "John"
messages search "query" --after 2024-06-01
messages search "query" --limit 25
messages search "query" --context 5
# Combine options
messages search "dinner" --from "Mom" --after 2024-01-01 --limit 15
# Check index stats (message count, date range, etc.)
messages stats
# Rebuild index only
messages index
| Option | Description | Example |
|---|---|---|
--from, -f | Filter by sender name or phone | --from "John Smith" |
--after, -a | Messages after date | --after 2024-06-01 |
--limit, -l | Max results (default: 10) | --limit 25 |
--context, -c | Messages before/after match (default: 2) | --context 5 |
"dinner plans"--from "John" matches "John Smith"--from "+1555"--limit for broader searches--context to see more conversation around matches