Use when working with Elm projects. Requires running elm-test and elm-review for quality assurance.
npx claudepluginhub ohare93/claude-setup --plugin jmo-development-toolsThis skill uses the workspace's default tool permissions.
Always use these tools when working on Elm projects:
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Always use these tools when working on Elm projects:
Run tests after making changes:
elm-test
Run static analysis after making changes:
elm-review
.elm fileselm-test to verify tests passelm-review to catch common issueselm make src/Main.elm # Compile
elm reactor # Development server
elm-test # Run tests
elm-review # Static analysis
elm-review --fix # Auto-fix issues
elm install <package> # Install package