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

# Activate By Name • AI Agent SDK

> activate_by_name: Activate a skill by name.

# activate\_by\_name

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

Activate a skill by name.

## Signature

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

## Parameters

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

### Returns

<ResponseField name="Returns" type="bool">
  True if activation succeeded
</ResponseField>

## Uses

* `get_skill`
* `activate`

## Source

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