Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

CMCC 3CC CellSetUp

v1.0.0

执行3CC开通全流程,检查开通条件,生成配置方案,组装脚本,执行配置并评估开通结果。

0· 36·1 current·1 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
high confidence
!
Purpose & Capability
The name/description claim a full 3CC opening workflow (checks, plan generation, script assembly, remote execution, evaluation). The provided artifact is an instruction-only SKILL.md with a demo Python script that only prints progress and a spinner; it does not implement any real checks, plan generation logic, device connections, config upload, or evaluation. For a skill that claims to remotely configure network devices, one would expect declared credentials, network access details, supporting code, or an install specification — none are present.
!
Instruction Scope
The SKILL.md contains a runnable demo that only prints steps and simulates progress; it does not instruct the agent how to connect to target devices, authenticate, read device state, or send configuration to real endpoints. The instructions therefore overpromise and are insufficient/ambiguous for the stated purpose. While the content does not access sensitive files or env vars, its vagueness could lead users to assume real actions will be taken when they will not be.
Install Mechanism
No install spec and no code files — lowest installation risk. Nothing is downloaded or written to disk by the skill package itself.
Credentials
The skill requires no environment variables, credentials, or config paths. This is inconsistent with its claim of remotely executing configuration and connecting to target devices; if the skill were functional, it would reasonably need device credentials, network endpoints, or API keys. The absence of such requirements indicates the package is only a demo and not a functional integrator.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request elevated or persistent presence. Autonomous invocation is allowed by default but is not combined with other privilege or credential requests here.
Scan Findings in Context
[no_code_files_or_install] unexpected: The package contains only SKILL.md (an embedded demo script). For a skill that claims to perform network device configuration, the lack of code files, connectors, install steps, or declared credentials is unexpected and suggests the skill is a simulation/template rather than a functional tool.
[no_regex_findings] expected: The static scanner found no code-based signatures (reasonable because this is instruction-only). Absence of findings does not imply the skill performs the claimed remote operations.
What to consider before installing
This skill appears to be a demo/template that only prints progress and conclusions; it does not actually perform device checks, connect to equipment, upload scripts, or evaluate real results. Before using it in production: (1) Confirm with the author where the real implementation lives (connectors, device APIs, or executable scripts). (2) Require explicit declarations of how device access and authentication are handled (which credentials, endpoints, and transport are used). (3) Do not provide production device credentials to this package until you have verified code and provenance. (4) Prefer skills that include code or install specs for device connectors and that declare required env vars for credentials so you can review them. If you intended only a simulation or checklist, this skill may be fine; if you expected automated remote configuration, treat this as non-functional and incomplete.

Like a lobster shell, security has layers — review code before you run it.

latestvk97e5hxyht8kcdzncam7rzqzah85bk1s
36downloads
0stars
1versions
Updated 22h ago
v1.0.0
MIT-0

CMCC-3CC-CellSetUp

技能描述

  • name: CMCC-3CC-CellSetUp
  • description: 用于执行3CC开通工作流程,判断小区是否具备3CC开通条件并完成完整的开通流程,包括条件检查、方案生成、脚本组装、配置执行和结果评估。

演示内容

# 3CC开通工作流程演示
print("开始执行3CC开通工作流程...")

# 导入必要的模块
import time
import sys

def loading_spinner():
    # 旋转动画字符
    chars = r"|/\\"
    total = 20
    for i in range(total + 1):
        # 计算百分比
        percent = (i / total) * 100
        # 显示旋转动画和百分比
        sys.stdout.write(f"\r执行中... {chars[i % 4]} {percent:.1f}%")
        sys.stdout.flush()
        if i < total:
            time.sleep(0.1)
    print("\r执行完成!                              ")

# Step 1: 判断是否具备3CC开通条件
print("\nStep 1: 判断是否具备3CC开通条件")
print("检查小区网络基础设施是否就绪...")
loading_spinner()
print("验证设备硬件兼容性...")
loading_spinner()
print("确认相关授权文件已准备...")
loading_spinner()
print("检查带宽资源是否充足...")
loading_spinner()
print("✓ Step 1 完成: 具备3CC开通条件")

# Step 2: 生成3CC配置方案
print("\nStep 2: 生成3CC配置方案")
print("分析小区规模和用户需求...")
loading_spinner()
print("确定3CC频段分配策略...")
loading_spinner()
print("制定功率控制方案...")
loading_spinner()
print("规划邻区关系配置...")
loading_spinner()
print("✓ Step 2 完成: 3CC配置方案生成成功")

# Step 3: 组装3CC配置开通脚本
print("\nStep 3: 组装3CC配置开通脚本")
print("生成基础配置命令...")
loading_spinner()
print("添加频段配置脚本...")
loading_spinner()
print("集成功率控制参数...")
loading_spinner()
print("编写邻区关系脚本...")
loading_spinner()
print("✓ Step 3 完成: 3CC配置开通脚本组装成功")

# Step 4: 执行配置脚本
print("\nStep 4: 执行配置脚本")
print("连接目标设备...")
loading_spinner()
print("上传配置脚本...")
loading_spinner()
print("执行配置命令...")
loading_spinner()
print("确认配置应用成功...")
loading_spinner()
print("✓ Step 4 完成: 配置脚本执行成功")

# Step 5: 评估结果
print("\nStep 5: 评估结果")
print("检查3CC状态是否正常...")
loading_spinner()
print("测试网络性能指标...")
loading_spinner()
print("验证用户接入能力...")
loading_spinner()
print("生成开通评估报告...")
loading_spinner()
print("✓ Step 5 完成: 评估结果分析成功")

# 结论
print("\n" + "="*50)
print("结论: 小区老王可以开通3CC!")
print("所有步骤均已完成,3CC开通工作流程执行成功。")
print("="*50)

执行结果

开始执行3CC开通工作流程...

Step 1: 判断是否具备3CC开通条件
检查小区网络基础设施是否就绪...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
验证设备硬件兼容性...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
确认相关授权文件已准备...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
检查带宽资源是否充足...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
✓ Step 1 完成: 具备3CC开通条件

Step 2: 生成3CC配置方案
分析小区规模和用户需求...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
确定3CC频段分配策略...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
制定功率控制方案...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
规划邻区关系配置...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
✓ Step 2 完成: 3CC配置方案生成成功

Step 3: 组装3CC配置开通脚本
生成基础配置命令...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
添加频段配置脚本...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
集成功率控制参数...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
编写邻区关系脚本...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
✓ Step 3 完成: 3CC配置开通脚本组装成功

Step 4: 执行配置脚本
连接目标设备...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
上传配置脚本...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
执行配置命令...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
确认配置应用成功...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
✓ Step 4 完成: 配置脚本执行成功

Step 5: 评估结果
检查3CC状态是否正常...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
测试网络性能指标...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
验证用户接入能力...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
生成开通评估报告...
执行中... | 0.0% → 执行中... / 5.0% → ... → 执行中... | 100.0%
执行完成!
✓ Step 5 完成: 评估结果分析成功

==================================================
结论: 小区老王可以开通3CC!
所有步骤均已完成,3CC开通工作流程执行成功。
==================================================

技能特点

  • 包含完整的3CC开通工作流程
  • 每个步骤都有详细的检查项
  • 集成了执行动画和百分比进度显示
  • 提供清晰的执行结果和结论
  • 可直接运行演示整个开通流程

Comments

Loading comments...