WorkRunner Documentation
Step 1of 3

Install AI Tools

The fastest way to build Constructs is with an AI coding assistant. Install our skill for Claude Code or OpenCode.

Prerequisites

Node.js 18 or later
npm or yarn package manager
Claude Code or OpenCode installed

Choose Your AI Coding Tool

Claude Code
Anthropic's official CLI for Claude. Best-in-class code generation.

1. Install Claude Code

If you haven't already, install Claude Code:

$ npm install -g @anthropic-ai/claude-code

2. Install the Construct Skill

Install our skill to get Construct-aware code generation:

$ npm install -g @useworkapp/construct-skill

The skill auto-installs to ~/.claude/skills/

3. Verify Installation

Check that the skill is installed:

$ construct-skill detect
✓ Claude Code

How It Works

The skill is automatically invoked when you ask Claude to build Constructs. Just describe what you want:

> Build me an expense tracker Construct

Manual Installation

If you prefer to install the skill manually or to a specific project:

# Install to specific platform
$ construct-skill install claude-code
$ construct-skill install opencode

# Install to current project (not global)
$ construct-skill install claude-code --project

# Install to both platforms
$ construct-skill install all

Validate Your Constructs

Use our validator to check if your Construct follows all requirements:

$ construct-skill validate ./App.tsx

✓ Construct passes validation!

Next: Build Your First Construct

Learn the patterns by building a simple todo list.