> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Skill Metadata • Rust AI Agent SDK

> SkillMetadata: Metadata about a skill for lightweight loading.

# SkillMetadata

> Defined in the [**skills**](../modules/skills) module.

<Badge color="orange">Rust AI Agent SDK</Badge>

Metadata about a skill for lightweight loading.

## Fields

| Name             | Type      | Description                        |
| ---------------- | --------- | ---------------------------------- |
| `name`           | `String`  | Skill name                         |
| `description`    | `String`  | Skill description                  |
| `path`           | `PathBuf` | Path to the skill                  |
| `token_estimate` | `usize`   | Estimated token count for metadata |

## Methods

### `from_properties`

```rust theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
fn from_properties(props: &SkillProperties) -> Option<Self>
```

Create from SkillProperties.

**Parameters:**

| Name    | Type               |
| ------- | ------------------ |
| `props` | `&SkillProperties` |

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-rust/praisonai/src/skills/mod.rs#L118">
  `praisonai/src/skills/mod.rs` at line 118
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Rust LLM" icon="microchip" href="/docs/rust/llm" />

  <Card title="Rust Providers" icon="server" href="/docs/rust/providers" />

  <Card title="Rust Failover" icon="shield" href="/docs/rust/failover" />

  <Card title="Rust Skills" icon="wand-magic-sparkles" href="/docs/rust/skills" />
</CardGroup>
