ソース情報
- リポジトリ
- 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 testingコマンドは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 | testing |
| description | Run tests and linting for NexRL Python project. |
# All tests
python -m pytest tests/ -v --tb=short
# Unit tests only
python -m pytest tests/unittests/ -v
# Specific test file
python -m pytest tests/unittests/test_foo.py -v
# By marker
python -m pytest tests/ -m unit -v
python -m pytest tests/ -m "not slow" -v
# pylint (non-test files)
python -m pylint nexrl/ --rcfile=.pylintrc -rn -sn
# mypy
python -m mypy nexrl/ --ignore-missing-imports
# License header check
python tests/lint/check_license_header.py <files>
# Check (don't fix)
python -m black --check nexrl/ tests/
python -m isort --check nexrl/ tests/
# Fix
python -m black nexrl/ tests/
python -m isort nexrl/ tests/
pre-commit run --all-files
When running in a worktree, ensure you're in the worktree directory:
# Ensure you're in the worktree root
cd "$(git rev-parse --show-toplevel)"
python -m pytest tests/ -v --tb=short
unit — Unit testsintegration — Integration testsslow — Slow running teststests/ only (per .ai-instructions/developing/testing-and-examples.md)