{
  "name": "知萃保存",
  "description": "通过 Integration Token 把链接或文本保存到知萃",
  "icon": "bookmark",
  "color": "#3B82F6",
  "inputs": [
    {
      "type": "text",
      "label": "分享内容或链接"
    }
  ],
  "actions": [
    {
      "type": "comment",
      "text": "知萃保存快捷指令 - 版本 2.0"
    },
    {
      "type": "get_variable",
      "variable": "Shortcut Input"
    },
    {
      "type": "match_text",
      "input": "Shortcut Input",
      "pattern": "https?://[^\\s]+",
      "output": "url_match"
    },
    {
      "type": "if",
      "condition": {
        "type": "has_value",
        "value": "URL 匹配"
      },
      "actions_if": [
        {
          "type": "get_contents_of_url",
          "url": "{{app_origin}}/api/integration/collect",
          "method": "POST",
          "headers": {
            "Content-Type": "application/json",
            "X-API-Token": "{{integration_token}}"
          },
          "body": {
            "type": "url",
            "url": "{{URL 匹配}}",
            "tags": [
              "iOS快捷指令"
            ]
          }
        }
      ],
      "actions_else": [
        {
          "type": "get_contents_of_url",
          "url": "{{app_origin}}/api/integration/collect",
          "method": "POST",
          "headers": {
            "Content-Type": "application/json",
            "X-API-Token": "{{integration_token}}"
          },
          "body": {
            "type": "text",
            "title": "来自 iOS 快捷指令",
            "contentText": "{{Shortcut Input}}",
            "tags": [
              "iOS快捷指令"
            ]
          }
        }
      ]
    },
    {
      "type": "show_notification",
      "title": "知萃",
      "body": "内容已提交到知萃",
      "sound": "default"
    }
  ],
  "setup": {
    "questions": [
      {
        "key": "app_origin",
        "label": "知萃 Web 地址",
        "type": "text",
        "description": "例如 https://infodigest.app 或 http://localhost:3000"
      },
      {
        "key": "integration_token",
        "label": "Integration Token",
        "type": "secure_text",
        "description": "在 信息中心 -> Integrations 中生成"
      }
    ]
  },
  "import_url": "https://infodigest.app/shortcuts/save",
  "version": "2.0",
  "min_ios": "14.0"
}
