What if your AI coding sidekick vanished mid-project—not from a crash, but because Anthropic decided your wrapper broke their rules?
That’s no hypothetical. January 2026: Anthropic blocks tools like OpenClaw and OpenCode. Wrappers, built on borrowed APIs and users’ tokens, crumble overnight.
Official CLI + Open Relay flips the script. It’s the resilient path forward, dodging API whims, ToS traps, and ban waves. Vendors like Anthropic, Google, GitHub—they’re all shipping their own CLIs now: Claude Code, Gemini CLI, Copilot CLI. Why wrap when you can run official, supervised by oly’s daemon for persistence that doesn’t die on terminal close?
Here’s the thing. Wrappers intercept prompts, call APIs, reassemble outputs. Neat, until upstream tweaks auth or declares token-sharing verboten. ToS fragility bites hard—most forbid it outright.
Why Third-Party Wrappers Were Doomed from Day One
Structural rot. API changes break them weekly. Vendors iterate fast; wrappers lag, then shatter.
Replaceability seals the coffin. Claude Code launches—poof, wrapper’s edge evaporates. It’s not engineering slop. It’s dependency hell.
When Anthropic started blocking third-party wrappers like OpenClaw and OpenCode in January 2026, it sent a clear signal: wrapping vendor APIs behind your own CLI is a structurally fragile business model.
Spot on. And it’s accelerating. OpenAI, Google—they’ll follow. Ban risk? Not ‘if.’ When.
Official CLIs sidestep this. No proxying. No token grabs. Just vendor-approved tools in a managed PTY.
But terminals aren’t built for agents. Run a three-hour code gen sesh, step away for coffee—session’s toast. Enter Open Relay (oly), Rust-built daemon owning the lifecycle.
How Open Relay Makes Official CLIs Unkillable
Daemon starts detached. oly start --title my-task claude spins up Claude Code in a persistent PTY. Close laptop. Reconnect later. Logs stream: oly logs --wait-for-prompt. Stuck needing approval? oly send <id> y—inject and resume.
Audit trails to SQLite. Checkpoint recovery replays output. Node federation schedules across machines—no central choke point.
Install’s dead simple: cargo install oly or npm. Works with Qwen Code, Copilot, Gemini—every official CLI.
My unique take? This echoes AWS’s early days. Third-party EC2 wrappers got nuked too, forcing devs to official SDKs + wrappers like Fabric for orchestration. History repeats: official + supervision layers win. Bold prediction—by 2027, 80% of AI agent stacks standardize here, as bans cascade.
Compare the stacks:
| Dimension | Third-party Wrapper | Official CLI Direct | Official CLI + Open Relay |
|---|---|---|---|
| API Dependency | High | Medium | Low |
| ToS Risk | High | Low | Low |
| Session Persistence | Self-implemented | None | Built into oly |
| Async Supervision | Partial | None | Native |
| Cross-machine Scheduling | Limited | None | Node federation |
| Upstream Ban Risk | High | None | None |
| Human Intervention Cost | Low | High | Low |
Data doesn’t lie. Wrappers score worst across the board.
Real-World Proof: Jarvis Built This Way
Jarvis, my AI assistant—no wrapper. Main session orchestrates via oly. Spawns workers: Copilot CLI for code diffs, Qwen for heavy lifts. Supervises logs, injects commands, persists state to SQLite.
Resilience? Ironclad. All official. No bans touch it.
You’ve lived the pain. Agent chugs for hours, terminal crashes on reboot—context lost. Oly fills that void precisely: PTY subprocesses preserve semantics, federation avoids silos.
Critique the hype? Vendors spin CLIs as ‘complete.’ They’re not—interactive only. Oly exposes the gap, turns them agent-ready without ToS roulette.
Migration paths scream urgency. Switch providers? Patches the symptom. Re-arch? Cures the disease.
Will Official CLI + Open Relay Replace Your Workflow?
Short answer: yes, if agents are your jam. Devs wasting hours on fragile wrappers—time to pivot.
Market dynamics shift fast. Anthropic’s move pressures rivals. Official CLIs proliferate; supervision layers like oly commoditize.
But here’s the edge—oly’s open source, Rust-lean, no bloat. Not some VC-fueled proxy farm.
And the numbers? Post-ban, wrapper GitHub stars flatline. Oly’s repo? Climbing. Facts over spin.
Wander a bit: imagine federated nodes for team deploys—one machine for heavy compute, another for light reviews. oly join makes it trivial.
Why Does This Matter for AI Agent Builders?
Bans aren’t isolated. They’re the new normal as vendors protect moats. Wrappers? Extinction event.
Build resilient. Official CLI + Open Relay isn’t a hack—it’s architecture. Low dependency, zero ban risk, full persistence.
One caveat: human loops still needed for approvals. But that’s AI’s limit today, not oly’s.
🧬 Related Insights
- Read more: GravitySched: When Physics Crushes Your Calendar
- Read more: Thursday’s Linux Patch Onslaught: OpenSSL, Kernels, Firefox Under Fire
Frequently Asked Questions
What is Open Relay (oly)? Lightweight Rust CLI for supervising official AI CLIs—persistent sessions, log streaming, key injection, cross-machine federation.
How do I install and use Open Relay with Claude Code?
cargo install oly, then oly daemon start --detach; oly start --title task claude; manage with oly logs and oly send.
Does Official CLI + Open Relay avoid Anthropic bans? Yes—uses vendor-official tools directly, no API wrapping or token sharing. Zero ToS risk.