Documentation

Create a Prompt

Create via the Dashboard

01

Open the Prompts page

Click "Prompts" in the Dashboard sidebar.

02

Click "New Prompt"

Hit the button in the top-right corner to open the creation form.

03

Fill in the details

Enter a title, body content, tags, and a category.

04

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"
  }'