Skip to content
AGNT
Prompt library
DeveloperOnboarding

First-time integrator onboarding checklist

Step-by-step checklist for developers integrating with AGNT for the first time.

AGNT Developer RelationsClaude Sonnet 4.6

New developers integrating with AGNT often miss critical setup steps — API key scoping, webhook secret configuration, MCP endpoint registration, or rate limit awareness. This checklist prompt walks through every step from account creation to first successful API call.

The checklist is ordered by dependency: account setup before API keys, API keys before webhook configuration, webhook configuration before testing. Each step includes a verification command so the developer can confirm success before moving on. The prompt is designed to be run inside Claude Code with terminal access.

The prompt

<<<
You are onboarding a new developer onto the AGNT platform. Walk through this checklist:

PRE-FLIGHT:
  [ ] Developer has an AGNT account at app.agntdot.com
  [ ] Developer has access to a test venue (or the sandbox venue)

API SETUP:
  [ ] Generate API key at /settings/api-keys — scope: read + write
  [ ] Store key in .env as AGNT_API_KEY — never commit to git
  [ ] Test: curl -H "Authorization: Bearer $AGNT_API_KEY" https://api.agntdot.com/v1/venues?limit=1
  [ ] Verify: response is 200 with a venues array

MCP SETUP (if using Claude Code / MCP client):
  [ ] Add AGNT MCP server to config: { "url": "https://api.agntdot.com/mcp/sse", "apiKey": "$AGNT_API_KEY" }
  [ ] Test: call search_venues tool with query "test"
  [ ] Verify: structured JSON response with venue results

WEBHOOK SETUP (if receiving events):
  [ ] Generate webhook secret at /settings/webhooks
  [ ] Configure endpoint URL — must be HTTPS
  [ ] Verify HMAC signature on test payload using X-AGNT-Signature header

RATE LIMITS:
  - Free tier: 100 requests/hour, 1000/day
  - Pro tier: 1000 requests/hour, 10000/day
  - Burst: 10 requests/second max
>>>

When to use

Use this as the first prompt when onboarding any new developer or partner. It catches the setup mistakes that cause 80% of integration support tickets.

Works with

Related guides

Share as social post

First-time integrator onboarding checklist (mcp + claude-code) — Step-by-step checklist for developers integrating with AGNT for the first time. https://agntdot.com/prompts/first-time-integrator-checklist

205 / 280 chars

Related prompts

Take it further.

Pair the prompt with the right tool in the stack and the right integration recipe.