ProfileClaw
ResumeOpportunity WorkspacePricing
ProfileClaw
ProfileClawCareer Graph OS
ProfileClaw Data Layer

Build once. Keep your context alive everywhere.

ProfileClaw keeps your assessments, materials, and long-term context ready for products like OpenClaw, Claude Work, and Nanobot, so AI can work with memory instead of starting cold.

© 2026 ProfileClaw. All rights reserved.

沪ICP备2026012738号

【工业和信息化部】尊敬的用户路承龙,您的ICP备案申请已通过审核,备案/许可证编号为:沪ICP备2026012738号,审核通过日期:2026-04-09。特此通知!【工信部ICP备案】

Product

  • Home
  • Assessments
  • Reports
  • Resume
  • Opportunity Workspace
  • Pricing
  • About

Assessments

  • Assessments
  • RIASEC
  • Work Style
  • Values
  • Skills & Talents
  • Collaboration & Conflict
  • Stress & Regulation
  • Expression Style
  • Current State Pulse

Developers

  • Developer Center
  • Docs
  • Quickstart
  • API Reference
  • Agents
  • Integrations

My

  • My
  • Reports
  • Opportunity Workspace
  • Job Preferences
  • Resume
  • Purchases & Credits
  • API Keys
  • Auth
Open QuickstartOpen the quickstart to see how ProfileClaw data connects to docs, APIs, and agent workflows.
Get StartedCreate your account, start the assessments, and build a capability profile AI can keep using.
All systems operational
HomePricingDocsPrivacyTerms
HomeAssessmentsReportsMy
ProfileClaw Docs
Home
Pricing
Agents OverviewAgent QuickstartAgent AuthCachingClosed Loop ArchitectureRetriesAgent WebhooksGuides OverviewAssessment GuideIntegrations OverviewOpenClaw Integration
DocsAgentsQuickstart

Agent Quickstart

Start with context, then branch only when the task proves it

The fastest successful integration is usually one context read followed by one task-specific call. Use this page to decide when to stay on that shape and when to go deeper.

Format: AI-first docs
Source: DocsAgentsQuickstartPage
Tip

Default to the smallest workflow that still produces a strong action

ProfileClaw is strongest when the agent stops rebuilding the same career model every turn.

Core Workflow Layers

Use these layers to keep the first implementation simple and predictable.

Grounding

Load a compact context before asking the agent to do anything ambitious.

  • Start with `GET /api/v1/context`.
  • Keep the first payload compact.
  • Use it as the shared user model for later calls.

Specialization

Only branch into narrower calls when the task needs deeper structure.

  • Use prediction for future-path exploration.
  • Use reasoning for deeper analysis.
  • Use dynamic context for recent-event sensitivity.

Continuation

Move into evented or long-running behavior later, not on day one.

  • Add webhooks only for asynchronous workflows.
  • Use retries for transient failures, not invalid requests.
  • Add caching after repeated reads become visible.

Use the 2-call path as the default mental model

For most assistants, one context read plus one narrower follow-up call is enough to stay useful without overfetching.

  • Read context first so the runtime starts from profile, resume, and assessment signals.
  • Delay deeper calls until the workflow proves more detail is necessary.
  • Keep latency and token cost low in the first version.

Treat 3-call flows as evidence-driven upgrades

A third call becomes valuable when the workflow needs richer explanation, recent memory, or continuation logic.

  • Use `careerGraph=summary` when ranking or explanation depth matters.
  • Use `dynamicContext` when recent events affect the answer.
  • Use webhooks when the workflow must resume after an external change.

Workflow Comparison

Choose the narrowest flow that still matches the job.

FlowBest forAvoid when
2-call defaultMost assistants, copilots, and first integrations.You already know the task needs dynamic memory or continuation.
3-call expandedPlanning, ranking, or context-sensitive tasks.The agent is still proving basic product value.
Event-drivenLong-running workflows that must wake up later.The workflow can still succeed with direct reads only.

Decision Matrix

Use these choices to decide the next layer to add.

Situation

The agent only needs a stable user picture

Action

Stay on the compact Context API read.

Why

It already contains the highest-signal grounding layer.

Situation

The answer depends on future paths or alternatives

Action

Branch into prediction or reasoning after context.

Why

Those endpoints are meant for forward-looking decision work.

Situation

The workflow must resume after later user changes

Action

Add webhooks and fresh follow-up reads.

Why

Polling every turn wastes tokens and runtime work.

Reference flows

Start the default 2-call path with the currently available read-only Context API key. Deeper scoped keys are still private beta / manual request, so do not assume self-serve access in the first integration.

2-call default
1curl "https://profileclaw.cn/api/v1/context" -H "Authorization: Bearer $PROFILECLAW_API_KEY"
Expanded context
1curl "https://profileclaw.cn/api/v1/context?expand=careerGraph,dynamicContext&careerGraph=summary&query=product%20management" -H "Authorization: Bearer $PROFILECLAW_API_KEY"

Next surfaces

After the default flow is clear, tune runtime behavior and contract inspection.

Open Caching
Open Retries
Open Reference