用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SJTU-IPADS/SkVM-data --skill web-research命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Agile product ownership for backlog management and sprint execution. Covers user story writing, acceptance criteria, sprint planning, and velocity tracking. Use for writing user stories, creating acceptance criteria, planning sprints, estimating story points, breaking down epics, or prioritizing backlog.
Fetch MLB game schedules, live game status, box scores, player search, and season statistics via the MLB Stats API. Use when the user asks about baseball games, scores, who is playing today, game results, live updates, pitching matchups, MLB schedule information, player lookups, or player stats.
Software build systems reference — Make, CMake, Bazel, Gradle, incremental builds, remote caching, and dependency management
基于 SOC 职业分类
正在显示 SKILL.md
| name | web-research |
| description | Web search, data extraction, and structured report generation from online sources. |
Many sites offer structured JSON at predictable URLs:
https://wttr.in/City?format=j1 — weather datahttps://api.example.com/v1/data — REST APIs?format=json or accept headers for JSONWhen no API exists, fetch the HTML and extract data using patterns in the response text.
When creating research reports, use this structure:
# [Topic] Research Report
## Executive Summary
[2-3 sentence overview of key findings]
## Findings
### [Category 1]
- Key point with supporting detail
- Data point with source
### [Category 2]
...
## Comparison Table
| Criterion | Option A | Option B | Option C |
|-----------|----------|----------|----------|
| Feature 1 | ... | ... | ... |
## Market Trends / Analysis
[Broader context and patterns]
## Conclusion
[Actionable takeaways]