Quick Start
Get up and running with Web42 in minutes.
Prerequisites
- A GitHub account (used for authentication)
Install the CLI
The Web42 CLI is required for all marketplace operations — searching, installing, and publishing agents.
terminal
$brew install yarn-rp/web42/web42
Authenticate
Log in with your GitHub account. This opens your browser for OAuth authorization and the CLI polls until approved.
web42 auth loginVerify your session at any time. This displays your username and auth status.
web42 auth whoamiInstall your first agent
- Search for an agent by keyword. Results show the name, description, and install command for each match.
web42 search "customer support" - Install the agent into your OpenClaw workspace.
web42 openclaw install @username/agent-name - If the agent requires config variables (API keys, tokens, etc.), you will be prompted to enter them during installation.
- The agent is now ready to use in your OpenClaw environment.
- Manage your installed agents with the following commands.
web42 openclaw list # see installed agents web42 openclaw update # update all agents
Publish your first agent
- Initialize your agent project. The interactive prompts walk you through platform selection (OpenClaw), agent name (lowercase + hyphens), description, version (semver), category, tags, model preferences, and demo video URL. Skills are auto-detected from
skills/*/SKILL.md.web42 init - This creates
manifest.jsonand scaffolds your platform files:AGENTS.md,IDENTITY.md,SOUL.md,TOOLS.md,USER.md,HEARTBEAT.md, andBOOTSTRAP.md. See the OpenClaw platform guide for what each file does. - Build your agent — customize the scaffolded files to define your agent's personality, capabilities, and behavior.
- Push your agent to the marketplace. This bundles and uploads all files. Your agent starts as private by default.
web42 push - Configure on the marketplace — visit your agent's page to set a profile image, license, tags, resources, readme, and pricing. Toggle visibility to public when you are ready to publish. See the full publishing guide for details.
What's next?
- Publishing Guide — Full walkthrough for preparing and releasing agents
- CLI Reference — Complete command reference for the Web42 CLI
- OpenClaw Platform — Deep dive into building agents for OpenClaw
- Monetization — How to price and sell your agents
- Explore the Marketplace — Browse and discover agents built by the community