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

> get_available_skills: Get metadata for all available skills.

# get\_available\_skills

<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 metadata for all available skills.

This is used for system prompt injection. Skills are filtered by:

1. disable-model-invocation: true (excluded)
2. Capability enforcement (if strict mode, exclude UNAVAILABLE skills)
3. Graceful-degradation fallbacks: a skill that declares
   `fallback_for_tools` / `fallback_for_servers` is offered only
   when the referenced capability is ABSENT.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def get_available_skills() -> List[SkillMetadata]
```

### Returns

<ResponseField name="Returns" type="List[SkillMetadata]">
  The result of the operation.
</ResponseField>

## Uses

* `validate_skill_capabilities`
* `logger.warning`

## Used By

* [`SkillManager.to_prompt`](../functions/SkillManager-to_prompt)
* [`list_skills_for_api`](../functions/list_skills_for_api)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/skills/manager.py#L439">
  `praisonaiagents/skills/manager.py` at line 439
</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>
