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

> get_available_skills_by_state: Get skills filtered by their capability validation state.

# get\_available\_skills\_by\_state

<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 skills filtered by their capability validation state.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def get_available_skills_by_state(state: SkillState) -> List[LoadedSkill]
```

## Parameters

<ParamField query="state" type="SkillState" required={true}>
  Desired skill state
</ParamField>

### Returns

<ResponseField name="Returns" type="List[LoadedSkill]">
  List of skills in the specified state
</ResponseField>

## Uses

* `validate_skill_capabilities`
* `logger.warning`

## Source

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