SKILLEMALL.ai

FB huawei-cloud-obs-upload

Upload local files or directories to Huawei Cloud OBS (Object Storage Service) buckets, list OBS buckets with capacity and object count, and schedule periodic uploads via crontab. Use this skill when the user wants to: (1) upload a local file or directory to an OBS bucket, (2) list OBS buckets and check their storage capacity and object count, (3) set up a scheduled/periodic upload task to automatically sync a local directory to an OBS bucket. Trigger: user mentions "OBS", "object storage", "bucket list", "bucket capacity", "upload to OBS", "upload file", "upload directory", "scheduled upload", "periodic upload", "sync to bucket", "对象存储", "桶列表", "桶容量", "上传文件", "上传目录", "定时上传", "OBS管理"

Not recommendedcritical or high security findings · low grade F
ClawHub Agent Skills author: huaweiclouddev-dev v1.0.0 MIT-0 12 files body ≈ 2 008 tokens Open the sourceclawhub.ai analyzed 35 h ago

Upload local files or directories to Huawei Cloud OBS (Object Storage Service) buckets, list OBS buckets with capacity and object count, and schedule periodic…

As a process B 69/100 · Nearly there — weak spots: result and completion, progress reporting

ProcedureData and analyticstype and topics are labelled automatically from the skill text
JSON
Technical rating
F
36/100
safety, quality, tests
Safety 60%
0
Quality 40%
91
Run on models
none yet
Process rating
B
69/100
Nearly there
Progress reporting w 2
0
Result and completion w 14
40
Failures and branches w 10
55
the three weakest of ten parameters · all ten

What is at stake

The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.

Dangerous commands
If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

How to improve

  1. Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 29

  • high Dangerous commands cmd-persistence references/related-apis.md:226
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    (crontab -l 2>/dev/null; echo "<CronExpr> /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • high Dangerous commands cmd-persistence references/task-scheduled-upload.md:61
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    (crontab -l 2>/dev/null; echo "0 * * * * /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • high Dangerous commands cmd-persistence references/task-scheduled-upload.md:64
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    (crontab -l 2>/dev/null; echo "0 8 * * * /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • high Dangerous commands cmd-persistence references/task-scheduled-upload.md:67
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    (crontab -l 2>/dev/null; echo "*/30 * * * * /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • high Dangerous commands cmd-persistence references/task-scheduled-upload.md:80
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    schtasks /create /tn "OBS-ScheduledUpload-<BucketName>" /tr "obsutil cp <LocalDirPath> obs://<BucketName>/<Prefix> -r -u" /sc daily /st 08:00 /f
  • high Dangerous commands cmd-persistence references/verification-method.md:113
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    (crontab -l 2>/dev/null; echo "*/5 * * * * /bin/bash $HOME/obs-scheduled-upload-test.sh") | crontab -
Medium and low: 23
  • medium Dangerous commands cmd-privilege references/cli-installation-guide.md:33
    Privilege escalation / world-writable permissions
    sudo mv hcloud /usr/local/bin/
  • medium Dangerous commands cmd-privilege references/cli-installation-guide.md:39
    Privilege escalation / world-writable permissions
    sudo mv hcloud /usr/local/bin/
  • medium Dangerous commands cmd-privilege references/cli-installation-guide.md:48
    Privilege escalation / world-writable permissions
    sudo mv hcloud /usr/local/bin/
  • medium Dangerous commands cmd-privilege references/cli-installation-guide.md:57
    Privilege escalation / world-writable permissions
    sudo mv hcloud /usr/local/bin/
  • medium Dangerous commands cmd-privilege references/cli-installation-guide.md:79
    Privilege escalation / world-writable permissions
    sudo mv obsu…64_*/obsutil /usr/local/bin/
  • medium Dangerous commands cmd-persistence references/related-apis.md:248
    Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition)
    crontab -l | grep -v "obs-scheduled-upload-<BucketName>" | crontab -
    detector
  • medium Dangerous commands cmd-persistence references/task-scheduled-upload.md:99
    Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition)
    crontab -l | grep -v "obs-scheduled-upload-<BucketName>" | crontab -
    detector
  • medium Dangerous commands cmd-persistence references/troubleshooting.md:366
    Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition)
    crontab -l | grep -v "obs-scheduled-upload-<BucketName>" | crontab -
    detector
  • medium Dangerous commands cmd-persistence references/verification-method.md:133
    Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition)
    crontab -l | grep -v "obs-scheduled-upload-test" | crontab -
    detector
  • low Dangerous commands cmd-cron-mention references/related-apis.md:226
    Mentions editing / listing crontab
    (crontab -l 2>/dev/null; echo "<CronExpr> /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • low Dangerous commands cmd-cron-mention references/related-apis.md:232
    Mentions editing / listing crontab
    crontab -l
  • low Dangerous commands cmd-cron-mention references/related-apis.md:245
    Mentions editing / listing crontab
    crontab -l
  • low Dangerous commands cmd-cron-mention references/related-apis.md:248
    Mentions editing / listing crontab
    crontab -l | grep -v "obs-scheduled-upload-<BucketName>" | crontab -
  • low Dangerous commands cmd-cron-mention references/task-scheduled-upload.md:61
    Mentions editing / listing crontab
    (crontab -l 2>/dev/null; echo "0 * * * * /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • low Dangerous commands cmd-cron-mention references/task-scheduled-upload.md:64
    Mentions editing / listing crontab
    (crontab -l 2>/dev/null; echo "0 8 * * * /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • low Dangerous commands cmd-cron-mention references/task-scheduled-upload.md:67
    Mentions editing / listing crontab
    (crontab -l 2>/dev/null; echo "*/30 * * * * /bin/bash $HOME/obs-scheduled-upload-<BucketName>.sh") | crontab -
  • low Dangerous commands cmd-cron-mention references/task-scheduled-upload.md:73
    Mentions editing / listing crontab
    crontab -l
  • low Dangerous commands cmd-cron-mention references/task-scheduled-upload.md:96
    Mentions editing / listing crontab
    crontab -l
  • low Dangerous commands cmd-cron-mention references/troubleshooting.md:314
    Mentions editing / listing crontab
    crontab -l
  • low Dangerous commands cmd-cron-mention references/troubleshooting.md:366
    Mentions editing / listing crontab
    crontab -l | grep -v "obs-scheduled-upload-<BucketName>" | crontab -
  • low Dangerous commands cmd-cron-mention references/verification-method.md:113
    Mentions editing / listing crontab
    (crontab -l 2>/dev/null; echo "*/5 * * * * /bin/bash $HOME/obs-scheduled-upload-test.sh") | crontab -
  • low Dangerous commands cmd-cron-mention references/verification-method.md:120
    Mentions editing / listing crontab
    crontab -l
  • low Dangerous commands cmd-cron-mention references/verification-method.md:133
    Mentions editing / listing crontab
    crontab -l | grep -v "obs-scheduled-upload-test" | crontab -

Files scanned: 12. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

✓ No remarks against the Agent Skills spec

Process rating: all ten parameters 69/100

  • 0Progress reporting. Says nothing while it works
  • 40Result and completion. Does not say what the result is
  • 55Failures and branches. 1 branches
  • 60Tools and files. Uses tools (bash) that frontmatter does not declare
  • 70When it triggers. States when to use, but not when not to
  • 70Inputs and preconditions. Inputs and preconditions are listed
  • 85Steps. 4 steps, 1 vague phrases
  • 100Consistency. Name and required fields are in place
  • 100Execution cost. Instruction body is 2008 tokens
  • 100Running it twice. Mutating operations check current state

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +4Description does not say when NOT to use the skill (false activations)
  • +3Output format is not stated: the model decides each time
  • -215 emoji in the instructions: noise for the model
  • +1No license
  • +2Single-language instructions
  • +5Description quotes 9 example trigger phrases
  • +3Description length 692: enough signal without eating the budget
  • +4Structure: 11 headings
  • +3Step-by-step instructions: 4 items
  • +4Has examples (7 code blocks)
  • +4Reference files are cited in the instructions (10 of 10)

Quality base 70; lint remarks subtract, signals add up to 100. Result: 91.

External checks

ClawHub: suspicious
This Huawei OBS skill is purpose-aligned, but it should be reviewed carefully because it can upload local directories and create persistent scheduled uploads without strong confirmation, scoping, or cleanup safeguards.
LLM: suspicious (high) · 3 Aug 2026