{
  "name": "AI Pulse",
  "description": "说人话的 AI 情报站 — 每日 AI 简报 + 知识库对话",
  "homepage": "https://ai-pulse-lab.com",
  "skills": [
    {
      "id": "get_briefing",
      "name": "获取每日 AI 简报",
      "description": "获取今天的 AI 新闻简报，包含热点信号和深度文章摘要。每日北京时间 09:00、14:30 和 19:30 更新。",
      "endpoint": "https://ai-pulse-lab.com/api/brief.json",
      "method": "GET",
      "authentication": "none",
      "rateLimit": "每日不超过 3 次，建议在更新后 30 分钟查询",
      "response": {
        "format": "application/json",
        "fields": {
          "text": "Markdown 格式简报全文",
          "textPlain": "纯文本格式简报全文",
          "date": "简报日期 YYYY-MM-DD",
          "signalCount": "信号数量",
          "articleCount": "文章数量"
        }
      },
      "example": {
        "request": "curl https://ai-pulse-lab.com/api/brief.json",
        "usage": "读取返回 JSON 中的 textPlain 字段，即为今日 AI 简报全文。"
      }
    },
    {
      "id": "query_knowledge",
      "name": "查询 AI 知识库",
      "description": "向 AI Pulse 知识库提问，获取基于全站文章和信号的 AI 生成答案，附带引用来源。",
      "endpoint": "https://search.ai-pulse-lab.com",
      "method": "POST",
      "authentication": "none",
      "rateLimit": "无硬性限制，建议合理使用",
      "request": {
        "contentType": "application/json",
        "body": {
          "query": "你的问题（中文或英文）"
        }
      },
      "response": {
        "format": "application/json",
        "fields": {
          "answer": "AI 生成的答案文本（纯文本，分段）",
          "sources": "引用来源列表，含标题和链接",
          "cached": "是否为缓存命中"
        }
      },
      "example": {
        "request": "curl -X POST https://search.ai-pulse-lab.com -H \"Content-Type: application/json\" -d '{\"query\":\"Claude Code 最新进展\"}'",
        "usage": "发送 POST 请求，读取返回 JSON 中的 answer 字段即为答案，sources 为参考来源。"
      }
    },
    {
      "id": "get_trends",
      "name": "获取 AI 趋势分析",
      "description": "获取最近 7 天的 AI 话题趋势，包含热门标签排名、涨跌幅和新兴话题。每次构建自动更新。",
      "endpoint": "https://ai-pulse-lab.com/api/trends.json",
      "method": "GET",
      "authentication": "none",
      "rateLimit": "每日不超过 3 次，建议在更新后 30 分钟查询",
      "response": {
        "format": "application/json",
        "fields": {
          "period": "统计周期，如 2026-05-11 ~ 2026-05-17",
          "trending": "热门话题列表，含 topic/count/change/trend",
          "hotspots": "上升最快的 3 个话题详情，每个含 3 条最新信号和 1 篇深度文章",
          "emerging": "新兴话题（本周新出现的标签）"
        }
      },
      "example": {
        "request": "curl https://ai-pulse-lab.com/api/trends.json",
        "usage": "读取 trending 了解全局排行，重点看 hotspots 获取上升最快话题的具体内容（信号 + 文章）。"
      }
    }
  ],
  "meta": {
    "version": "1.0",
    "updatedAt": "2026-05-27T14:27:56.107Z",
    "llmsTxt": "https://ai-pulse-lab.com/llms.txt",
    "manifest": "https://ai-pulse-lab.com/api/manifest.json"
  }
}