{
  "name": "果核Pulse",
  "description": "果圈视角的科技情报站 — 每日果圈简报 + 知识库对话",
  "homepage": "https://thecorepulse.cc",
  "skills": [
    {
      "id": "get_briefing",
      "name": "获取每日果圈简报",
      "description": "获取今天的果圈科技简报，包含热点信号和深度文章摘要。每日北京时间 09:15 左右更新。",
      "endpoint": "https://thecorepulse.cc/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://thecorepulse.cc/api/brief.json",
        "usage": "读取返回 JSON 中的 textPlain 字段，即为今日果圈简报全文。"
      }
    },
    {
      "id": "query_knowledge",
      "name": "查询 果核知识库",
      "description": "向 果核Pulse 知识库提问，获取基于全站文章和信号的 AI 生成答案，附带引用来源。",
      "endpoint": "https://search.core-pulse.pages.dev",
      "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.core-pulse.pages.dev -H \"Content-Type: application/json\" -d '{\"query\":\"iOS 27 有什么新功能\"}'",
        "usage": "发送 POST 请求，读取返回 JSON 中的 answer 字段即为答案，sources 为参考来源。"
      }
    },
    {
      "id": "get_trends",
      "name": "获取 果圈趋势分析",
      "description": "获取最近 7 天的果圈话题趋势，包含热门标签排名、涨跌幅和新兴话题。每次构建自动更新。",
      "endpoint": "https://thecorepulse.cc/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://thecorepulse.cc/api/trends.json",
        "usage": "读取 trending 了解全局排行，重点看 hotspots 获取上升最快话题的具体内容（信号 + 文章）。"
      }
    }
  ],
  "meta": {
    "version": "1.0",
    "updatedAt": "2026-06-13T15:37:12.199Z",
    "llmsTxt": "https://thecorepulse.cc/llms.txt",
    "manifest": "https://thecorepulse.cc/api/manifest.json"
  }
}