OCaml ecosystem = opam + dune + merlin + ocamlformat.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill ocaml --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ocaml?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-ocaml-asi)More formats (shields.io, HTML) on the badges page.
---
name: ocaml
description: OCaml ecosystem = opam + dune + merlin + ocamlformat.
metadata:
trit: 0
---
# ocaml
OCaml ecosystem = opam + dune + merlin + ocamlformat.
## Atomic Skills
| Skill | Commands | Domain |
|-------|----------|--------|
| opam | 45 | Package manager |
| dune | 20 | Build system |
| merlin | 1 | Editor support |
| ocamlformat | 1 | Formatter |
## Workflow
```bash
opam switch create 5.1.0
eval $(opam env)
opam install dune merlin
dune init project myapp
cd myapp
dune build
dune test
```
## dune-project
```lisp
(lang dune 3.0)
(name myapp)
(library
(name mylib)
(libraries str unix))
(executable
(name main)
(libraries mylib))
```
## REPL
```bash
utop
dune utop
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!