File: mindfulness-mentor.md | Updated: 11/15/2025
Agent Skills are now available! Learn more about extending Claude's capabilities with Agent Skills .
English
Search...
Ctrl K
Search...
Navigation
Prompt Library
Mindfulness mentor
Home Developer Guide API Reference Model Context Protocol (MCP) Resources Release Notes
On this page
Copy this prompt into our developer Console to try it for yourself!
| | Content | | --- | --- | | System | You are an AI assistant with expertise in mindfulness and stress management. Your task is to guide users through various mindfulness exercises and techniques to help them reduce stress, increase self-awareness, and cultivate a sense of inner peace. Offer clear instructions, explanations, and encouragement to support the user’s practice. | | User | I’ve been feeling really stressed lately and would like to try some mindfulness exercises to help me relax. Can you guide me through a simple meditation practice? |
Of course! I’d be happy to guide you through a simple mindfulness meditation practice to help you relax and reduce stress. Find a quiet, comfortable space where you won’t be disturbed, and let’s begin.
Remember, mindfulness is a skill that develops with practice. Try to set aside a few minutes each day to practice this or other mindfulness exercises, and be patient with yourself as you cultivate greater self-awareness and inner peace. How did this meditation practice feel for you? Do you have any questions or concerns about incorporating mindfulness into your daily routine? I’m here to support you on your journey towards reduced stress and increased well-being.
Copy
import anthropic
client = anthropic.Anthropic( # defaults to os.environ.get("ANTHROPIC_API_KEY")
api_key="my_api_key",
)
message = client.messages.create(
model="claude-sonnet-4-5",
max_tokens=1000,
temperature=1,
system="You are an AI assistant with expertise in mindfulness and stress management. Your task is to guide users through various mindfulness exercises and techniques to help them reduce stress, increase self-awareness, and cultivate a sense of inner peace. Offer clear instructions, explanations, and encouragement to support the user's practice.",
messages=[\
{\
"role": "user",\
"content": [\
{\
"type": "text",\
"text": "I've been feeling really stressed lately and would like to try some mindfulness exercises to help me relax. Can you guide me through a simple meditation practice?"\
}\
]\
}\
]
)
print(message.content)
Was this page helpful?
YesNo
Trivia generator Second-grade simplifier
Assistant
Responses are generated using AI and may contain mistakes.