| name | elm-packages |
| description | Look up Elm package documentation, list project dependencies, search the Elm package registry, and read module exports. Use when working with Elm projects, elm.json files, or needing information about Elm packages.
|
| allowed-tools | Read, Bash, Glob |
Capabilities
All capabilities are exposed as bash scripts in the scripts/ directory relative to this skill.
If scripts fail, see ./TROUBLESHOOTING.md for diagnosis and installation help.
./scripts/list-installed-packages.sh
./scripts/search-packages.sh "search query"
./scripts/get-readme.sh {author} {name} {version}
./scripts/get-exports.sh {author} {name} {version}
./scripts/get-exports.sh {author} {name} {version} {ModuleName}
./scripts/get-export-docs.sh {author} {name} {version} {ModuleName} {exportName}
Common Workflows
Looking up docs for an installed package
- Run
list-installed-packages.sh to get author/name/version
- Run
get-exports.sh to list modules, then exports
- Run
get-export-docs.sh for full documentation on a specific export
Discovering new packages
- Run
search-packages.sh with keywords to find packages
- Run
get-readme.sh for an overview
- Run
get-exports.sh to explore the API