Skip to main content

Lang Elm

Test, review, and build Elm frontends.

Skill metadata​

SourceBundled (installed by default)
Pathskills/software-development/lang-elm
Version1.0.0
AuthorVibeOS
LicenseMIT
Platformslinux, macos, windows

Reference: full SKILL.md​

info

The following is the complete skill definition that VibeOS loads when this skill is triggered. This is what the agent sees as instructions when the skill is active.

Elm Language Pack Skill

Drive Elm work with the project index and standard CLI recipes. LSP hint: elm-language-server (editor-side when applicable). Zero new core tools.

What this language is (beginner)​

Язык для браузерного UI с очень строгим компилятором: многие классы багов невозможны в рантайме. Меньше экосистема, чем у React/Vue.

Лучше всего для:

  • надёжные SPA
  • формы и дашборды
  • команды, ценящие compiler-driven UI
  • постепенное внедрение Elm

When to Use​

Выбирай этот pack, если:

  • есть elm.json
  • нужен максимально надёжный фронтенд
  • пользователь явно просит Elm

Manifests (автодетект репозитория): elm.json

Обычно рядом: Часто backend на Go/Elixir/Haskell; JS ports для внешней интеграции.

См. также skill choose-language-pack и vibeos language recommend "…".

When NOT to use​

  • большая React/Vue экосистема → TypeScript + Vue/Svelte/React
  • контентный сайт → Astro
  • мобилка → Dart/Flutter или native

Prerequisites​

vibeos pack apply lang-elm --apply
vibeos pack apply project-intelligence --apply

How to Run​

vibeos project index build
elm make src/Main.elm --output=/dev/null
elm-test || npx elm-test
elm-review || true

Quick Reference​

GoalCommand
Apply packvibeos pack apply lang-elm --apply
Doctorvibeos language doctor elm
Primary testelm-test
Choose guideskill choose-language-pack
Recommendvibeos language recommend "…"

Procedure​

  1. Для нового продукта сначала choose-language-pack / vibeos language recommend.
  2. Work from the project root that matches pack manifests.
  3. Prefer project-local toolchain and committed config (sqlfluff/buf/elm.json).
  4. Explain destructive DB or breaking contract changes; wait for explicit ask.
  5. Do not invent core tools; stay on terminal + read_file + index CLI.

Pitfalls​

  • Prefer elm-review before expanding JS ports.
  • Keep ports thin at the Elm/JS boundary.

Verification​

vibeos language doctor elm
vibeos project index status