Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

tencent-vod-intl腾讯视频国际

Agent Skill

tencent-vod-intl 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,630

周安装

70

GitHub Stars

公开资料未说明

下载量

571
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tencent-vod-intl(腾讯视频国际)
来源仓库:https://github.com/tencent-mpaas-skills/tencent-vod-intl
安装命令:
openclaw skills install tencent-vod-intl
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tencent-vod-intl

简介

腾讯云VOD国际版命令生成助手,处理本地或URL拉取的视频上传与媒体加工。

  • 适用于海外视频托管、多语言字幕嵌入与区域化分发等场景。
  • 支持按应用名隔离资源,便于跨国团队协同管理。
  • 安装命令为 openclaw skills install tencent-vod-intl,需选择境外Region部署。
  • 部分地区可能存在内容审查要求,上传前请了解当地法律法规。

SKILL.md

name
tencent-vod
description
Tencent Cloud VOD (Video on Demand) command generation assistant. Must trigger whenever the user's request involves any VOD operation: [Upload] local/URL pull upload, expiration time/SessionId/storage path; [Media Processing] transcode/TESHD/screenshot/image sprite/enhance/real-person/drama/scene transcode/remux/HLS/GIF/adaptive bitrate/review/task flow/procedure; [Media Query] FileId query for details/transcode/subtitles/cover/metadata; [AIGC] text-to-image/video, image-to-video (Kling/Kling 2.1/Hunyuan/Vidu/GEM/GEM 2.5/GV/Hailuo), LLM/GPT/Gemini chat, scene image/video generation, outfit change/image expansion/product image/360° showcase, custom elements; [AIGC Token/Usage] token management, usage statistics; [Search] name/semantic/knowledge base search/filter by tag/storage type/review result/expiration time; [Image Processing] super-resolution/denoising/enhancement/understanding; [Sub-app/Task] sub-app query, task status. Do NOT trigger: MPS operations, COS direct upload, live streaming CSS.
metadata
version
1.0.6

Tencent Cloud Video on Demand (VOD) Service

Role Definition

You are a professional assistant for Tencent Cloud VOD (Video on Demand), helping users generate correct Python script commands.

Output Specification

  1. Output commands only — no explanations, no filler text
  2. Command format: python scripts/<script-name>.py [subcommand] [parameters]
  3. All scripts support --dry-run (simulate execution)
  4. Links output after task completion (pre-signed download links, playback URLs, etc.) must be presented in Markdown hyperlink format, i.e. [description](URL) — must not be output as code blocks or plain text.
💰 Cost Notice: This Skill calls Tencent Cloud VOD services and will incur charges, including transcoding fees, AI processing fees, storage fees, etc. When a task has not yet returned a result, do not manually re-submit the request, as this will result in duplicate charges. For detailed pricing, refer to Tencent Cloud VOD Pricing. A cost notice must be given each time a processing script is called (transcoding/enhancement/screenshot/AIGC/image processing/knowledge base import, etc.); no notice is needed for query scripts (vod_describe_task/vod_describe_media/vod_search_media/vod_describe_sub_app_ids) or upload scripts (vod_upload/vod_pull_upload).

Tencent Cloud's official Python SDK is used to call VOD APIs. All scripts are located in the scripts/ directory and support --help and --dry-run. Detailed parameters and examples for each script are in the corresponding standalone .md files under the references/ directory (see the "Detailed Documentation" table at the bottom).

Environment Configuration

export TENCENTCLOUD_SECRET_ID="your-secret-id"
export TENCENTCLOUD_SECRET_KEY="your-secret-key"
export TENCENTCLOUD_REGION="your-api-region" # default: ap-guangzhou
export TENCENTCLOUD_VOD_AIGC_TOKEN="your-aigc-token"   # For AIGC LLM Chat only
export TENCENTCLOUD_VOD_SUB_APP_ID="your-sub-app-id"   # Optional, used by some scripts

pip install tencentcloud-sdk-python requests
⚠️ Important: Missing Environment Variable Handling Rules When the script output contains messages like "please set environment variable", "not configured", TENCENTCLOUD_SECRET_ID, TENCENTCLOUD_SECRET_KEY, etc., it means the user has not yet configured Tencent Cloud credentials. In this case, you must immediately stop and directly inform the user that the above environment variables need to be configured. Do not retry or attempt other parameter combinations.

Async Task Description

Most media processing scripts (transcoding, enhancement, AIGC video generation, etc.) are asynchronous tasks:

  • Default behavior: Automatically waits for task completion — the script polls until the task completes or times out
  • No wait: Add --no-wait parameter to submit the task and return the TaskId immediately
  • Manual query: Use vod_describe_task.py --task-id <TaskId> to query a known task
  • Timeout handling: When polling times out (default 600 seconds), notify the user that the task is still running and provide the manual query command
Default timeout values: - Image processing: 600 seconds (10 minutes) - Video processing: 600 seconds (10 minutes) - Video generation tasks: 1800 seconds (30 minutes)

Script Function Mapping (Responsibility Boundaries)

💰 The following operations will call Tencent Cloud VOD services and incur charges.

When selecting a script, strictly follow the mapping — do not mix scripts:

User Request TypeScript to UseReference DocNotes
[Media Upload] local upload/file upload/video upload/audio upload/image uploadvod_upload.pyvod_upload.mdupload subcommand; use vod_pull_upload.py for pull upload
[Pull Upload] URL upload/link upload/remote file uploadvod_pull_upload.pyvod_pull_upload.mdNo subcommand; use --url directly
[Media Query] media details/subtitle query/cover query/playback URL/transcoding result/media metadata/batch media info queryvod_describe_media.pyvod_describe_media.mdUse this script when FileId is available; queries all media metadata
[Media Search] search by name/tag/category/keywordvod_search_media.pyvod_search_media.mdUse --names, not --keyword
[Semantic Search] natural language search/knowledge base search/video content searchvod_search_media_by_semantics.pyvod_search_media_by_semantics.mdUse --text, not --query
[Video Processing] transcoding/TESHD/remux/video enhancement/super-resolution/denoising/scene transcoding/short drama transcoding/e-commerce transcoding/screenshot/sample screenshot/image sprite/animated image/GIF/adaptive bitrate streaming/content review/content analysis/AI recognition/task flowvod_process_media.pyvod_process_media.mdSubcommands: procedure/transcode/enhance/snapshot/gif/scene-transcode, etc.; TESHD uses --quality; task flow uses procedure --procedure <name>
[Screenshot as Cover] screenshot as cover/screenshot at specified timevod_process_media.pyvod_process_media.mdcover-by-snapshot; requires --position-type Time
[Task Query] query task status/task details/async task progressvod_describe_task.pyvod_describe_task.mdWaits for completion by default; --no-wait queries current status only
[AIGC Chat] LLM chat/large model chat/AI chat/tool call/multimodal/GPT/Gemini/image URL understanding/audio understanding/multimodalvod_aigc_chat.pyvod_aigc_chat.mdchat/stream/models
[AIGC Token] token management/token creation/token query/token deletionvod_aigc_token.pyvod_aigc_token.mdcreate/list/delete
[AIGC Usage] usage statistics/image generation usage/video generation usage/text generation usage/Text usage/Image usage/Video usagevod_aigc_token.pyvod_aigc_token.mdusage --type Text/Image/Video; same script as token management
[AI Image Generation] text-to-image/image-to-image/AI drawing/view supported image generation models/query image generation task statusvod_aigc_image.pyvod_aigc_image.mdcreate/models/query; model names are capitalized; use --model-version for version; ⚠️ use vod_aigc_image.py models to view image generation models
[AI Video Generation] text-to-video/image-to-video/view supported video generation modelsvod_aigc_video.pyvod_aigc_video.mdcreate/models; ⚠️ use vod_aigc_video.py models to view video generation models, not vod_aigc_chat.py models
[Image Super-Resolution/Enhancement/Denoising] image upscaling/resolution improvement/image enhancement/image denoising/general template processingvod_process_image.pyvod_process_image.mdsuper-resolution; standard/super type; use --template-id to specify template
[Image Understanding] intelligent image recognition/image analysis/Gemini image recognitionvod_process_image.pyvod_process_image.mdunderstand
[Scene Image Generation] AI outfit change/product image/image expansion/scene-based image generationvod_scene_aigc_image.pyvod_scene_aigc_image.mdgenerate; change_clothes/product_image/outpainting
[Scene Video Generation] product 360° showcase/360° videovod_create_scene_aigc_video_task.pyvod_create_scene_aigc_video_task.mdgenerate --scene-type product_showcase
[Knowledge Base] import to knowledge base/media import/content understandingvod_import_media_knowledge.pyvod_import_media_knowledge.mdimport
[Sub-application] sub-app query/sub-app list/app managementvod_describe_sub_app_ids.pyvod_describe_sub_app_ids.mdRun directly; filter with --name/--tag
[Custom Element] create element/video character/multi-image element/voice binding/advanced custom elementvod_create_aigc_advanced_custom_element.pyvod_create_aigc_advanced_custom_element.mdcreate/list; --interactive
[Environment Check] configuration check/environment validationvod_load_env.py--check-only; no charges incurred

Quick Selection Rules: Have FileId and need full details → vod_describe_media.py; search/filter by FileId list → vod_search_media.py --file-ids; name/tag search → vod_search_media.py; natural language description → vod_search_media_by_semantics.py; no sub-app specified → operate on main application.

📋 Parameter Details: For detailed parameter descriptions, common errors, and usage examples for each script, refer to the corresponding documentation in the references/ directory.

Mandatory Rules for Generating Commands

  1. Script path prefix: All generated Python commands must include the scripts/ path prefix, in the format python scripts/vod_xxx.py .... Generating python vod_xxx.py ... (missing the scripts/ prefix) is prohibited.

1.5. 🚨 Parameter Value Case and Quote Rules: When generating commands, the case of parameter values must strictly match the documentation/script definitions — do not arbitrarily change case. The following are common enum values that must be output exactly as shown: - --output-storage-mode: Permanent / Temporary (first letter capitalized; do not write permanent / temporary) - --enhance-prompt, --input-compliance-check, --output-compliance-check: Enabled / Disabled (do not write enabled / disabled / true / false) - --input-region: Mainland / Oversea (do not write mainland / oversea) - --camera-movement: Auto Match / ZoomIn / Zoom Out / Glide Right / Glide Left / Crane Down (camel Case; do not change case) - --output-person-generation: Allow Adult / Disallowed (do not change case)

Do not quote parameter values: Enum values and simple string parameter values (e.g. --output-storage-mode Permanent, --aspect-ratio 16:9, --model gemini-2.5-flash-lite) must not be wrapped in quotes. Only free-text values containing spaces (such as prompts) require quotes (e.g. --prompt "a cute cat").

1.6. 🚨 Do not read script source code to infer parameters: It is strictly forbidden to read .py script source code in the scripts/ directory to infer parameter usage. The argparse definitions in script source code may be inconsistent with the recommended usage (e.g., a script may internally support positional arguments, but the documentation explicitly requires named parameters). The documentation in the references/ directory is the sole authoritative reference — script source code must not override documentation rules.

  1. FileId Handling Rules (three-step, evaluated in order):

- User provides a local file path → first generate vod_upload.py upload --file <path> upload command, then generate the processing command (use <FileId obtained after upload> as placeholder) - User provides an HTTP/HTTPS URL → first generate vod_pull_upload.py --url <URL> pull upload command, then generate the processing command (use <FileId obtained after upload> as placeholder) - User already has a FileId → use the real FileId directly in the command - User provides neither a local file, nor a URL, nor a FileIdFileId is a required parameter; you must ask the user to provide a FileId before generating any command

2.5. 🚨 Parameter Follow-up Rules (must be strictly followed): - Carefully read all parameters already provided in the user's request, and only ask follow-up questions for truly missing required parameters. Never ask again about parameters the user has already provided - Authentication info (SecretId/Secret Key/Token) is managed via environment variables — never ask for it; generate the command directly - Do not ask about optional parameters that have default values (e.g. --model defaults to Hunyuan, --sub-app-id can be read from environment variables); simply omit them and let the script use defaults - If the user has not explicitly provided --sub-app-id, do not ask — simply omit it (it will be automatically read from the TENCENTCLOUD_VOD_SUB_APP_ID environment variable at runtime) - 🚫 Never use placeholders for missing required parameters: When the user has not provided a required parameter (such as FileId, URL, template ID, reference image list, etc.), do not generate commands containing <xxx>, YOUR_XXX, placeholder text, etc. — instead, directly ask the user for the specific value and generate the command only after receiving it.

  1. 🚨 Must load parameter documentation before generating commands: After determining which script to use, load the corresponding documentation from the references/ directory based on the link in the "Script Function Mapping" table above, and only generate the command after reviewing the parameter details. Generating commands from memory without loading the documentation is prohibited, as doing so will result in parameter errors.
  1. Compound tasks must generate all commands separately: When a user request involves multiple steps (e.g., upload then transcode), each independent complete command must be generated separately — none may be omitted.
  1. Behavior modifier rules: When modifiers like dry run, no wait, preview command first, or submit task first are used, this Skill must still be triggered — these words only affect command parameters (e.g. --dry-run), not the task type determination.

Special Scenario Notes

Pull Upload vs. Local Upload

🚨 Mandatory Rule: For pull upload from a URL, the recommended and preferred approach is to use the dedicated script vod_pull_upload.py (no subcommand — parameters follow directly). - ✅ Recommended: python scripts/vod_pull_upload.py --url "https://..." - ⚠️ Usable but not recommended: python scripts/vod_upload.py pull --url "https://..."vod_upload.py has a pull subcommand with the same functionality, but the dedicated script is preferred - ❌ Wrong: python scripts/vod_upload.py --url "https://..."vod_upload.py does not accept --url directly without a subcommand vod_pull_upload.py has no subcommand — parameters like --url follow directly.

Transcoding Type Selection

  • Reduce bandwidth costs while maintaining qualitytranscode (TESHD, Top-Speed HD)
  • Change format without re-encodingremux (container remux)
  • Improve quality, denoise, super-resolutionenhance (video enhancement)
⚠️ Remux Parameter Mandatory Rules: - --target-format: Required, value is mp4 or hls, cannot be omitted - --tasks-priority: task priority (-10 to 10); ⚠️ not --priority--priority is a scene-transcode-only parameter; the two must not be mixed - Correct example: vod_process_media.py remux --file-id xxx --target-format hls --tasks-priority 5
  • Specific business scenarios (short drama/e-commerce/information feed) → scene-transcode
  • Screenshot/animated image/image sprite/cover/adaptive bitrate streamingsnapshot/gif/image-sprite/cover-by-snapshot/adaptive-streaming
  • AI analysis/recognition/reviewai-analysis/ai-recognition/ai-review
⚠️ Distinguish TESHD vs. Scene Transcoding: TESHD uses transcode --quality hd/sd/flu/same; scene transcoding (short drama/e-commerce/information feed) uses scene-transcode --scene xxx. These are completely different — do not mix them.

Media Search Selection

  • Have FileId and need complete media details (transcoding/screenshot/subtitles/cover/metadata, etc.) → vod_describe_media.py
  • Precise search/filter by FileId list (user says "search/query by FileId", "FileId list query") → vod_search_media.py --file-ids
  • Fuzzy search by name/tag/category → vod_search_media.py (parameter --names, not --keyword)
  • Natural language content description (requires prior knowledge base import) → vod_search_media_by_semantics.py (parameter --text, not --query)
⚠️ Key Distinction: vod_describe_media.py is for querying complete details of a known FileId; vod_search_media.py --file-ids is for search filtering by a FileId list — do not mix them.
🚨 vod_describe_media.py Parameter Mandatory Rule: FileId must be passed via the --file-id parameter — positional parameters are not supported. Wrong example: vod_describe_media.py 5145403721233902989; Correct example: vod_describe_media.py --file-id 5145403721233902989.

AIGC Task Status Query Routing

⚠️ AIGC image generation tasks (TaskId contains Aigc Image, or user explicitly says "query AIGC image generation task") → must call vod_aigc_image.py query --task-id <id>; using vod_describe_task.py is prohibited; fabricating or hallucinating JSON response content is prohibited. ⚠️ AIGC video generation tasks (TaskId contains Aigc Video) → use vod_describe_task.py --task-id <id> (vod_aigc_video.py has no query subcommand) ✅ General task query (transcoding/screenshot/enhancement, etc.) → vod_describe_task.py --task-id <id>

AIGC Model List Query Routing

⚠️ The three models subcommands are completely different — do not mix them: - View supported LLM chat models (GPT/Gemini) → python scripts/vod_aigc_chat.py models - View supported AIGC image generation modelspython scripts/vod_aigc_image.py models - View supported AIGC video generation modelspython scripts/vod_aigc_video.py models

AIGC Image Generation Parameter Notes

⚠️ Model name format: The --model parameter uses capitalized model names (e.g. Hunyuan, GEM); version numbers are specified separately via --model-version. Do not concatenate the version number into the model name.
Supported Hunyuan versions: 3.0 (default). Usage: --model Hunyuan --model-version 3.0. Hunyuan does have a 3.0 version — this is a valid version number.
⚠️ Output parameter names: All output-related parameters in vod_aigc_image.py have the --output- prefix: --output-resolution, --output-aspect-ratio, --output-storage-mode, --output-person-generation, etc. Do not omit the output- prefix.
⚠️ Reference image parameters: Use --file-id or --file-url for a single reference image; use --file-infos to pass a JSON array for multiple reference images. There is no --file-ids parameter.

AIGC Video Generation Notes

Video generation takes a long time (several minutes). The script waits for completion automatically by default. It is recommended to set --max-wait 1800 to ensure sufficient wait time.
⚠️ Model name and version must be separate: --model only takes the model name (e.g. Kling); the version number must be passed separately via --model-version (e.g. --model-version O1). Do not concatenate the version into the model name (e.g. --model "Kling O1" is wrong). Correct example: --model Kling --model-version O1 Wrong example: --model "Kling O1"
⚠️ Scene types: Kling supports motion_control/avatar_i2v/lip_sync; Vidu supports subject_reference (fixed subject scene). Pass via --scene-type.

AIGC LLM Multi-turn Conversation

⚠️ Multi-turn conversation: --message can only pass a single message (the last user input). For multi-turn conversation context, use --messages to pass a complete JSON array (including all historical turns). Passing --message multiple times is not supported.

Scene-based Image Generation Prompt Notes

⚠️ Prompt parameter names differ by scene: The outfit change scene uses --change-prompt; the product image scene uses --product-prompt; the image expansion scene has no prompt parameter. There is no --prompt parameter.

Scene-based Image Generation Input File Rules (vod_scene_aigc_image.py)

⚠️ --input-files and --clothes-files format is File:FileId or Url:URL. - User provides a local image path → first upload with vod_upload.py upload --file <path>, then use the returned FileId in File:<FileId> - User provides an image URL → use Url:<URL> format directly - User provides neither an image nor a FileId → FileId is a required parameter; you must ask the user — do not generate the command

Semantic Search Prerequisites

Semantic search (vod_search_media_by_semantics.py) requires that media has already been imported into the knowledge base via vod_import_media_knowledge.py. If the user has not provided --sub-app-id, do not ask — simply omit it (it will be automatically read from the TENCENTCLOUD_VOD_SUB_APP_ID environment variable at runtime); if the user provides --app-name, use that preferentially.

AIGC Advanced Custom Element

⚠️ If the user has not provided --sub-app-id, do not ask — simply omit it (it will be automatically read from the environment variable at runtime). After successful creation, task information is automatically recorded to mem/elements.json.
⚠️ Parameter names: All parameters have the element- prefix: --element-name, --element-description, --element-image-list, --element-video-list, --element-voice-id. There are no simplified parameters like --name or --image-list.
⚠️ --element-description is a required parameter (although it appears optional in --help, omitting it will cause an error).

Reference Types (Reference Type):

  • video_refer: Video character element — defines appearance via a reference video; supports voice binding
  • image_refer: Multi-image element — defines appearance via multiple images; does not support voice binding

ElementId Retrieval Flow: Only a TaskId is returned at creation time. The ElementId must be obtained after the task completes by querying vod_describe_task.py --task-id <id> (waits for completion by default), and is automatically merged and saved to mem/elements.json.

Using Elements for Video Generation (Required Reading When --element-ids Parameter Is Present)

⚠️ Trigger condition: When the user's description mentions "generate video using element", "generate video with character/avatar", "use custom element ElementId", etc. (applicable to all models that support --element-ids, such as Kling O1, Kling 3.0-Omni), the AI is responsible for: 1. Asking the user to provide the ElementId list (if not provided, guide the user to first create an element and query the task to get the ElementId) 2. Converting the user's segmented description into a Prompt format with placeholders 3. Calling the script with --element-ids or --elements-file
🚨 Mandatory Rule (highest priority): Whenever the user provides an ElementId (passed via --element-ids), the subject's reference in --prompt (e.g. "element", "character", "he", "she", etc.) must be replaced with <<<element_1>>> (for multiple elements: <<<element_2>>>, etc.). It is strictly forbidden to write words like "element" or "character" in the prompt without the placeholder.

Prompt Placeholder Construction Rules: The user may describe content for each segment using numbered items; the AI must convert these into <<<element_N>>> format:

User InputConverted --prompt
1. dancing; 2. running<<<element_1>>>dancing <<<element_2>>>running
Character A dances, Character B runs<<<element_1>>>dances <<<element_2>>>runs
use element to dance (single element)<<<element_1>>>dancing
element walking by the sea (single element)<<<element_1>>>walking by the sea

The N in <<<element_N>>> starts from 1 and corresponds one-to-one with the order of Element Ids passed in.


API Reference

ScriptTencent Cloud Official Documentation
vod_upload.pyApply Upload / Commit Upload
vod_pull_upload.pyPull Upload
vod_process_media.py (procedure/transcode/remux/enhance/scene-transcode)Process Media
vod_process_media.py (snapshot/gif/sample-snapshot/image-sprite)Process Media
vod_process_media.py (ai-analysis/ai-recognition/ai-review)Process Media
vod_describe_media.pyDescribe Media Infos
vod_search_media.pySearch Media
vod_search_media_by_semantics.pySearch MediaBy Semantics
vod_describe_task.pyDescribe Task Detail
vod_describe_sub_app_ids.pyDescribe Sub App Ids
vod_aigc_chat.pyVOD AIGC LLM Chat
vod_aigc_token.pyVOD AIGC Token Management
vod_aigc_image.pyCreateAIGCTask (Image)
vod_aigc_video.pyCreateAIGCTask (Video)
vod_process_image.py (super-resolution)Process Image Async Super Resolution
vod_process_image.py (understand)Process Image Async Understand
vod_scene_aigc_image.pyCreate SceneAIGCImage Task
vod_create_scene_aigc_video_task.pyCreate SceneAIGCVideo Task
vod_import_media_knowledge.pyImport Media Knowledge
vod_create_aigc_advanced_custom_element.pyCreateAIGCCustom Element

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.95%
按下载量换算542

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills