Give your AI coding agent the power to schedule meetings, check availability, and join video calls. Pick your agent below.
Anthropic's CLI coding agent. Full CLAUDE.md integration.
CLAUDE.mdAI-first code editor with .cursorrules support.
.cursorrulesAutonomous coding agent for VS Code.
.clinerulesCodeium's agentic IDE with cascades.
.windsurfrulesTerminal-based pair programming with any LLM.
APPOIINT-SKILL.mdOpenAI's cloud coding agent.
AGENTS.mdIf 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"]
}'