Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
Use when working with Elm projects. Requires running elm-test and elm-review for quality assurance.
npx claudepluginhub jeprecated/claude-setup --plugin jmo-development-toolsHow this skill is triggered — by the user, by Claude, or both
Slash command
/jmo-development-tools:elmThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Always use these tools when working on Elm projects:
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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