← Back to Skills Marketplace
cinience

Aliyun Modelstudio Crawl And Skill

by cinience · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
100
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install aliyun-modelstudio-crawl-and-skill
Description
Use when refreshing the Model Studio models crawl and regenerate derived summaries and `skills/ai/**` skills. Use when the models list or generated skills mu...
README (SKILL.md)

Category: task

Alibaba Cloud Model Studio Crawl and Skill Generation

Prerequisites

  • Node.js (for npx)
  • Python 3
  • Network access to the models page

Workflow

  1. Crawl models page (raw markdown)
npx -y @just-every/crawl \"https://help.aliyun.com/zh/model-studio/models\" > alicloud-model-studio-models.md
  1. Rebuild summary (models + API/usage links)
python3 skills/ai/misc/aliyun-modelstudio-crawl-and-skill/scripts/refresh_models_summary.py
  1. Regenerate skills (creates/updates skills/ai/**)
python3 skills/ai/misc/aliyun-modelstudio-crawl-and-skill/scripts/refresh_alicloud_skills.py

Outputs

  • alicloud-model-studio-models.md: raw crawl output
  • output/alicloud-model-studio-models-summary.md: cleaned summary
  • output/alicloud-model-studio-models.json: structured model list
  • output/alicloud-model-studio-skill-scan.md: skill coverage report
  • skills/ai/**: generated skills

Notes

  • Do not invent model IDs or API endpoints; only use links present on the models page.
  • After regeneration, update README.md, README.en.md, and README.zh-TW.md if skills list changed.

Validation

mkdir -p output/aliyun-modelstudio-crawl-and-skill
for f in skills/ai/misc/aliyun-modelstudio-crawl-and-skill/scripts/*.py; do
  python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/aliyun-modelstudio-crawl-and-skill/validate.txt

Pass criteria: command exits 0 and output/aliyun-modelstudio-crawl-and-skill/validate.txt is generated.

Output And Evidence

  • Save artifacts, command outputs, and API response summaries under output/aliyun-modelstudio-crawl-and-skill/.
  • Include key parameters (region/resource id/time range) in evidence files for reproducibility.

References

  • Source list: references/sources.md
Usage Guidance
This skill appears to do what it says (crawl the Aliyun Model Studio page and generate summaries and suggested skills), but review a few things before running it: - Path mismatch: SKILL.md runs scripts at skills/ai/misc/.../scripts/*.py but the repository has scripts/refresh_*.py at top-level scripts/. Confirm the expected location or adjust commands to point to the included files; otherwise the workflow may fail or the scripts may compute wrong ROOT paths. - npx risk: The workflow uses `npx -y @just-every/crawl` which transiently downloads and executes an npm package. npx executes arbitrary code from the npm registry; inspect the @just-every/crawl package source (and pin a specific version) or replace it with a known-safe fetch mechanism (curl/wget, or a locally vetted crawler) if you want to reduce risk. - Run in a sandbox: Because the crawl step executes third-party code and the scripts write files, run this workflow in an isolated environment (container or VM) until you are comfortable with the behavior and outputs. - Inspect outputs: The Python scripts write JSON/markdown under output/ and may include model IDs and URLs. Ensure you do not unintentionally publish sensitive identifiers. The instructions request recording region/resource IDs — avoid including secrets/credentials. Given the inconsistencies and the use of npx, this is suspicious rather than clearly benign. If the maintainer can confirm the intended file layout and justify using the specific @just-every/crawl package (or provide a pinned, vetted alternative), the assessment could be upgraded.
Capability Analysis
Type: OpenClaw Skill Name: aliyun-modelstudio-crawl-and-skill Version: 1.0.0 The skill bundle is designed to crawl Alibaba Cloud Model Studio documentation and generate structured summaries and skill coverage reports. The workflow uses standard tools like `npx` for crawling and Python scripts (scripts/refresh_models_summary.py and scripts/refresh_alicloud_skills.py) for data processing, with no evidence of data exfiltration, malicious execution, or prompt injection.
Capability Assessment
Purpose & Capability
The name/description match the included Python scripts which parse a crawl and produce summaries and skill suggestions. However, SKILL.md lists Node.js/npx as a prerequisite while the skill metadata declares no required binaries; the SKILL.md command paths reference scripts under skills/ai/misc/... but the shipped files live at scripts/*.py. These mismatches mean the runtime layout the instructions expect may not match how the skill is installed or executed.
Instruction Scope
Instructions tell the agent to run an npx command that downloads and executes @just-every/crawl against https://help.aliyun.com and then run bundled Python scripts that read/write files. The crawling step contacts an external site (expected) but uses npx which will fetch and execute code from npm (arbitrary code execution). The SKILL.md also asks to save evidence including 'region/resource id/time range' which could encourage including environment-specific identifiers in outputs; while not secrets by name, this increases what gets written to disk and possibly shared.
Install Mechanism
There is no install spec (instruction-only), which reduces installer risk. However, the workflow relies on npx -y @just-every/crawl (transiently pulling an npm package and executing it). Relying on npx to run a remote package is a moderate install/execution risk unless the package and version are audited or pinned. The Python scripts are local and simple text processing (no external downloads).
Credentials
The skill declares no required environment variables or credentials, and the Python scripts do not read secrets or env vars. The only external access is network to the public help.aliyun.com site. Asking to record 'region/resource id/time range' in evidence is informational and not a request for secrets.
Persistence & Privilege
always is false and the skill does not request persistent or system-wide privileges. It writes outputs into an output/ subdirectory and generated skills under skills/ai/** per instructions — this is expected for a content-generation workflow and not an escalation of privilege.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aliyun-modelstudio-crawl-and-skill
  3. After installation, invoke the skill by name or use /aliyun-modelstudio-crawl-and-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of aliyun-modelstudio-crawl-and-skill. - Automates crawling of Alibaba Cloud Model Studio models and regeneration of skills in `skills/ai/**`. - Outputs structured model lists, cleaned summaries, skill coverage reports, and generated skills. - Includes validation scripts and reproducibility guidelines. - Supports updating documentation files if the skills list changes.
Metadata
Slug aliyun-modelstudio-crawl-and-skill
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Aliyun Modelstudio Crawl And Skill?

Use when refreshing the Model Studio models crawl and regenerate derived summaries and `skills/ai/**` skills. Use when the models list or generated skills mu... It is an AI Agent Skill for Claude Code / OpenClaw, with 100 downloads so far.

How do I install Aliyun Modelstudio Crawl And Skill?

Run "/install aliyun-modelstudio-crawl-and-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Aliyun Modelstudio Crawl And Skill free?

Yes, Aliyun Modelstudio Crawl And Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Aliyun Modelstudio Crawl And Skill support?

Aliyun Modelstudio Crawl And Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Aliyun Modelstudio Crawl And Skill?

It is built and maintained by cinience (@cinience); the current version is v1.0.0.

💬 Comments