Elm

Use when working with Elm projects. Requires running elm-test and elm-review for quality assurance.

ohare93 9ad2e3e 896 B Updated

File contents

Elm Development

Required Tools

Always use these tools when working on Elm projects:

elm-test

Run tests after making changes:

elm-test

elm-review

Run static analysis after making changes:

elm-review

Workflow

  1. Make your changes to .elm files
  2. Run elm-test to verify tests pass
  3. Run elm-review to catch common issues
  4. Fix any reported problems before considering the task complete

Common Commands

elm 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

ohare93/claude-setup/tree/main/skills/elm commit 9ad2e3ea96

Frequently asked questions

npx skillmds@latest add ohare93/elm