# `ClaudeWrapper.Skills.Skill`
[🔗](https://github.com/genagent/claude_wrapper_ex/blob/main/lib/claude_wrapper/skills.ex#L24)

Full skill record returned by `ClaudeWrapper.Skills.get/2`.

Carries the summary fields plus the instructions `body` and any
unknown frontmatter keys in `extra`. See `ClaudeWrapper.Skills`.

# `t`

```elixir
@type t() :: %ClaudeWrapper.Skills.Skill{
  body: String.t(),
  description: String.t() | nil,
  dir_path: String.t(),
  dir_stem: String.t(),
  extra: %{optional(String.t()) =&gt; String.t()},
  file_path: String.t(),
  has_assets: boolean(),
  name: String.t(),
  size_bytes: non_neg_integer()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
