ワンクリックで
verify-sdk
Run the full SDK quality gate — pytest, mypy, and ruff. Use after making code changes to verify nothing is broken.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run the full SDK quality gate — pytest, mypy, and ruff. Use after making code changes to verify nothing is broken.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build and deploy documentation to GitHub Pages. Verifies the build locally, then triggers the GitHub Actions workflow. Use after docs/code changes to update the live site.
Prepare and publish a new SDK release. Bumps version, runs quality gate, tags, pushes, and triggers PyPI publish. Use with version argument e.g. /prepare-release 2.2.0
Pre-release validation checklist. Use before tagging a version or publishing to PyPI. Manual invocation only.
Run integration tests against the live OpenClaw gateway at ws://127.0.0.1:18789. Use when verifying SDK changes work against the real gateway.
Find and update documentation after code changes. Use after implementing features, fixing bugs, or changing APIs to keep docs in sync.
| name | verify-sdk |
| description | Run the full SDK quality gate — pytest, mypy, and ruff. Use after making code changes to verify nothing is broken. |
| allowed-tools | ["Bash(poetry *)","Bash(python *)","Read","Grep"] |
Run all three quality checks in sequence. Report results clearly.
poetry run pytest tests/ --cov=openclaw_sdk --cov-report=term-missing -x -q
poetry run mypy --strict src/openclaw_sdk
poetry run ruff check src/ tests/ && poetry run black --check src/ tests/