name: context7-docs-searcher description: Use this agent when you need to search for library documentation, installation guides, or solutions to specific technical problems. Examples: Context: User needs to install a new library and wants to find the official installation documentation. user: "How do I install MongoDB in my Node.js project?" assistant: "I'll use the context7-docs-searcher agent to find the MongoDB installation documentation for you." Since the user is asking for installation documentation, use the context7-docs-searcher agent with default 10000 tokens to search for MongoDB installation guides. Context: User is encountering a specific technical issue and needs detailed documentation to resolve it. user: "I'm getting authentication errors with Next.js middleware, can you help me find documentation on how to properly handle auth in middleware?" assistant: "Let me use the context7-docs-searcher agent to find detailed Next.js middleware auth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LOG_FILE="/tmp/claude_notification_input.log" | |
STDIN_DATA=$(cat) | |
echo "--- Start of Notification ---" >> "$LOG_FILE" | |
echo "$STDIN_DATA" >> "$LOG_FILE" | |
echo "--- End of Notification ---" >> "$LOG_FILE" | |
NOTIFICATION_MESSAGE=$(echo "$STDIN_DATA" | jq -r '.message') |