OpenClaw v2026.2.17: Claude Sonnet 4.6 Support, 1M Context, Slack/Telegram Enhancements
OpenClaw releases major update with Claude Sonnet 4.6 and 1M context window support, Slack native streaming, Telegram inline button styles, iOS Share Extension, and critical security fixes (OC-09) among 100+ changes.
OpenClaw released version 2026.2.17 on February 17, implementing over 100 changes including Claude Sonnet 4.6 support, 1M token context window beta, major Slack/Telegram improvements, iOS feature enhancements, and critical security fixes.
Claude Sonnet 4.6 and 1M Context Support
Sonnet 4.6 Integration
The release adds support for Claude Sonnet 4.6 via the anthropic/claude-sonnet-4-6 alias, with forward-compatible fallback when upstream catalogs still only expose Sonnet 4.5.
1M Token Context Window (Beta)
Opus/Sonnet models now support opt-in 1M token context window. Setting params.context1m: true in model parameters maps to the anthropic-beta: context-1m-2025-08-07 header.
This enables processing entire codebases, lengthy contracts, and dozens of research papers in a single request, significantly improving long-context reasoning performance.
Messaging Platform Enhancements
Slack Native Streaming
Implemented native single-message text streaming for Slack using chat.startStream/appendStream/stopStream. Reply threading aligns with replyToMode configuration, streaming is enabled by default, and falls back to normal delivery on failure.
Telegram Inline Button Styles
Added inline button style support (primary/success/danger) across message tool schema, Telegram action parsing, send pipeline, and runtime prompt guidance.
User message reactions are now surfaced as system events, with notification scope configurable via channels.telegram.reactionNotifications.
Subagent Functionality Expansion
/subagents spawn Command
Added /subagents spawn for deterministic subagent activation from chat commands, improving control over subagent initialization.
Enhanced Context Management
Subagents now preemptively guard accumulated tool-result context before model calls by truncating oversized outputs and compacting oldest tool-result messages to prevent context-window overflow crashes.
Explicit recovery guidance was added for [compacted: tool output removed to free context] and [truncated: output exceeded context limit] markers, instructing re-reading with smaller chunks instead of full-file cat.
Comprehensive iOS Improvements
Share Extension
Added iOS share extension that forwards shared URL/text/image content directly to gateway agent.request, with delivery-route fallback and optional receipt acknowledgements.
Talk Mode Enhancements
- Background Listening: Toggle keeps Talk Mode active while backgrounded (off by default for battery safety)
- Voice Directive Hint: Toggle for Talk Mode prompts to disable ElevenLabs voice-switching instructions, saving tokens when not needed
- Hardened Barge-in: Disables interrupt-on-speech when output route is built-in speaker/receiver, reducing false interruptions from local TTS bleed-through
Onboarding Improvements
Added QR-first onboarding wizard with setup-code deep link support, pairing/auth issue guidance, and device-pair QR generation improvements for Telegram/Web/TUI fallback flows.
Cron/Automation Feature Expansion
Webhook-Based Delivery
Separated per-job webhook delivery (delivery.mode = "webhook") from announce delivery. Enforces valid HTTP(S) webhook URLs with temporary legacy notify + cron.webhook fallback for stored jobs.
Schedule Stagger Control
Added deterministic default stagger for recurring top-of-hour cron schedules (including 6-field seconds cron). Auto-migrates existing jobs to persisted schedule.staggerMs and adds openclaw cron add/edit --stagger plus --exact overrides for per-job timing control.
Usage Telemetry
Logs per-run model/provider usage telemetry in cron run logs/webhooks, with a local usage report script for aggregating token usage by job.
Security Fixes
OC-09 Credential Theft Path
Fixed OC-09 credential-theft path via environment-variable injection.
Config $include Confinement
Confined $include resolution to the top-level config directory, hardened traversal/symlink checks with cross-platform-safe path containment, and added doctor hints for invalid escaped include paths.
Session Transcript File Permissions
New session transcript JSONL files are created with user-only (0o600) permissions. Extended openclaw security audit --fix to remediate existing transcript file permissions.
Tool Functionality Improvements
read Tool Auto-Paging
The read tool now auto-pages across chunks when no explicit limit is provided, scaling per-call output budget from model contextWindow so larger contexts can read more before context guards activate.
Web Search/Fetch URL Allowlists
Added URL allowlists for web_search and web_fetch to address security and compliance requirements.
Browser Launch Customization
Added extraArgs config for custom Chrome launch arguments, enabling advanced browser control including headless mode and sandbox disabling.
Discord/Mattermost/Feishu Improvements
Discord
- Exposed native
/execcommand options (host/security/ask/node) for autocomplete and structured inputs - Added support for reusable interactive components with
components.reusable=true - Implemented per-button
allowedUsersallowlist to restrict button clicks
Mattermost
Added emoji reaction actions plus reaction event notifications, including explicit boolean remove flag to avoid accidental removals.
Feishu
Added Bitable create-app/create-field tools for automation workflows.
Memory Search Enhancement
Added FTS (full-text search) fallback plus query expansion for memory search, improving semantic search accuracy and providing alternative search paths for low-relevance hits.
Provider Support Expansion
Z.AI
Enabled tool_stream by default for real-time tool call streaming, with opt-out via params.tool_stream: false.
OpenAI Codex CLI
Added OpenAI Codex CLI auth provider integration.
Ollama/Qwen
Handles Qwen 3 reasoning field format in Ollama responses.
Docker/Infrastructure Improvements
Added optional OPENCLAW_INSTALL_BROWSER build arg to preinstall Chromium + Xvfb in the Docker image, avoiding runtime Playwright installs.
Key Bug Fixes (Selected)
Reply Threading Consistency
Maintains reply context sticky across streamed/split chunks and preserves replyToId on all chunk sends across shared and channel-specific delivery paths (including iMessage, BlueBubbles, Telegram, Discord, and Matrix), ensuring follow-up bubbles stay attached to the same referenced message.
Telegram Streaming Stability
- Keeps draft-stream preview replies attached to the user message for
replyToMode: "all"in groups and DMs - Prevents streaming final replies from being overwritten by later final/error payloads
- Debounces first draft-stream preview update with 30-char threshold
Cron Job Loop Fix
Prevents spin loops when cron jobs complete within the scheduled second by advancing the next run and enforcing a minimum refire gap.
Gateway Auto-Update Improvements
Prevents restart crash loops after failed self-updates by restarting only on successful updates, stopping early on failed install/build steps, and running openclaw doctor --fix during updates to sanitize config.
Migration and Compatibility
This release contains no breaking changes, but note the following:
- Session Transcript Files: New files are created with
0o600permissions - Cron Schedules: Existing jobs are automatically migrated to stagger settings
- Discord Commands: Numeric IDs are converted to string IDs (doctor auto-repairs)
Contributors
This release includes 100+ PRs from 60+ contributors. Key contributors:
- @tyler6204 - Subagent, BlueBubbles, Reply Threading improvements
- @mbelinky - iOS (Share Extension, Talk Mode, Onboarding)
- @obviyus - Telegram (streaming, button styles, threading)
- @thewilloftheshadow - Discord improvements
- @natedenh - Slack streaming
- @aether-ai-agent - Security fixes (OC-09, Config $include)
Availability
OpenClaw v2026.2.17 is available from the official GitHub releases page:
- GitHub: https://github.com/openclaw/openclaw/releases/tag/v2026.2.17
- Update Command:
openclaw update
Recommendations for Existing Users:
- Back up configuration before updating
- Run
openclaw doctor --fixto validate configuration - Update promptly due to included security fixes (OC-09)
Assessment
This release demonstrates OpenClaw’s maturity with a comprehensive update. Claude Sonnet 4.6 support and 1M context window directly improve long-context reasoning performance. Slack/Telegram enhancements facilitate enterprise adoption, while iOS improvements significantly enhance mobile user experience.
The inclusion of security fixes (OC-09) is particularly important, warranting prompt updates for existing users. Despite containing 100+ changes, the release avoids breaking changes, demonstrating careful attention to backward compatibility.
Source: OpenClaw GitHub Releases
Related Articles
OpenClaw v2026.2.15 Released - Discord Components v2, Nested Subagents, and Major Security Overhaul
OpenClaw v2026.2.15 introduces Discord Components v2 interactive UI, nested sub-agent capabilities, SHA-256 migration, and over 30 security fixes addressing injection attacks, secret leakage, and sandbox hardening.
Claude Sonnet 4.6 Released with Opus-Level Performance at Sonnet Pricing
Anthropic launches Claude Sonnet 4.6, delivering human-level computer use capabilities and 1M token context window in beta. 70% of users prefer it over the previous version, and 59% rate it higher than Opus 4.5.
OpenClaw v2026.2.14 Released: Major Security Hardening and 100+ Bug Fixes
OpenClaw releases v2026.2.14 with extensive security improvements, TUI stability enhancements, memory system optimizations, and 100+ bug fixes across channels, agents, and tools.
Popular Articles
868 Agentic Skills, One Command: Antigravity Awesome Skills Becomes the Cross-Tool Skill Standard
Antigravity Awesome Skills (v5.4.0) delivers 868+ battle-tested skills for Claude Code, Gemini CLI, Codex CLI, Cursor, GitHub Copilot, and five other AI coding assistants via a single npx command. With official skills from Anthropic, Vercel, OpenAI, Supabase, and Microsoft consolidated under one MIT-licensed repository, it's emerging as the portable skill layer for the fragmented AI coding agent landscape.
How Claude Sonnet 4.6 Agent Teams Achieve 4x Productivity: Practical Insights from Anthropic's Own Research
Two Anthropic studies—a survey of 132 internal engineers and an analysis of 1M+ real-world agent interactions—reveal the precise delegation strategies and autonomy patterns that enable high-performing teams to multiply output with Claude Sonnet 4.6 agent teams.
What Actually Makes OpenClaw Special: The Full Story from VibeTunnel to 200k+ GitHub Stars
The three-stage VibeTunnel→Clawdbot→OpenClaw evolution, Pi runtime philosophy, why HEARTBEAT is the real differentiator from Claude Code, and the ClawHub supply chain attack (12% of skills were malicious). An unvarnished look at the most used and most misunderstood OSS agent.
Latest Articles
Two AI Agent Communication Projects Hit Hacker News Simultaneously, Targeting MCP's Blind Spots
Aqua and Agent Semantic Protocol appeared on Hacker News on the same day, both tackling the same unsolved problem: how AI agents communicate directly without a central broker, across network boundaries, and asynchronously.
Claude Sonnet 4.6 Becomes the Default for Free and Pro Users — Outperforms Opus 4.5 on Coding Agent Benchmarks
Anthropic has made Claude Sonnet 4.6 the default model for claude.ai's Free and Pro plans. Released February 17, 2026, it matches Sonnet 4.5 pricing at $3/$15 per million tokens while internal Claude Code evaluations show it beating the previous frontier model, Opus 4.5, 59% of the time on agentic coding tasks.
Google Permanently Bans AI Pro Users for Accessing Gemini via OpenClaw, Continues Charging $250/Month
A Hacker News post garnering 140 points and 107 comments details how Google terminated Google AI Pro and Ultra accounts without warning after users accessed Gemini through OpenClaw, a third-party client. The incident surfaces deeper issues around prompt caching, subscription economics, and how AI providers enforce terms of service.