aliyun-modelstudio-crawl-and-skill
$
npx mdskill add cinience/alicloud-skills/aliyun-modelstudio-crawl-and-skillCrawls and regenerates Model Studio models and AI skills
- Updates model lists and skills when source content changes
- Uses Node.js and Python scripts to extract and process data
- Analyzes raw markdown to extract model details and API links
- Generates structured outputs and updates skill files in `skills/ai/**`
SKILL.md
.github/skills/aliyun-modelstudio-crawl-and-skillView on GitHub ↗
--- name: 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 must be updated. version: 1.0.0 --- 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) ```bash npx -y @just-every/crawl \"https://help.aliyun.com/zh/model-studio/models\" > alicloud-model-studio-models.md ``` 2) Rebuild summary (models + API/usage links) ```bash python3 skills/ai/misc/aliyun-modelstudio-crawl-and-skill/scripts/refresh_models_summary.py ``` 3) Regenerate skills (creates/updates `skills/ai/**`) ```bash 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 ```bash 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`
More from cinience/alicloud-skills
- aliyun-adb-mysqlUse when managing Alibaba Cloud AnalyticDB for MySQL (ADB) via OpenAPI/SDK, including the user needs AnalyticDB resource lifecycle and configuration operations, status checks, or troubleshooting ADB API and cluster workflow issues.
- aliyun-adb-mysql-testSmoke test for aliyun-adb-mysql. Validate minimal authentication, API reachability, and one read-only query path.
- aliyun-aicontent-generateUse when managing Alibaba Cloud AIContent (AiContent) via OpenAPI/SDK, including the user needs AI content generation or content workflow operations in Alibaba Cloud, including listing assets, creating/updating generation configurations, checking task status, or troubleshooting failed content jobs.
- aliyun-aicontent-generate-testSmoke test for aliyun-aicontent-generate. Validate minimal authentication, API reachability, and one read-only query path.
- aliyun-aimiaobi-generateUse when managing Alibaba Cloud Quan Miao (AiMiaoBi) via OpenAPI/SDK, including the user asks for Alibaba Cloud MiaoBi content operations, including listing resources, creating/updating configurations, querying runtime status, and diagnosing API or workflow failures.
- aliyun-aimiaobi-generate-testSmoke test for aliyun-aimiaobi-generate. Validate minimal authentication, API reachability, and one read-only query path.
- aliyun-airec-manageUse when managing Alibaba Cloud AIRec (Airec) via OpenAPI/SDK, including the user needs recommendation-engine resource operations in Alibaba Cloud, including list/create/update flows, status inspection, and troubleshooting AIRec configuration or runtime issues.
- aliyun-airec-manage-testSmoke test for aliyun-airec-manage. Validate minimal authentication, API reachability, and one read-only query path.
- aliyun-alb-manageUse when managing and troubleshoot Alibaba Cloud ALB (Application Load Balancer), including the user asks to inspect, create, change, or debug ALB instances, listeners, server groups, rules, certificates, ACLs, security policies, or health checks in Alibaba Cloud.
- aliyun-alb-manage-testSmoke test for Alibaba Cloud ALB skill. Validates SDK auth, script compilation, list instances, and health check flows.