Agent Quickstart Guides

Give your AI coding agent the power to schedule meetings, check availability, and join video calls. Pick your agent below.

Claude Code

Anthropic's CLI coding agent. Full CLAUDE.md integration.

CLAUDE.md

Cursor

AI-first code editor with .cursorrules support.

.cursorrules

Cline

Autonomous coding agent for VS Code.

.clinerules

Windsurf

Codeium's agentic IDE with cascades.

.windsurfrules

Aider

Terminal-based pair programming with any LLM.

APPOIINT-SKILL.md

Codex

OpenAI's cloud coding agent.

AGENTS.md

Universal Setup (any agent)

If your agent isn't listed above, use the API directly:

# 1. Add to .env
APPOIINT_BASE_URL=https://appoiint.com
APPOIINT_API_KEY=your_api_key_here

# 2. List event types
curl -s $APPOIINT_BASE_URL/api/v1/sdk/scheduling/event-types/public \
  -H "Authorization: Bearer $APPOIINT_API_KEY"

# 3. Check availability
curl -s "$APPOIINT_BASE_URL/api/v1/sdk/availability/slots/publicinverse?email=host@example.com&date=2026-06-01" \
  -H "Authorization: Bearer $APPOIINT_API_KEY"

# 4. Create booking
curl -s -X POST $APPOIINT_BASE_URL/api/v1/sdk/scheduling/bookings \
  -H "Authorization: Bearer $APPOIINT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "eventTypeId": "...",
    "scheduledAt": "2026-06-01T14:00:00Z",
    "duration": 30,
    "customer": {"name": "Jane", "email": "jane@example.com"},
    "location": {"type": "video"}
  }'

# 5. Join meeting as agent
curl -s -X POST $APPOIINT_BASE_URL/api/v1/sdk/tai/agent/meeting/join \
  -H "Authorization: Bearer $APPOIINT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "roomId": "abc123",
    "agentName": "My Agent",
    "agentRole": "tai-super",
    "capabilities": ["chat", "notes"]
  }'