一键导入
run-tests
Run tests (optional coverage) using the testing workflow
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run tests (optional coverage) using the testing workflow
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | run-tests |
| description | Run tests (optional coverage) using the testing workflow |
| argument-hint | ["test files or description"] |
| version | 1.0.2 |
Run the testing workflow to execute tests. Coverage is optional (disabled by default).
memento-workflow:workflow-engine skill (it contains the relay protocol you must follow).mcp__plugin_memento-workflow_memento-workflow__start(
workflow="testing",
variables={"coverage": false, "test_scope": "all", "target": "all"},
cwd="<project root>"
)
If the user explicitly asks for coverage, set coverage to true:
mcp__plugin_memento-workflow_memento-workflow__start(
workflow="testing",
variables={"coverage": true, "test_scope": "all", "target": "all"},
cwd="<project root>"
)
To run only changed tests:
mcp__plugin_memento-workflow_memento-workflow__start(
workflow="testing",
variables={"coverage": false, "test_scope": "changed", "target": "all"},
cwd="<project root>"
)
To run specific tests, pass test_files as a JSON array:
mcp__plugin_memento-workflow_memento-workflow__start(
workflow="testing",
variables={"coverage": false, "test_scope": "specific", "target": "all", "test_files": ["tests/test_example.py"]},
cwd="<project root>"
)
To run backend-only or frontend-only tests, set target to backend or frontend.
Generate a PRD for a feature using Memory Bank context
Generate a technical specification based on a PRD using Memory Bank context
Run Memory Bank doc gardening (maintenance / garbage collection)
"Process and implement tasks from a protocol in git worktrees (or inline on the main workdir)"
Update Memory Bank documentation after code changes or protocol completion
Defer an out-of-scope finding to the backlog. Use when a bug, tech debt, idea, or risk is discovered but not appropriate to solve now.