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

# Remote Skill Source Protocol • AI Agent SDK

> RemoteSkillSourceProtocol: A declarative remote source that syncs skills into a local cache.

# RemoteSkillSourceProtocol

> Defined in the [**protocols**](../modules/protocols) module.

<Badge color="blue">AI Agent</Badge>

A declarative remote source that syncs skills into a local cache.

Implementations fetch a small manifest, download skill bundles into a
versioned cache directory, and atomically swap in updates when the remote
changes. They must be offline-safe (fall back to the last-good cache) and
treat remote content as untrusted (the caller re-validates fetched skills).

## Methods

<CardGroup cols={2}>
  <Card title="fetch()" icon="function" href="../functions/RemoteSkillSourceProtocol-fetch">
    Sync the remote source into `cache_dir` and return skill dirs.
  </Card>
</CardGroup>

## Source

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