文档

快速上手

从注册账号到使用第一个提示词,只需 3 分钟。根据你的使用场景,选择下方对应的方式开始。

For Human

通过 PromptMan 网页界面和浏览器插件使用,无需编写代码。

01

注册 / 登录

访问 prompt.solokit.run/login,使用邮箱注册或直接登录账号。

02

创建第一个提示词

在 Dashboard → 提示词 页面,点击「新建提示词」,填写标题和内容后保存。

03

安装浏览器插件

前往 Chrome Web Store 安装 PromptMan 插件,登录后提示词库自动同步。

04

在任意页面调用

打开 ChatGPT、Claude 或任意输入框,输入 / 即可调用你的提示词。

TIP

使用快捷键 ⌘ / Ctrl + Shift + P 可在任意页面全局搜索提示词。

For Agent

通过 PromptMan Skill 文件,让你的 AI Agent 直接操作提示词库。将以下指令复制给你的 Agent 即可开始。

一键开始(复制发给 Agent)

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

NOTE

SKILL.md 文件包含完整的 API 文档和认证说明,Agent 读取后即可自主完成提示词的增删改查。

手动配置 API Token

bash
# 第一步:获取 API Token
curl -X POST https://prompt.solokit.run/api/auth/token \
  -H "Content-Type: application/json" \
  -d '{"email": "YOUR_EMAIL", "password": "YOUR_PASSWORD"}'

# 返回示例
# { "token": "ph_a1b2c3...", "userId": "u_xxx" }
bash
# 第二步:使用 Token 操作提示词
curl https://prompt.solokit.run/api/prompts \
  -H "Authorization: Bearer ph_your_token"

CAUTION

请妥善保存 Token,不要将其提交到代码仓库或暴露在前端代码中。