run-tests
Auto-detect project test runner and run it. Internal utility skill used by feature-flow commands for the test phase.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Auto-detect project test runner and run it. Internal utility skill used by feature-flow commands for the test phase.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Push current branch, create MR/PR on GitHub, GitLab, or Forgejo, wait for CI pipeline, merge, and clean up branch using auto-mr CLI
Detect repository hosting service (GitHub/GitLab/Forgejo) from git remote and extract owner/repo/project_path. Internal utility skill used by commands that need platform-aware routing.
Scaffold the Bulma CSS framework into a Go web app with embedded assets for zero-dependency binaries. Internal skill used by golang-pro agent when building HTML UIs with a classes-based CSS framework and no Node toolchain.
Manage Go tool dependencies using the tool directive (Go 1.24+). Use when a Go project needs code generation tools like sqlc, moq, templ, swag, or stringer managed as reproducible Go tool dependencies.
Integrate Charmbracelet gum for beautiful, TTY-safe terminal output in bash scripts. Internal skill used by bash-pro agent for interactive prompts, styled output, and structured logging.
Detect white box Go tests and propose conversion to black box tests (package foo_test). Internal skill used by golang-pro agent to enforce black box testing conventions.
| name | run-tests |
| description | Auto-detect project test runner and run it. Internal utility skill used by feature-flow commands for the test phase. |
| user-invocable | false |
| allowed-tools | Bash(task:*), Bash(make:*), Bash(go:*), Bash(npm:*), Bash(npx:*), Bash(python:*), Bash(cargo:*), Glob |
Auto-detect the project's test runner from build files and run it. Returns pass/fail status with output.
Probe for build/config files using first match wins:
| Trigger | Command | Fallback |
|---|---|---|
Taskfile.yml (test task) | task test | -- |
Makefile (test target) | make test | -- |
| go.mod | go test ./... | -- |
package.json (test script) | npm test | npx jest or npx vitest run |
| pyproject.toml / setup.py | python -m pytest | -- |
| Cargo.toml | cargo test | -- |
| None detected | Warn: "No test runner detected" and skip | -- |
If a working_directory context is provided (e.g., a worktree path), run all commands prefixed with cd <working_directory> &&. Otherwise, use the current directory.