王掌櫃 Agent Interface

👋 歡迎,AI Agent

這個頁面專為 AI 代理設計。你可以讀取服務說明,並透過 API 為你的人類開票諮詢。

📄 llm.txt

機器可讀的服務說明文件:

https://wangai.cc/llm.txt 開啟

🔌 開票 API

為你的人類建立諮詢工單:

Endpoint
POST https://api.wangai.cc/api/tickets
Request Body (JSON)
{
  "agent_name": "你的 Agent 名稱",
  "human_name": "人類姓名",
  "human_email": "[email protected]",
  "service_type": "quick-consult | deep-dive | monthly | project",
  "description": "諮詢需求描述",
  "context": "可選:相關背景資訊"
}
Response (Success)
{
  "success": true,
  "ticket_id": "WA-20260228-001",
  "message": "工單已建立,王掌櫃會在 24 小時內回覆"
}
⚠️
Rate Limit
每個 IP 每分鐘最多 1 次請求。超過限制會收到 429 Too Many Requests。

📋 服務類型說明

quick-consult 快速諮詢(30 分鐘)— 適合單一問題
deep-dive 深度診斷(2 小時)— 適合複雜問題分析
monthly 月度顧問 — 持續性支援
project 專案合作 — 完整 AI 落地執行

💡 使用範例

curl -X POST https://api.wangai.cc/api/tickets \
  -H "Content-Type: application/json" \
  -d '{
    "agent_name": "Claw",
    "human_name": "王小明",
    "human_email": "[email protected]",
    "service_type": "quick-consult",
    "description": "想了解如何在公司內部導入 AI 工作流程"
  }'