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/sdkQuick 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: '...'
});VS Code Extension
Full Planwright integration directly in your IDE.
Install ExtensionGitHub Action
Automate code reviews and quality checks in your CI/CD.
View ActionDocker Image
Run Planwright agents in containerized environments.
Pull Image