Packages

An Elixir framework for building LLM agent systems with skills, tools, and subagent delegation.

Current section

Files

Jump to
skill_kit lib skill_kit event tool_call_start.ex
Raw

lib/skill_kit/event/tool_call_start.ex

defmodule SkillKit.Event.ToolCallStart do
@moduledoc "A tool call has begun (name and id known)."
@enforce_keys [:id, :name]
defstruct [:agent, :id, :name]
end