ソース情報
- リポジトリ
- nex-agi/NexRL
- ソースの最終更新活動
- 2026年2月28日 03:43
- 検出された SKILL.md の言語
- 英語
- スター
- 119
- フォーク
- 9
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/nex-agi/NexRL --skill git-commitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Address GitHub PR review comments. Navigate to correct worktree, make fixes, push updates.
Code review for Python changes in NexRL, following project conventions.
Fix a GitHub issue using git worktree for isolation. Fetches issue, creates worktree, implements fix, then creates PR.
SOC 職業分類に基づく
SKILL.md を表示中
| name | git-commit |
| description | Git commit workflow in a worktree with Python linting, formatting, and testing. |
Verify you're in a worktree (not main clone):
git rev-parse --show-toplevel
git worktree list
git diff --name-only
git diff --cached --name-only
# Format changed Python files
python -m black <changed_python_files>
python -m isort <changed_python_files>
# Fix license headers
python tests/lint/fix_license_header.py <changed_files>
# Lint
python -m pylint <changed_python_files> --rcfile=.pylintrc -rn -sn
python -m mypy <changed_python_files> --ignore-missing-imports
python -m pytest tests/ -v --tb=short
Follow .ai-instructions/code-review/generic.md checklist.
git add path/to/changed/files
git diff --staged # Final review
Never stage: __pycache__/, .env, *.egg-info/, build artifacts, coverage files
Format: type(scope): description (72 chars max)
Types: feat, fix, refactor, test, docs, style, chore, perf
git commit -m "type(scope): description
Detailed explanation if needed.
Fixes #ISSUE_NUMBER"
No AI co-author lines. (per .ai-instructions/developing/commit-guidelines.md)
git show HEAD --name-only
git log -1