ソース情報
- リポジトリ
- cvsz/zc
- ソースの最終更新活動
- 2026年7月20日 05:11
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/cvsz/zc --skill zcコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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 |