Builders shipped a direct Claude Code harness and a ClawHub marketplace skill for OpenClaw workflows. Use these routes to wire agent tooling into OpenClaw, but watch Claude API limits and token burn costs.

You can browse the PinkyBot source, skim the official ClawHub commands, and read OpenClaw's own Anthropic provider note, which says Claude subscription auth inside OpenClaw now counts as third-party harness usage and requires Extra Usage. The matching HN thread quotes Anthropic's April 4 email almost verbatim. That makes the timing on a direct Claude Code harness feel less like a side project and more like a fast detour around a blocked road.
The interesting part of PinkyBot's README is not just that it uses Claude Code. It packages Claude Code into a full agent runtime with named agents, long-term memory, messaging connectors, triggers, and a FastAPI dashboard.
The repo lists a few concrete mechanics:
curl -fsSL https://pinkybot.ai/install.sh | bashpinky --mode api --port 8888That is a much thicker harness than the Reddit pitch makes obvious. It is effectively an alternate control plane for Claude Code.
The second route is more OpenClaw-native. The marketplace builder says users install a skill from ClawHub, complete onboarding, then let their local setup connect to a listener and receive generation jobs.
The job flow in that post and its comments is simple:
The snag is distribution. The builder's follow-up says ClawHub flags the skill as suspicious because the skill talks to an external API and can run local scripts, which is exactly the behavior this listener model needs. The official security guide explains why the platform is touchy here: OpenClaw explicitly warns about exposed tools, browser control, allowlists, and filesystem permissions.
OpenClaw's own Anthropic provider page says new setups should use an API key, and says Claude subscription auth inside OpenClaw now requires Extra Usage because Anthropic treats it as third-party harness usage. The HN thread quoting Anthropic's email says enforcement started April 4 with OpenClaw.
That gives PinkyBot's pitch a very specific edge. Its README says it works with your Claude account under Claude Code, and the launch post frames that as a way to skip OAuth jank and run an agent directly on a Claude Max plan.
Meanwhile the rate-limit complaint shows why some users were already looking for a different path even before the policy shift: the user says OpenClaw stalls on larger builds because Claude API rate limits interrupt long flows mid-task.
The most useful detail in the business-use thread is how quickly hobby tooling turns into ops spend. One commenter says a small startup deployment that knows company context, integrates with Jira, GitHub, email, and docs, and stores chat history is running at about $500 per day in tokens.
That same thread maps where OpenClaw is getting pushed first:
The convergence is pretty clear in those comments. Builders want agent runtimes with memory, tools, and workflow glue. They are now mixing direct Claude Code harnesses and OpenClaw skills to get there, depending on whether the bottleneck is auth, distribution, or token economics.