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

# Load Resources • AI Agent SDK

> load_resources: Load all resources for a skill.

# load\_resources

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

Load all resources for a skill.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def load_resources(name: str) -> bool
```

## Parameters

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

### Returns

<ResponseField name="Returns" type="bool">
  True if resources loaded successfully
</ResponseField>

## Uses

* `get_skill`
* `load_all_resources`

## Source

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