🤖 AI Agents
This page provides structured context for AI agents integrating with the IBEx Wallet API. Whether you're building an autonomous agent, a copilot, or an MCP tool — start with the skills.md file below.
skills.md
The canonical skill file for AI agents. Contains boundaries, architecture overview,
core workflows (signup, signin, deploy wallet, transfer tokens), and API reference —
following the GitBook
skill.md standard.
View skills.md →
What is skills.md?
A skills.md file is a structured document that teaches AI agents how to interact
with an application. It follows a standard format:
- Boundaries — when and why to use this skill
- Structural Overview — core objects, entry points, architecture
- Core Workflows — step-by-step operations (signup → signin → deploy)
- Reference — API endpoints, authentication, error handling
Quick Start for Agents
# 1. Read the skill file GET /skills.md # 2. Get the OpenAPI spec GET /openapi.json # 3. Authenticate POST /v1.2/auth/sign-up # or /v1.2/auth/sign-in → Returns JWT token # 4. Use the API GET /v1.2/users/me Authorization: Bearer <jwt>