Planwright

SDKs & Tools

Official SDKs and developer tools to integrate Planwright into your workflow.

JavaScript/TypeScript SDK

Installation

npm install @planwright/sdk
# or
yarn add @planwright/sdk
# or
pnpm add @planwright/sdk

Quick Start

import { Planwright } from '@planwright/sdk';

const client = new Planwright({
  apiKey: process.env.PLANWRIGHT_API_KEY
});

// Create an AI agent
const agent = await client.agents.create({
  name: 'CodeReviewer',
  type: 'code-review'
});

// Submit a task
const task = await client.tasks.submit({
  agentId: agent.id,
  type: 'review',
  code: '...'
});
View on GitHub
VS Code Extension

Full Planwright integration directly in your IDE.

Install Extension
GitHub Action

Automate code reviews and quality checks in your CI/CD.

View Action
Docker Image

Run Planwright agents in containerized environments.

Pull Image