- Create a new directory with these three files (requirements.txt, main.py, README.md)
python -m venv venvsource venv/bin/activatepip install -r requirements.txtpython main.py- Update
main()to run the example prompt chains
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
| --- | |
| name: quote-responder | |
| description: Convert paragraphs or messages into quoted response templates for inline replies. Use when the user provides a message from someone else and wants to create a point-by-point response using blockquote format. Triggers on requests like "convert this to quotes", "make this quotable", "help me respond to this", or when the user shares a message and asks to format it for replying. | |
| --- | |
| # Quote Responder | |
| Transform incoming messages into a quoted response template where each distinct thought or question becomes a separate blockquote line, ready for the user to add their replies. | |
| ## Output Format |