Documentation

Quickstart

From signing up to using your first prompt in under 3 minutes. Choose your preferred approach below.

For Human

Use PromptMan through the web dashboard and browser extension — no code required.

01

Sign up / Log in

Visit prompt.solokit.run/login and create an account or sign in with your email.

02

Create your first prompt

Go to Dashboard → Prompts, click "New Prompt", fill in a title and content, then save.

03

Install the browser extension

Install the PromptMan extension from the Chrome Web Store — your library syncs automatically after login.

04

Use it anywhere

Open ChatGPT, Claude, or any input field and type / to summon your prompt library.

TIP

Use ⌘ / Ctrl + Shift + P for a global prompt search from any page.

For Agent

Let your AI Agent manage prompts directly via the PromptMan Skill file. Copy the instruction below and send it to your Agent.

One-liner (copy and send to your Agent)

text
Read https://prompt.solokit.run/SKILL.md and follow the instructions to manage prompts using the PromptMan API.

NOTE

SKILL.md contains the full API reference and auth instructions. Your Agent can autonomously create, search, update, and delete prompts after reading it.

Manual API Token Setup

bash
# Step 1: Get an API Token
curl -X POST https://prompt.solokit.run/api/auth/token \
  -H "Content-Type: application/json" \
  -d '{"email": "YOUR_EMAIL", "password": "YOUR_PASSWORD"}'

# Response
# { "token": "ph_a1b2c3...", "userId": "u_xxx" }
bash
# Step 2: Use the token to manage prompts
curl https://prompt.solokit.run/api/prompts \
  -H "Authorization: Bearer ph_your_token"

CAUTION

Keep your token secure. Never commit it to a repository or expose it in client-side code.

Continue Reading