Claude
Skills
Sign in
Back

elm

Included with Lifetime
$97 forever

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

Code Review

What this skill does


# Elm Development

## Required Tools

Always use these tools when working on Elm projects:

### elm-test

Run tests after making changes:

```bash
elm-test
```

### elm-review

Run static analysis after making changes:

```bash
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

```bash
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
```
Files: 1
Size: 0.9 KB
Complexity: 3/100
Category: Code Review

Related in Code Review