用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cvsz/zc --skill zc命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Set up and use 1Password CLI for sign-in, desktop integration, and reading or injecting secrets.
Create, view, edit, delete, search, move, or export Apple Notes via the memo CLI on macOS.
List, add, edit, complete, or delete Apple Reminders and reminder lists via remindctl.
基于 SOC 职业分类
正在显示 SKILL.md
| name | zc |
| description | Repository-specific development patterns and conventions for the zc codebase. |
| origin | repository |
Auto-generated skill from repository analysis
This skill introduces the core development patterns and conventions used in the zc Python codebase. It covers file naming, import/export styles, commit message practices, and testing patterns. These guidelines help maintain consistency and readability across the project.
my_module.py, data_processor.pyfrom .utils import helper_function
def useful_function():
pass
__all__ = ['useful_function']
Add data processing utilities for CSV import
Trigger: When you need to add new functionality to the codebase
Command: /add-module
__all__ to specify exported functions/classes.Trigger: When modifying or extending existing code
Command: /update-module
__all__ if new exports are added.Trigger: When committing changes
Command: /commit
Refactor data_loader for improved error handling
*.test.ts (TypeScript test files).test.ts suffix.my_module.test.ts| Command | Purpose |
|---|---|
| /add-module | Add a new Python module following conventions |
| /update-module | Update an existing module |
| /commit | Write a commit message following guidelines |