用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Marshall-Hallenbeck/dot_files --skill run-tests命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when asked to work on, implement, or complete a GitHub issue — before writing any code, checks issue state, existing PRs, git history, and codebase to determine what work remains or if the issue is already resolved
Use when starting, checking, or finishing work on a GitHub issue in any repo where multiple agents may work in parallel — posts a session-info claim comment and manages the in-progress label so other agents skip claimed issues
Use when asked to create, open, publish, or submit a pull request from the current branch
基于 SOC 职业分类
正在显示 SKILL.md
| name | run-tests |
| description | Dispatcher skill for unit, integration, or full quality-gate workflows. Auto-detects language and scope. |
| argument-hint | [scope] |
| disable-model-invocation | true |
Dispatcher skill that routes to the dedicated test workflows.
/run-tests [scope]
/run-tests unit
/run-tests integration
/run-tests backend
/run-tests all
| Scope | Delegates To |
|---|---|
unit | /run-unit-tests |
integration | /run-integration-tests |
all | /run-quality-gate |
backend | /run-unit-tests backend + /run-integration-tests backend |
frontend | /run-unit-tests frontend |
e2e | /run-integration-tests e2e |
| (no argument) | Auto-detect from changed files, then dispatch |
Use git diff --name-only HEAD:
backend/** or src/**/*.py or tests/**/*.py changed → include backend unit + backend integrationfrontend/** or *.ts/*.tsx/*.js/*.jsx changed → include frontend unitfrontend/tests/** or playwright.config.* or *.e2e.* changed → include e2e integration*.sh changed → no test dispatch (shell scripts rarely have test suites, but note the change)/run-quality-gate