بنقرة واحدة
test
Run all project tests including Python pytest and JavaScript tests. Reports test results and failures.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run all project tests including Python pytest and JavaScript tests. Reports test results and failures.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Check branch status before commit. Ensures work is not done on stale/merged branches.
Create a new feature branch following naming conventions. Uses Git MCP for branch operations.
Run static analysis tools (pylint, flake8 for Python, ESLint for JavaScript) to check Google Style compliance.
Create a pull request with change validation. Checks line count limit (max 300 lines) and ensures proper commit prefix. Uses GitHub MCP for PR operations.
Review current code changes for Google Style compliance, security issues, and test coverage. Uses Git MCP for diff analysis.
| name | test |
| description | Run all project tests including Python pytest and JavaScript tests. Reports test results and failures. |
| user-invocable | true |
| allowed-tools | Bash, Read |
# Python
cd server && python -m pytest tests/ -v --tb=short
# JavaScript
cd client && npm test