smyp
v0.2.0
Published
Show Me Your Prompt! A tool to format chat session markdown files.
Maintainers
Readme
SMYP
Show Me Your Prompt! - A tool to format chat session markdown files.
🛠️ Available Scripts
Format Chat Session
Script for cleaning and formatting raw chat sessions.
Documentation: scripts/README.md
Quick Usage:
# Use with npx (no installation required)
npx smyp prompts/my-session.md
# Or install globally
npm install -g smyp
smyp prompts/my-session.md
# Display help
smyp --helpFeatures:
- ✅ Automatic structuring (prompts/responses/actions)
- ✅ File path simplification
- ✅ Idempotent execution (can be re-run safely)
- ✅ Complete information preservation
📁 Project Structure
smyp/
├── scripts/ # Utility scripts
│ ├── format-chat-session.js
│ └── README.md # Script documentation
└── package.json🚀 Installation
Option 1: Use with npx (no installation)
npx smyp prompts/my-session.mdOption 2: Global installation
npm install -g smyp
smyp prompts/my-session.mdOption 3: Local development
# Clone the repository
git clone <repository-url>
cd smyp
# Use the script directly
node scripts/format-chat-session.js prompts/my-session.md