Packages

Aggregates and packages Claude skills from multiple Elixir projects into a single, validated bundle ready for distribution.

Current section

Files

Jump to
skill_ex lib skill_ex.ex
Raw

lib/skill_ex.ex

defmodule SkillEx do
@moduledoc """
Documentation for `SkillEx`.
"""
@doc """
Hello world.
## Examples
iex> SkillEx.hello()
:world
"""
def hello do
:world
end
end