https://github.com/bobadilla-tech/requiems-api-skills
🦾 Skills for Requiems API
https://github.com/bobadilla-tech/requiems-api-skills
agentic-ai claude-skills codex-skill copilot-skills skills
Last synced: 26 days ago
JSON representation
🦾 Skills for Requiems API
- Host: GitHub
- URL: https://github.com/bobadilla-tech/requiems-api-skills
- Owner: bobadilla-tech
- Created: 2026-04-27T23:53:33.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-06-14T22:52:37.000Z (about 1 month ago)
- Last Synced: 2026-06-15T00:20:32.200Z (about 1 month ago)
- Topics: agentic-ai, claude-skills, codex-skill, copilot-skills, skills
- Language: TypeScript
- Homepage: https://requiems.xyz/skills
- Size: 138 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
All-in-one backend for SaaS products.
A product by Bobadilla Technologies
# Requiems API Skills
Installable AI skills that give your coding agent direct knowledge of [Requiems API](https://requiems.xyz) — authentication, fraud detection, payments intelligence, and global data, all through one unified API.
Drop a skill into your agent and start calling Requiems API endpoints without copying docs or writing boilerplate.
## Install in Claude Code
Register this repository as a Claude Code plugin marketplace:
```
/plugin marketplace add bobadilla-tech/requiems-api-skills
```
Then browse and install:
1. Select **Browse and install plugins**
2. Select **requiems-api-skills**
3. Pick the skill set you want (e.g. `identity-skills`, `payments-skills`)
4. Select **Install now**
Or install directly:
```
/plugin install identity-skills@requiems-api-skills
/plugin install payments-skills@requiems-api-skills
```
Once installed, mention the skill naturally: _"Use the identity skill to protect this signup endpoint."_
## Install in OpenCode
Copy the skill file into your OpenCode skills directory:
```bash
npm install @requiems/api-skills
mkdir -p ~/.opencode/skills/requiems-identity
cp node_modules/@requiems/api-skills/skills/identity.md ~/.opencode/skills/requiems-identity/SKILL.md
```
## Install in GitHub Copilot
Place the skill file in your repo's `.github/copilot-instructions` folder or include it as a custom instruction set in your Copilot workspace settings.
```bash
npm install @requiems/api-skills
mkdir -p .github/copilot-instructions
cp node_modules/@requiems/api-skills/skills/identity.md .github/copilot-instructions/requiems-identity.md
```
## Install Manually (any agent)
Skills are plain Markdown files. Works anywhere that accepts custom instructions or a `SKILL.md` convention:
```bash
npm install @requiems/api-skills
# Then copy the .md file from node_modules/@requiems/api-skills/skills/ wherever your agent expects it
```
## What's Inside
Each skill gives your agent:
- Full endpoint reference (paths, params, response shapes)
- Copy-paste request examples
- Error codes and handling patterns
- Engine composition guides (e.g. `/v1/signup/protect`)
## Links
- [Requiems API docs](https://requiems.xyz/en/apis)
- [Official client libraries](https://github.com/bobadilla-tech/requiems-api-clients)
- [requiems.xyz](https://requiems.xyz)
---
> Contributing or building skills? See [docs/](docs/).