Quick Start
Get your wrok career profile set up in 5 minutes.
1. Create your account
Sign up at wrok-web.fly.dev with your email, or use the headless API:
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"}'Save the api_key from the response — you'll need it for CLI and plugin access.
2. Build your profile
Use the web chat interface or AI assistant to populate your career data. Tell wrok about your:
- Work experience (roles, companies, dates, achievements)
- Skills (languages, frameworks, tools, soft skills)
- Education (degrees, institutions, GPA)
- Projects (side projects, open source, portfolio items)
3. Generate your resume
Once your profile is populated, generate a PDF resume:
curl -X POST https://wrok-agent.fly.dev/api/v1/resumes/regenerate \
-H "Authorization: Bearer $WROK_KEY"
curl "https://wrok-agent.fly.dev/api/v1/resumes/latest?format=pdf" \
-H "Authorization: Bearer $WROK_KEY" -o resume.pdf4. Create your profile page
Publish a public profile at your own URL:
curl -X POST https://wrok-agent.fly.dev/api/v1/profile-page/generate \
-H "Authorization: Bearer $WROK_KEY"
curl -X POST https://wrok-agent.fly.dev/api/v1/profile-page/publish \
-H "Authorization: Bearer $WROK_KEY"What's next?
- Career Profile — deep dive into managing your career data
- Blog — write and publish professional blog posts
- Headless API — use wrok from any HTTP client
- OpenClaw Plugin — manage your career from your AI assistant