com um clique
run-tests
Run tests (optional coverage) using the testing workflow
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Run tests (optional coverage) using the testing workflow
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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.
| 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.