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

# resolve • AI Agent SDK

> resolve: Expand ``@bundle`` selectors into member skill names.

# resolve

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

Expand `@bundle` selectors into member skill names.

Plain skill names/paths pass through unchanged. A `@bundle` selector
expands to its member skill names (forgiving: a missing/unknown bundle
is logged, not fatal). Nested `@bundle` members are expanded
recursively, with cycle protection. Duplicates are removed while
preserving order.

## Signature

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

## Parameters

<ParamField query="selectors" type="List[str]" required={true}>
  No description available.
</ParamField>

### Returns

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

## Uses

* `seen.add`
* `is_bundle_selector`
* `strip_bundle_marker`
* `logger.warning`

## Used By

* [`Agent.skill_manager`](../functions/Agent-skill_manager)
* [`resolve_memory`](../functions/resolve_memory)
* [`resolve_knowledge`](../functions/resolve_knowledge)
* [`resolve_output`](../functions/resolve_output)
* [`resolve_execution`](../functions/resolve_execution)

## Source

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