Skill flagged — suspicious patterns detected

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

Zsxq Shared

v0.1.0

知识星球 CLI 共享基础:认证登录(auth login/logout)、查看认证状态、诊断配置。当用户需要首次登录、退出登录、查看认证状态、或遇到认证错误时触发。

0· 145·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zhuguojie-unnoo/zsxq-shared.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Zsxq Shared" (zhuguojie-unnoo/zsxq-shared) from ClawHub.
Skill page: https://clawhub.ai/zhuguojie-unnoo/zsxq-shared
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install zhuguojie-unnoo/zsxq-shared

ClawHub CLI

Package manager switcher

npx clawhub@latest install zsxq-shared
Security Scan
Capability signals
Requires OAuth tokenRequires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The SKILL.md describes CLI-based auth/login/status/diagnostics for zsxq-cli and the commands are consistent with that purpose. However, the registry metadata earlier listed no required binaries while SKILL.md includes a metadata.requires bins: ["zsxq-cli"] — that's an internal inconsistency. Also the skill's source/homepage are unknown, which reduces provenance.
Instruction Scope
Instructions are limited to running zsxq-cli commands (auth login/status, doctor, config show, api call/raw). The agent is told to run auth login, present the returned verification link to the user, and wait — no instructions to read arbitrary system files or exfiltrate data. It does suggest using raw API calls (which is reasonable for a CLI helper).
Install Mechanism
This is instruction-only with no install spec (lowest disk/write risk). That said, it requires the zsxq-cli binary to be present; SKILL.md does not provide where to obtain it and the skill has no homepage/source, so the provenance and trustworthiness of the expected binary are unknown.
Credentials
The skill declares no environment variables or external credentials. It does state tokens are stored in the system Keychain and '永久有效' (permanently valid). Long‑lived tokens increase risk if compromised; the skill does not instruct how to rotate or revoke tokens. No unexplained credential requests are present, but the permanence claim is a security/privacy concern.
Persistence & Privilege
always is false and there is no install that would grant persistent system presence. The skill does not request modifying other skills or system-wide settings. Autonomous invocation is allowed by default (disable-model-invocation is false), which is normal — combine this with the other notes when deciding.
What to consider before installing
This skill appears to be a straightforward CLI auth helper, but take these precautions before installing: 1) Verify the zsxq-cli binary comes from a trusted source (the skill gives no homepage/source). 2) Confirm the registry metadata is corrected (SKILL.md requires zsxq-cli but the registry entry omitted it). 3) Be aware the skill claims tokens are permanently stored in your system Keychain — prefer short‑lived tokens or ensure you can revoke them. 4) Do not allow the agent to perform writes (post/delete) without explicit confirmation; the SKILL.md mentions confirming writes, enforce that. 5) If possible, run login locally yourself rather than letting the agent run background auth, and ask the skill author/maintainer for source code or a homepage to establish provenance. If you need higher assurance, request the skill be updated to document how to obtain zsxq-cli, token lifetime and revocation, and add a source repository or homepage.

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

latestvk97482pq182en4hthhtvkxqe2d85495j
145downloads
0stars
1versions
Updated 1w ago
v0.1.0
MIT-0

zsxq-cli 共享规则

本技能指导你如何通过 zsxq-cli 操作知识星球资源,以及有哪些注意事项。

认证

zsxq-cli 使用 OAuth 2.0 设备授权码流程(RFC 8628) 认证,token 存储在系统 Keychain 中,永久有效。

登录

# 发起登录(会输出一个授权链接,用户在手机/浏览器中打开并授权)
zsxq-cli auth login

登录流程:

  1. 命令输出一个 verification_uri 链接和 user_code
  2. 用户在手机或浏览器中打开链接,完成授权
  3. CLI 自动轮询,授权完成后自动保存 token

当你作为 AI Agent 帮用户登录时,在后台运行 zsxq-cli auth login,读取输出后将授权链接提供给用户,等待用户完成授权。

查看认证状态

zsxq-cli auth status        # 表格显示当前登录账户
zsxq-cli auth status --json # JSON 格式输出

退出登录

zsxq-cli doctor             # 诊断配置和认证是否正常

配置诊断

zsxq-cli doctor             # 检查 CLI 配置和 keychain 认证状态
zsxq-cli config show        # 显示版本信息和当前配置
zsxq-cli config show --json # JSON 格式

直接调用 API

当 Shortcut 无法满足需求时,可以直接调用底层 MCP 工具:

zsxq-cli api list                           # 列出所有可用 MCP 工具及参数
zsxq-cli api call <tool> --params '<json>'  # 调用指定工具
zsxq-cli api raw --method GET --path /v3/users/self

示例:

zsxq-cli api call get_self_info --params '{}'
zsxq-cli api call search_groups --params '{"keyword":"Go语言"}'
zsxq-cli api call get_user_footprints --params '{"user_id":"123456","group_id":"123456789"}'

# 推荐:对通用 HTTP API 使用显式参数的 raw 子命令
zsxq-cli api raw --method GET --path /v2/groups/123456789/topics --query '{"count":10}'

安全规则

  • Token 是登录凭证,禁止在终端明文输出或分享给他人
  • 写入/删除操作前必须确认用户意图(发帖、评论、创建笔记等)
  • 不确定 group_id / topic_id 时,先用查询命令确认,再执行写入

常见错误处理

错误原因解决方案
authentication failed (HTTP 401)Token 无效或过期重新运行 zsxq-cli auth login
not logged in未完成登录运行 zsxq-cli auth login
--group-id is required缺少必填参数先用 zsxq-cli group +list 查询 group_id
--topic-id is required缺少必填参数先用 zsxq-cli group +topicstopic +search 查询 topic_id

Comments

Loading comments...