sublinkpro

Manage SublinkPro proxy nodes, subscriptions, and shares through its REST API.

1.6k|221|Updated Oct 28, 2025
One-click install
npx skills add https://github.com/ZeroDeng01/sublinkPro --skill sublinkpro-zerodeng01
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sublinkpro
Source: https://github.com/ZeroDeng01/sublinkPro/tree/main/skill-sublinkpro
Command: npx skills add https://github.com/ZeroDeng01/sublinkPro --skill sublinkpro-zerodeng01

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Managing a SublinkPro proxy subscription instance normally requires clicking through the web UI and knowing exact API parameters; this Skill lets an AI assistant operate the instance through natural language, including deploying a new instance from scratch. ## Core Features & Use Cases - Guided node and subscription management: Add nodes from proxy links, build subscriptions with templates and filters, and create share links, with the assistant discovering existing groups, nodes, and templates so you pick from lists instead of typing. - Airports, templates, and tags: Import airports with scheduled pulls, edit Clash/Surge templates manually or via AI edit sessions, and manage tags, chain proxy rules, tasks, and dashboard stats. - Deployment and lifecycle: Deploy SublinkPro via docker, docker-compose, or the install script locally or over SSH, then check status, view logs, update, or uninstall. - Use Case: Say "add this node: vless://... and put it in a subscription with a share link" and the assistant confirms each step, calls the correct form or JSON endpoint, and returns the consumable share URL. ## Quick Start Set the SUBLINK_BASE_URL and SUBLINK_API_KEY environment variables, then ask the assistant to show all your subscriptions or add a node.

Frequently Asked Questions about sublinkpro

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage SublinkPro subscriptions with an AI assistant?

Install the skill into your agent's skills directory, set SUBLINK_BASE_URL and SUBLINK_API_KEY, then describe what you want in plain language. The assistant discovers existing groups, nodes, and templates, confirms changes, and calls the REST API for you.

How do I get a SublinkPro API key?

Open the SublinkPro web UI, sign in, go to Settings then Access Keys, click Create, and copy the key shown once. Set it as the SUBLINK_API_KEY environment variable so the skill can authenticate API calls.

Can this skill deploy SublinkPro without an existing instance?

Yes, it guides deployment via docker run, docker-compose, or the one-line install script, locally or on a remote host over SSH. After a health check on /api/v1/version, it walks you through first-run login and API key creation.

Why does a SublinkPro API call return a parameter error?

The most common cause is a form versus JSON content-type mismatch or wrong field casing, since endpoints are inconsistent. The skill maps each endpoint to the correct content type and checks the body code field rather than HTTP status.

Does the skill require Python to call the API?

No, curl is the default and sufficient calling method on macOS, Windows, and Linux. The optional scripts/sublink.py helper only adds auth header handling and error checking when Python 3 is available, using only the standard library.