Skip to content

Latest commit

 

History

History
77 lines (62 loc) · 2.01 KB

README.md

File metadata and controls

77 lines (62 loc) · 2.01 KB

中文指南

singbox_subscription_convert

A tools for partially converting clash subscription to singbox config.

Note: Only support vmess protocol convert at now.

Usage

subscription_convert <subscribe address> [-t <template path>] [-o <output path>]
  • subscribe address

    The tool will automatically append the flag=clash parameter to the subscription address to get the YAML format subscription.

  • -t <template path>

    Specify a JSON template for generating sing-box. If not specified, the tool's built-in template will be used.

  • -o <output path>

    Specify the output directory or file path for the generated sing-box configuration.

Subscription Update Rules

The tool only modifies the outbounds configuration.
The first six configurations are fixed. After the tool obtains the clash subscription, it modifies the fifth and sixth configurations.
It fills the outbounds field for the urltest type configuration and fills the outbounds and default fields for the selector type configuration. The default field takes the first subscription tag by default.

The first six configurations of outbounds are as follows:

"outbounds": [
  {
    "tag": "DNS-OUT",
    "type": "dns"
  },
  {
    "tag": "DIRECT",
    "type": "direct"
  },
  {
    "tag": "REJECT",
    "type": "block"
  },
  {
    "tag": "🚀 节点选择",
    "type": "selector",
    "interrupt_exist_connections": true,
    "default": "♻️ 自动选择",
    "outbounds": [
      "♻️ 自动选择",
      "🚀 手动切换"
    ]
  },
  {
    "tag": "♻️ 自动选择",
    "type": "urltest",
    "url": "https://www.gstatic.com/generate_204",
    "interval": "3m",
    "tolerance": 50,
    "idle_timeout": "50m",
    "interrupt_exist_connections": true,
    "outbounds": []
  },
  {
    "tag": "🚀 手动切换",
    "type": "selector",
    "interrupt_exist_connections": true,
    "default": "",
    "outbounds": []
  }
]