agentsclimarketplace

Alicloud storage oss ossutil

Skill ulpi-io/plugin-marketplace/plugins/cinience/skills/alicloud-storage-oss-ossutil

Minimal OSSUTIL 2.0 smoke tests. Validate config, list bucket, and upload/download with OSS.From its SKILL.md

Install
npx -y skills add ulpi-io/plugin-marketplace --skill alicloud-storage-oss-ossutil

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.6 KB, 462 tokens by cl100k_base, as published. Nobody here has run it

Category: test

OSSUTIL 2.0 Minimal Viable Test

Goals

  • 验证 AK/Region 配置正确。
  • 验证 OSS 访问(列桶、上传、下载)。

Prerequisites

  • 已配置 AK(推荐环境变量或 ~/.alibabacloud/credentials)。
  • 已准备一个可读写的 OSS Bucket。

Test Steps (Minimal)

  1. 查看配置
ossutil config get region
  1. 列出 Bucket
ossutil ls
  1. 选择一个 bucket,按该 bucket 地域列对象(显式 region + endpoint)
# 示例(按实际 bucket 地域替换)
ossutil ls oss://<bucket> -r --short-format --region cn-shanghai -e https://oss-cn-shanghai.aliyuncs.com --limited-num 20
  1. 上传小文件
echo "ossutil-test" > /tmp/ossutil-test.txt
ossutil cp /tmp/ossutil-test.txt oss://<bucket>/tests/ossutil-test.txt --region cn-shanghai -e https://oss-cn-shanghai.aliyuncs.com
  1. 下载并校验
ossutil cp oss://<bucket>/tests/ossutil-test.txt /tmp/ossutil-test-down.txt --region cn-shanghai -e https://oss-cn-shanghai.aliyuncs.com
cat /tmp/ossutil-test-down.txt

Expected Results

  • ossutil ls 能返回至少一个 bucket 或无权限说明。
  • 指定 --region + -e 后,列对象可正常返回。
  • 上传/下载成功,文件内容一致。

常见失败

  • Region 不匹配:确认 ALICLOUD_REGION_ID 或配置文件中的 region。
  • AK 无权限:确认 RAM 策略允许 oss:* 或最小读写权限。

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,782. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.