Skip to main content
PlayCamp provides Claude Code agents that automate SDK integration. Instead of manually writing API calls, you can describe what you need in natural language — the agents will install the SDK, implement APIs, configure webhooks, and verify your setup.

Supported Categories

CategoryAgentsDescription
Node SDK5 agentsAutomated integration with @playcamp/node-sdk
Go SDK5 agentsAutomated integration with github.com/playcamp/playcamp-go-sdk
API1 agentDirect HTTP API guide for Python, Java, C#, PHP, etc.

Quick Start

1

Install agents

Run the installer in your game server project:
cd your-game-server
bash <(curl -fsSL https://raw.githubusercontent.com/PlayCamp/playcamp-sdk-agents/main/scripts/install.sh)
2

Launch Claude Code

claude
3

Ask

Integrate PlayCamp SDK with sponsor, coupon, and payment APIs
The agent automatically sets up the SDK, implements the required APIs, and configures error handling.

Install Options

# Install to current project (default)
bash <(curl -fsSL https://raw.githubusercontent.com/PlayCamp/playcamp-sdk-agents/main/scripts/install.sh)

# Install globally (~/.claude/agents/)
bash <(curl -fsSL ...install.sh) --global

# Install specific category only
bash <(curl -fsSL ...install.sh) --platform=node
bash <(curl -fsSL ...install.sh) --platform=go
bash <(curl -fsSL ...install.sh) --platform=api

# Uninstall (removes agents + routing rules from CLAUDE.md)
bash <(curl -fsSL ...install.sh) --uninstall

Agents

Node SDK Agents (5)

AgentPurpose
@agent-playcamp-integratorSDK setup + mandatory API integration (sponsors, coupons, payments)
@agent-playcamp-auditorIntegration code review, security checks, and validation
@agent-playcamp-webhook-specialistWebhook endpoint setup and signature verification
@agent-playcamp-migration-assistantMigrate raw HTTP calls (fetch/axios) to SDK methods
@agent-playcamp-test-verifierBuild verification, environment config validation

Go SDK Agents (5)

AgentPurpose
@agent-playcamp-go-integratorGo SDK setup + mandatory API integration (sponsors, coupons, payments)
@agent-playcamp-go-auditorGo-specific code review, errors.As() patterns, context usage validation
@agent-playcamp-go-webhook-specialistWebhook setup with webhookutil.Verify() and batch event handling
@agent-playcamp-go-migration-assistantMigrate raw net/http calls to Go SDK methods
@agent-playcamp-go-test-verifiergo build, go vet, integration verification

API Agent (1)

AgentPurpose
@agent-playcamp-api-guideDirect HTTP API integration for non-SDK languages (Python, Java, C#, PHP, curl)

Usage Examples

New Integration (Node.js)

Set up PlayCamp SDK in my Express server with payment, coupon, and sponsor endpoints
Add PlayCamp webhook handling with signature verification to my server
Review my PlayCamp integration for security issues and best practices

New Integration (Go)

Set up PlayCamp Go SDK in my server with sponsor, coupon, and payment APIs
Add PlayCamp webhook verification to my Go server using webhookutil

Direct API Integration (non-SDK)

Show me how to integrate PlayCamp payment API in Python
Set up PlayCamp sponsor and coupon APIs in my Java server

Migration

Migrate my raw fetch() calls to PlayCamp SDK methods
Migrate my net/http PlayCamp calls to the Go SDK

Explicit Agent Invocation

You can also call agents directly by name:
Use @agent-playcamp-integrator to integrate PlayCamp SDK with server key configuration
Use @agent-playcamp-webhook-specialist to set up webhook endpoints

New Node SDK Integration

  1. integrator installs SDK, initializes clients, implements mandatory APIs
  2. webhook-specialist configures webhook endpoints and signature verification
  3. auditor reviews full integration for correctness and security
  4. test-verifier validates build, config, and environment setup

New Go SDK Integration

  1. go-integrator installs Go SDK, initializes clients, implements mandatory APIs
  2. go-webhook-specialist configures webhook endpoints with webhookutil package
  3. go-auditor reviews Go integration for idiomatic patterns and security
  4. go-test-verifier runs go build, go vet, and environment validation

Direct HTTP Integration (non-SDK)

  1. api-guide provides HTTP endpoints, auth headers, request/response formats, and webhook verification examples for any language

Migration from Raw HTTP

  1. migration-assistant converts fetch/axios calls to SDK methods
  2. auditor validates migration completeness and correctness
  3. test-verifier verifies build and configuration

How It Works

The installer adds agent files to .claude/agents/ and appends routing rules to your project’s CLAUDE.md. When you ask Claude Code about PlayCamp integration, the routing rules automatically delegate to the correct specialized agent.
User: "Add PlayCamp payment processing"
  → Claude reads CLAUDE.md routing rules
    → Delegates to @agent-playcamp-integrator
      → Agent implements payment API with SDK
Agents have full access to read, write, and edit files in your project. They can install npm packages, create modules, and modify your server code.