> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sendrealm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Skills

> Use Sendrealm skills with AI coding agents.

Sendrealm agent skills give coding agents focused instructions for building Sendrealm email and push integrations. They are guidance-first: agents use them to write and review integration code, not to send production messages or manage your Sendrealm account directly.

## Install

Install the Sendrealm skills package in agents that support the Agent Skills format:

```bash theme={null}
npx skills add sendrealm/skills
```

Source: [sendrealm/skills](https://github.com/sendrealm/skills)

The package includes:

* `sendrealm-email` for outbound email sends and email templates.
* `sendrealm-push` for backend push sends, device SDK setup, and delivery troubleshooting.

## What The Skills Do

<CardGroup cols={2}>
  <Card title="Sendrealm Email" icon="envelope" href="/agent-skills/email">
    Add transactional email sends, templates, tags, headers, attachments, and safe error handling with `@sendrealm/sdk`.
  </Card>

  <Card title="Sendrealm Push" icon="bell" href="/agent-skills/push">
    Add push registration and backend notification sends across Web, React Native, Android, and iOS.
  </Card>
</CardGroup>

## Safety Model

* API keys stay in trusted backend code through `SENDREALM_API_KEY`.
* Browser and mobile apps use public Sendrealm Push App IDs, never Sendrealm API keys.
* The skills point agents back to Sendrealm docs and API reference pages before generating integration code.
* Version 1 does not include MCP or CLI live account actions.

## Related Pages

* [JavaScript SDK](/sdks/javascript)
* [SDK Overview](/sdks/overview)
* [Send Email API](/api-reference/endpoint/create)
* [Send Push Notification API](/api-reference/endpoint/send-push-notification)
