Back to blog
Product Update

wrok Meets OpenClaw: Manage Your Career from Your AI Assistant

wrok||4 min read

wrok Meets OpenClaw: Manage Your Career from Your AI Assistant

If you already use an AI assistant to write code, answer questions, and automate your workflow — why should managing your career be any different?

Today we're launching the wrok plugin for OpenClaw, the open-source AI assistant that runs locally on your machine. The plugin gives your OpenClaw agent full access to the wrok career platform. No browser. No UI. Just conversation.

The Problem with Career Management

Most professionals update their resume once a year, usually in a panic after getting a recruiter message or hearing about layoffs. The process is painful: open a Word doc, try to remember what you did, stare at bullet points, give up, and apply with something half-finished.

The problem isn't motivation — it's friction. You shouldn't need to context-switch into a separate app to keep your career profile current. Your career data should live where you work.

What the Plugin Does

The wrok OpenClaw plugin registers 50 tools covering your full career lifecycle:

  • Profile management — update your title, summary, contact info, and links
  • Work experience — add, update, and delete roles with rich descriptions
  • Skills & education — track your technical and professional skills
  • Projects — document side projects and portfolio items
  • Blog writing — draft, publish, and manage professional blog posts
  • Job tracking — track applications through every stage (discovered → applied → interviewing → offered)
  • Resume generation — regenerate and download PDF resumes from your career data
  • Public profile — create and publish a profile page with a custom URL

Everything happens through natural conversation with your OpenClaw agent. Ask it to "add my new role at Stripe" and it calls the right API. Ask it to "tailor my resume for this job posting" and it reads your career data, suggests changes, and regenerates the PDF.

How It Works

The plugin connects to wrok's headless API using your API key. No OAuth flows, no browser popups — set your key once and start talking.

# Install
openclaw plugins install clawhub:openclaw-plugin-wrok

# Configure
export WROK_API_KEY="wrok_sk_..."

# Use
openclaw agent --message "Show my career profile"

Under the hood, each tool maps to a REST API call. The plugin handles authentication, error formatting, and response structuring so the agent can work with your data naturally.

OpenClaw Agent → Plugin SDK → openclaw-plugin-wrok → wrok API → PostgreSQL

Why Headless Matters

The plugin is built on wrok's headless API, which means everything you can do in the web UI, you can do from any HTTP client. This matters for three reasons:

  1. Automation — set up cron jobs to keep your profile in sync with your coding activity
  2. Integration — connect wrok to any tool that speaks HTTP, not just OpenClaw
  3. Privacy — the plugin runs locally on your machine. Your career data flows directly between your terminal and wrok's API

If you're an engineer who lives in the terminal, this is how career management should work.

Getting Started

  1. Install OpenClaw if you haven't already
  2. Get a wrok API key: curl -X POST https://wrok-agent.fly.dev/api/v1/auth/signup -H "Content-Type: application/json" -d '{"email":"you@example.com","password":"secret","name":"Your Name"}'
  3. Install the plugin: openclaw plugins install clawhub:openclaw-plugin-wrok
  4. Set your key: export WROK_API_KEY="wrok_sk_..."
  5. Start talking: ask your agent to set up your profile, add work experience, or generate a resume

Full documentation is at wrok.app/integrations/openclaw.

What's Next

This is our first third-party AI assistant integration, but not our last. We're building wrok to work wherever you work — whether that's a chat interface, a terminal, or an IDE. If you're building an AI assistant and want to integrate wrok, our headless API is ready.

Product UpdateOpenClawAI IntegrationHeadless API