> ## 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.

# Skills Config • AI Agent SDK

> SkillsConfig: Configuration for agent skills.

# SkillsConfig

> Defined in the [**Feature Configs**](../modules/feature_configs) module.

<Badge color="blue">AI Agent</Badge>

Configuration for agent skills.

Consolidates: skills, skills\_dirs

## Properties

<ResponseField name="paths" type="List">
  No description available.
</ResponseField>

<ResponseField name="dirs" type="List">
  No description available.
</ResponseField>

<ResponseField name="auto_discover" type="bool">
  No description available.
</ResponseField>

<Accordion title="Internal & Generic Methods">
  * **to\_dict**: Convert to dictionary.
</Accordion>

## Usage

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Simple list
    Agent(skills=["./my-skill", "code-review"])
    
    # With config
    Agent(skills=SkillsConfig(
        paths=["./my-skill"],
        dirs=["~/.praisonai/skills/"],
        auto_discover=True,
    ))
```

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/config/feature_configs.py#L745">
  `praisonaiagents/config/feature_configs.py` at line 745
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Configuration Overview" icon="gear" href="/docs/configuration/index" />

  <Card title="Agent Config" icon="robot" href="/docs/configuration/agent-config" />

  <Card title="Skills Concept" icon="wand-magic-sparkles" href="/docs/concepts/skills" />

  <Card title="Skills Feature" icon="star" href="/docs/features/skills" />
</CardGroup>
