Alicloud storage oss ossutil test
Skill ulpi-io/plugin-marketplace/plugins/cinience/skills/alicloud-storage-oss-ossutil-test
Minimal OSSUTIL 2.0 smoke tests. Validate config, list bucket, and upload/download with OSS.From its SKILL.md
npx -y skills add ulpi-io/plugin-marketplace --skill alicloud-storage-oss-ossutil-testAssembled 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)
- 查看配置
ossutil config get region
- 列出 Bucket
ossutil ls
- 选择一个 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
- 上传小文件
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
- 下载并校验
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.