返回 Skill 列表
extension
分类: 开发与工程无需 API Key

elm-packages

查阅Elm包文档,列出项目依赖项,搜索Elm包注册表,并阅读模块导出。在处理Elm项目、elm.json文件或需要关于Elm包的信息时使用。

person作者: jakexiaohubgithub

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.

# List installed packages (elm.json dependencies)
./scripts/list-installed-packages.sh

# Search the Elm package repository
./scripts/search-packages.sh "search query"

# Get README documentation for a package
./scripts/get-readme.sh {author} {name} {version}

# List package modules or module exports
./scripts/get-exports.sh {author} {name} {version}
./scripts/get-exports.sh {author} {name} {version} {ModuleName}

# Get full docs for a specific export
./scripts/get-export-docs.sh {author} {name} {version} {ModuleName} {exportName}

Common Workflows

Looking up docs for an installed package

  1. Run list-installed-packages.sh to get author/name/version
  2. Run get-exports.sh to list modules, then exports
  3. Run get-export-docs.sh for full documentation on a specific export

Discovering new packages

  1. Run search-packages.sh with keywords to find packages
  2. Run get-readme.sh for an overview
  3. Run get-exports.sh to explore the API