ソース情報
- リポジトリ
- pty819/nooa-coding
- ソースの最終更新活動
- 2026年8月2日 04:10
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/pty819/nooa-coding --skill run-testsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | run-tests |
| description | Run project test suites, interpret failures, and iterate until green. |
| trigger | User says "run tests", "test this", "check if tests pass", "fix failing tests", or requests test verification |
| route | run-tests |
| output-contract | Final test count and pass/fail status; failure diagnosis with file paths; lint results |
AGENTS.md or project config for a configured test command.uv run pytest tests/ -x -q or python -m pytestnpm test or npx jestcargo testgo test ./...# 1. Run the full suite first to establish baseline
result = await self.shell.run("uv run pytest tests/ -x -q", timeout=120)
print(result.stdout)
print(result.stderr)
print(f"exit: {result.returncode}")
await self.shell.read(path) to inspect the failing test file.result = await self.shell.run("uv run pytest tests/test_foo.py::test_bar -x", timeout=60)
uv run ruff check src/) alongside tests.