用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SJTU-IPADS/SkVM-data --skill file-operations命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | file-operations |
| description | File and directory management, project structure creation, search and replace, configuration editing. |
When creating a project structure:
project-name/
├── src/
│ └── package_name/
│ └── __init__.py
├── tests/
│ └── __init__.py
├── pyproject.toml
└── README.md
project-name/
├── src/
│ └── main.py
├── README.md
└── .gitignore
When updating configuration files across a project:
localhost → prod-db.example.comDEBUG → WARNING or ERRORdev_db → production_db__pycache__/
*.pyc
.env
node_modules/
dist/
*.egg-info/
# Project Name
Brief description.
## Installation
...
## Usage
...
[project]
name = "package-name"
version = "0.1.0"
description = "Brief description"
requires-python = ">=3.10"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.backends._legacy:_Backend"
When extracting information from files: