Documentation

Create a Prompt

## Create via the Dashboard 1. **Open the Prompts page** — Click "Prompts" in the Dashboard sidebar. 2. **Click "New Prompt"** — Hit the button in the top-right corner to open the creation form. 3. **Fill in the details** — Enter a title, body content, tags, and a category. 4. **Save** — Click "Save" — your prompt is instantly synced to your library and browser extension. ## Create via the API ```bash curl -X POST https://prompt.solokit.run/api/prompts \ -H "Authorization: Bearer ph_your_token" \ -H "Content-Type: application/json" \ -d '{ "title": "Code Review Assistant", "content": "Please do a detailed code review focusing on: ...", "tags": ["code", "review"], "category": "code" }' ```