> ## 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 • AI Agent SDK

> Agent Skills module for PraisonAI Agents.

# skills

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

Agent Skills module for PraisonAI Agents.

This module provides support for the open Agent Skills standard (agentskills.io),
enabling agents to load and use modular capabilities through SKILL.md files.

Zero Performance Impact:

* All imports are lazy loaded via **getattr**
* Skills only loaded when explicitly enabled
* No auto-discovery at import time

Usage:
from praisonaiagents.skills import SkillManager, SkillProperties

manager = SkillManager()
manager.discover(\["./skills"])
prompt\_xml = manager.to\_prompt()

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import skills
```

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Skills Concept" icon="wand-magic-sparkles" href="/docs/concepts/skills" />

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