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

qshell-copilotqshell GitHub Copilot 搜索

Agent Skill

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

总安装

9,498

周安装

388

GitHub Stars

公开资料未说明

下载量

3,042
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install qshell-copilot

简介

qshell-copilot 通过 qshell CLI 工具管理七牛云存储(Kodo)文件,支持上传、下载、删除及 CDN 刷新等操作。

  • 适合在 OpenClaw 中需要根据关键词或任务场景快速定位云存储资源时使用。
  • 通过 clawhub 安装,命令为 openclaw skills install qshell-copilot,用法见项目说明。
  • 安装前需确认权限范围和维护状态,注意可能触发网络请求和凭据访问。
  • 建议结合原始 README 了解认证方式和 API 限制后再部署使用。

SKILL.md

name
qshell-copilot
description
>

Qiniu Cloud Storage Management (qshell)

This skill wraps the qshell CLI to let you manage Qiniu Kodo storage through natural language. It handles prerequisite checks, command selection, and result formatting automatically.

Pre-flight Checks

Before executing any storage operation, run these checks in order. The reason for checking every time is that qshell state can change between sessions (uninstalled, credentials expired), and failing silently leads to confusing errors.

1. Installation Check

qshell --version

If this fails, the user doesn't have qshell installed. Stop and guide them through installation (see references/install-guide.md).

2. Authentication Check

qshell user ls

If the output is empty or shows an error, the user needs to configure credentials:

qshell account <AccessKey> <SecretKey> <Name>

Direct them to Qiniu Key Management to get their AK/SK.

3. Proceed with the Request

Once both checks pass, execute the user's request using the command reference below.

Command Reference

Uploading Files

Choose the upload method based on what the user provides:

  • Single file, under 100MB: qshell fput [--overwrite] <Bucket> <Key> <LocalFile>
  • Single file, 100MB or larger: qshell rput [--overwrite] <Bucket> <Key> <LocalFile> — rput uses resumable upload, so if it fails partway through, re-running the same command resumes from where it left off rather than starting over.
  • Entire directory: qshell qupload2 --src-dir=<Dir> --bucket=<Bucket> [--overwrite] [--key-prefix=<Prefix>] [--thread-count=<N>] — if some files fail during batch upload, qupload2 logs failures to a local file. Re-running the same command retries only the failed files.

To decide which to use: check the file size first (ls -lh <file>). If the user points to a directory rather than a file, use qupload2.

Key (remote path) inference: When the user doesn't specify a remote path, use the local filename as the Key. If they mention a remote directory like images/, concatenate it as images/filename.ext.

After a successful upload: Run qshell domains <Bucket> to get the bound domain, then show the user the full access URL: http(s)://<Domain>/<Key>. Prefer CDN domains when multiple domains are available.

Downloading Files

  • Single file: qshell get <Bucket> <Key> [-o <SaveAs>]
  • Batch download: Requires a config file. See references/batch-download.md for the JSON format.

File Operations

OperationCommand
List filesqshell listbucket2 <Bucket> [--prefix <P>] [--limit <N>] [--marker <M>]
File infoqshell stat <Bucket> <Key>
Delete fileqshell delete <Bucket> <Key>
Copy fileqshell copy <SrcBucket> <SrcKey> <DstBucket> [-k <DstKey>]
Move/renameqshell move <SrcBucket> <SrcKey> <DstBucket> [-k <DstKey>]

When listing files, use --limit 20 by default to keep output manageable. However, if the user explicitly asks for "all" files or a large number, omit the limit or set a high value to respect their intent.

Before deleting: Always run qshell stat first and show the file details to the user. Wait for explicit confirmation before executing qshell delete. This prevents accidental data loss — deleted files in Kodo cannot be recovered without versioning enabled.

Bucket Management

OperationCommand
List bucketsqshell buckets
Bucket domainsqshell domains <Bucket>
Create bucketqshell mkbucket <Bucket> --region <Region>

Region values: z0 (East China), z1 (North China), z2 (South China), na0 (North America), as0 (Southeast Asia), cn-east-2 (East China - Zhejiang 2)

CDN and Network

OperationCommand
Fetch URL to bucketqshell fetch <URL> <Bucket> <Key>
CDN refresh URLsqshell cdnrefresh -i <file>
CDN refresh dirsqshell cdnrefresh -r -i <file>
CDN prefetchqshell cdnprefetch -i <file>
Private download URLqshell privateurl <PublicUrl> [--deadline <timestamp>]

Error Recovery

When a command fails, diagnose and guide the user rather than just showing the raw error:

Error patternWhat happenedWhat to do
no such file or directoryLocal file path is wrongHelp the user verify the path exists
invalid account / no authCredentials missing or expiredRe-run qshell account
no such bucketBucket name doesn't existRun qshell buckets to show available ones
file existsRemote file already existsAsk if they want to add --overwrite
key doesn't existRemote key not foundUse qshell listbucket2 to find the correct key
bad token / expired tokenAuth token expiredRe-run qshell account
Network timeoutConnectivity issueSuggest checking network and retrying

Reference Files

  • references/install-guide.md — Platform-specific installation instructions (Windows, macOS, Linux)
  • references/batch-download.md — JSON config format for qdownload batch downloads

Examples

Example 1: Input: "Upload ./logo.png to my-bucket" Steps: Check file size -> qshell fput my-bucket logo.png ./logo.png -> qshell domains my-bucket -> Return URL

Example 2: Input: "List all jpg files in my-bucket" Steps: qshell listbucket2 my-bucket --limit 100 -> Filter results for .jpg suffix -> Display

Example 3: Input: "Delete old-file.txt from my-bucket" Steps: qshell stat my-bucket old-file.txt -> Show file info -> Wait for user confirmation -> qshell delete my-bucket old-file.txt

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

79.11%
按下载量换算2,407

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills