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

# Get Skill • AI Agent SDK

> get_skill: Get a skill by name.

# get\_skill

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**SkillManager**](../classes/SkillManager) class in the [**manager**](../modules/manager) module.

Get a skill by name.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def get_skill(name: str) -> Optional[LoadedSkill]
```

## Parameters

<ParamField query="name" type="str" required={true}>
  Skill name
</ParamField>

### Returns

<ResponseField name="Returns" type="Optional[LoadedSkill]">
  LoadedSkill or None if not found
</ResponseField>

## Used By

* [`SkillManager.activate_by_name`](../functions/SkillManager-activate_by_name)
* [`SkillManager.get_allowed_tools`](../functions/SkillManager-get_allowed_tools)
* [`SkillManager.invoke`](../functions/SkillManager-invoke)
* [`SkillManager.get_instructions`](../functions/SkillManager-get_instructions)
* [`SkillManager.load_resources`](../functions/SkillManager-load_resources)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/skills/manager.py#L403">
  `praisonaiagents/skills/manager.py` at line 403
</Card>

***

## Related Documentation

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

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