.claude/skills/test/SKILL.md
Run tests and return a summary. Test logs are contained within the forked context; only the summary is returned to the main context.
npx skillsauth add peintangos/langgraph-tutorial-ts testInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run tests based on arguments and output only a results summary.
all -> Run both primary tests and E2E/integration tests when availableunit -> Run only the fast or primary test commande2e -> Run only the E2E/integration commandRead ralph.toml first if it exists, then CLAUDE.md and docs/architecture.md. Inspect common project files at the repo root only as needed (for example Makefile, justfile, package.json, pyproject.toml, Cargo.toml, go.mod, or other task-runner files).
Identify the best available commands for:
Prefer commands explicitly defined in ralph.toml. If the registry is missing or incomplete, prefer commands explicitly documented in project docs. Only then infer them from the repo's task runner or manifest files.
When ralph.toml exists, use:
test_primary for fast or primary teststest_integration for E2E or broader integration testsCommand selection rules:
unit, run the fast or primary test commande2e, run the E2E or broader integration command onlyall, run all distinct discovered test commandsunit and allIf the requested command category does not exist, report it as SKIPPED.
Run the selected fast or primary test command.
Run the selected E2E or broader integration command.
Output results in the following format. Do not output the full test log.
## Test Results
- Primary Tests: PASS (X passed) / FAIL (X passed / Y failed) / SKIPPED
- E2E / Integration Tests: PASS (X passed) / FAIL (X passed / Y failed) / SKIPPED
### Failure Details (failures only)
- `test name` — error message
testing
Review testing strategy and guidelines
testing
Create a new feature specification and update progress.md and roadmap.md
documentation
Interactively adapt the Ralph Matsuo template to the current repository by filling project docs, rules, roadmap, and ralph.toml in one setup pass
development
Update roadmap.md and progress.md to reflect the latest development status