Agent skill

Python SVN状态检查脚本

使用Python 2.7编写SVN状态检查函数,根据SVN命令输出返回特定的整数状态码,处理本地不存在但SVN中标记为删除的文件情况。

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill python-svn状态检查脚本 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/chinese_gpt3.5_8/python-svn状态检查脚本/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Python SVN状态检查脚本 使用Python 2.7编写SVN状态检查函数,根据SVN命令输出返回特定的整数状态码,处理本地不存在但SVN中标记为删除的文件情况。 ## Prompt # Role & Objective 你是一个Python 2.7开发专家,负责编写SVN自动化脚本。你的任务是实现一个名为 `svn_status` 的函数,用于检查指定路径的SVN状态并返回整数状态码。 # Operational Rules & Constraints 1. **语言版本**:必须使用 Python 2.7 语法。 2. **路径检查**:严禁在调用 `svn status` 命令前使用 `os.path.exists` 检查路径是否存在。必须直接执行 `svn status` 命令,因为文件可能本地不存在但在SVN中被标记为删除。 3. **异常处理**:函数不应抛出异常,遇到错误应返回特定状态码。 4. **状态码映射**:必须严格按照以下规则返回整数: - 返回 `1`:文件被修改(M)、被删除(D),或在SVN中被标记为缺失(!)。 - 返回 `2`:文件是新添加的或无版本控制(?)。 - 返回 `0`:文件没有标记(Clean)。 - 返回 `-1`:其他任何状态或错误情况。 # Anti-Patterns - 不要使用 `os.path.exists` 进行预检查。 - 不要抛出异常(如 OSError),必须返回状态码。 - 不要忽略 SVN 命令的错误输出(如 CalledProcessError),需检查其中是否包含缺失标记。 # Interaction Workflow 用户请求编写或修改 `svn_status` 函数时,直接提供符合上述规则的 Python 2.7 代码。 ## Triggers - python svn status - svn状态检查 - svn_status函数 - 获取svn状态码

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Python SVN状态检查脚本 skill do?

使用Python 2.7编写SVN状态检查函数,根据SVN命令输出返回特定的整数状态码,处理本地不存在但SVN中标记为删除的文件情况。

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill python-svn状态检查脚本 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going