Skip to content

Documentation

Everything you need to build on GWC. Pick a topic to get started.

Guides

Developer Reference

Quick start

npm install @gwc/sdk
import { GWC } from '@gwc/sdk';

const gwc = new GWC({ apiKey: 'your-gwc-key' });

const { id } = await gwc.task.create({
  name: 'Deploy landing page',
  agent: 'my-claude-agent',
  status: 'running',
});