Skip to main content
ClaudeWave

Wraps Javascript/Typescript SDK

SubagentsOfficial Registry1 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/10/2026
Install as a Claude Code subagent
Method: Clone
Terminal
git clone https://github.com/wraps-team/wraps-js && cp wraps-js/*.md ~/.claude/agents/
1. Clone the repository and copy the agent .md definitions into ~/.claude/agents (or .claude/agents inside a project).
2. Start a new Claude Code session to load the agents.
3. Delegate work to them with the Task/Agent tool or by name.
Use cases

Subagents overview

<p align="center">
  <a href="https://wraps.dev">
    <img src="https://wraps.dev/wraps-dark-logo.png" alt="Wraps" width="200" />
  </a>
</p>

<p align="center">
  <strong>TypeScript SDKs for AWS services. Your infrastructure, great DX.</strong>
</p>

<p align="center">
  <a href="https://www.npmjs.com/package/@wraps.dev/email"><img src="https://img.shields.io/npm/v/@wraps.dev/email?label=email&color=blue" alt="email version" /></a>
  <a href="https://www.npmjs.com/package/@wraps.dev/sms"><img src="https://img.shields.io/npm/v/@wraps.dev/sms?label=sms&color=blue" alt="sms version" /></a>
  <a href="https://www.npmjs.com/package/@wraps.dev/client"><img src="https://img.shields.io/npm/v/@wraps.dev/client?label=client&color=blue" alt="client version" /></a>
  <a href="https://github.com/wraps-team/wraps-js/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="License" /></a>
  <img src="https://img.shields.io/badge/TypeScript-strict-blue" alt="TypeScript" />
</p>

---

**AI agents:** start with [AGENTS.md](./AGENTS.md) — which package to reach for, auth, the minimal correct call for each, and the sharp edges. For the full docs in one file, fetch [wraps.dev/llms-full.txt](https://wraps.dev/llms-full.txt), or [wraps.dev/llms.txt](https://wraps.dev/llms.txt) for an agent-oriented index.

## Packages

### [@wraps.dev/email](./packages/email) — AWS SES

```bash
pnpm add @wraps.dev/email
```

```typescript
import { WrapsEmail } from '@wraps.dev/email';

const email = new WrapsEmail();

const { messageId } = await email.send({
  from: 'hello@yourapp.com',
  to: 'user@example.com',
  subject: 'Welcome!',
  html: '<h1>Hello from Wraps!</h1>',
});
```

React.email support, template management, bulk sending, inbox reading, event history, and suppression lists. [SDK docs →](https://wraps.dev/docs/sdk-reference)

### [@wraps.dev/sms](./packages/sms) — AWS End User Messaging

```bash
pnpm add @wraps.dev/sms
```

```typescript
import { WrapsSMS } from '@wraps.dev/sms';

const sms = new WrapsSMS();

await sms.send({
  to: '+14155551234',
  message: 'Your verification code is 123456',
});
```

Batch sending, opt-out management, and E.164 validation. [SMS docs →](https://wraps.dev/docs/sms-sdk-reference)

### [@wraps.dev/client](./packages/client) — Wraps Platform API

```bash
pnpm add @wraps.dev/client
```

```typescript
import { createPlatformClient } from '@wraps.dev/client';

const client = createPlatformClient({ apiKey: 'your-api-key' });

const { data } = await client.GET('/v1/contacts/', {
  params: { query: { page: '1', pageSize: '10' } },
});
```

Auto-generated types from OpenAPI, workflow definitions, and brand kit configuration.

## Documentation

| Resource | Link |
|----------|------|
| Quickstart | [wraps.dev/docs/quickstart](https://wraps.dev/docs/quickstart) |
| SDK Reference | [wraps.dev/docs/sdk-reference](https://wraps.dev/docs/sdk-reference) |
| SMS Docs | [wraps.dev/docs/sms-sdk-reference](https://wraps.dev/docs/sms-sdk-reference) |
| CLI (deploy infra) | [wraps.dev/docs/cli-reference](https://wraps.dev/docs/cli-reference) |

## Community

- [GitHub Issues](https://github.com/wraps-team/wraps-js/issues) — Bug reports and feature requests
- [GitHub Discussions](https://github.com/wraps-team/wraps/discussions) — Questions and ideas
- [Contributing](CONTRIBUTING.md) — Development setup and guidelines

## License

MIT — see [LICENSE](LICENSE) for details.

What people ask about wraps-js

What is wraps-team/wraps-js?

+

wraps-team/wraps-js is subagents for the Claude AI ecosystem. Wraps Javascript/Typescript SDK It has 1 GitHub stars and its last recorded update is dated 2026-09-09.

How do I install wraps-js?

+

You can install wraps-js by cloning the repository (https://github.com/wraps-team/wraps-js) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is wraps-team/wraps-js safe to use?

+

Our security agent has analyzed wraps-team/wraps-js and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains wraps-team/wraps-js?

+

wraps-team/wraps-js is maintained by wraps-team. The last recorded GitHub activity is dated 2026-09-09, with 1 open issues.

Are there alternatives to wraps-js?

+

Yes. On ClaudeWave you can browse similar subagents at /categories/agents, sorted by popularity or recent activity.

Deploy wraps-js to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: wraps-team/wraps-js
[![Featured on ClaudeWave](https://claudewave.com/api/badge/wraps-team-wraps-js)](https://claudewave.com/repo/wraps-team-wraps-js)
<a href="https://claudewave.com/repo/wraps-team-wraps-js"><img src="https://claudewave.com/api/badge/wraps-team-wraps-js" alt="Featured on ClaudeWave: wraps-team/wraps-js" width="320" height="64" /></a>

More Subagents

wraps-js alternatives