Tenkai Daily — June 26, 2026
Model Releases
- krea/Krea-2-Raw — Base text‑to‑image diffusion model built on the custom Krea2Pipeline in Diffusers; it’s the backbone for Krea‑2‑Turbo and ComfyUI integration. 🤖
Open Source Releases
- Claude Code v2.1.193: Auto-mode classifier for all shell commands and OpenTelemetry events
— Adds
autoMode.classifyAllShellto route every Bash/PowerShell command through the classifier, surfaces denial reasons in transcripts and UI, plus new telemetry hooks. 🛠️ - OpenCode v1.17.11: Session snapshots and revert controls — Lets you roll a session back to an earlier message with full file‑change restoration, adds Chrome‑style tab cycling, and fixes MCP OAuth URL printing. 🛠️
- openagentd 1.72.0 — Self-hosted multi-agent AI runtime — Self‑hosted framework supporting streaming chat, tool use, persistent memory, and multi‑agent teams for private deployments. 🤖
- MinerU: Document-to-LLM pipeline for PDFs and Office docs — Converts PDFs and Office docs into markdown/JSON ready for RAG pipelines and agent ingestion. 📄
- Goose v1.39.0: ACP method for managing recipes and global config
— Introduces ACP methods for recipes, UI tweaks, and global config management, plus session‑extension handling in
new_session. 🛠️ - AIChat v0.29.0: Claude 3.7 Sonnet support and Azure API update
— Adds Claude 3.7 Sonnet, updates Azure OpenAI API to 2024‑12‑01‑preview, and swaps
preludeforcmd_prelude. 🤖
Research Worth Reading
- Refusal Lives Downstream of Persona in Chat Models — Shows refusal and persona traits share linear directions in activation space; a compliant persona can gate refusals. Experiments on Qwen2.5‑7B and Llama‑3.1‑8B. 📄
- Instruction Bleed: Cross-Module Interference in Prompt-Composed Agentic Systems — Formalizes “compositional behavioral leakage” where editing one prompt module silently alters others, despite no shared state. 📄
- Detecting and Controlling Sycophancy with Cascading Linear Features — Uses cascading linear probes to spot and steer sycophantic behavior, cutting down on the need for massive contrastive datasets. 📄
- The Verification Horizon: No Silver Bullet for Coding Agent Rewards — Argues that reliable verification has become the bottleneck for coding agents as generation outpaces it. 📄
- SSM Adapters via Hankel Reduced-order Modeling: Injection Site Determines Task Suitability in Long-Context Fine-Tuning — Introduces HRM adapters for SSMs as a PEFT method; compares to MLP adapters and studies injection‑site effects. 📄
- AlgoEvolve: LLM-driven Meta-evolution of Algorithmic Trading Programs — Applies LLM‑based semantic mutation to evolve trading programs in noisy, non‑stationary markets. 📄
AI Dev Tools
- AWS Agent Toolkit: Official MCP servers and plugins for AI agents on AWS — Provides MCP servers, skills, and plugins that let agents build and interact with AWS services; handy for cloud‑native agent workflows. 🤖
Today’s Synthesis
Imagine building a self‑hosted agent pipeline that turns PDFs into searchable knowledge bases. Start with MinerU to strip PDFs and Office docs into markdown/JSON, feed the output into openagentd 1.72.0 where a team of agents can chunk, index, and cross‑reference the content. To keep experiments reproducible, spin up OpenCode v1.17.11 as the interactive IDE; its session‑snapshot feature lets you revert any formatting or indexing mistake without losing the underlying files. When the agents need to act on AWS resources—like writing logs to S3 or spawning EC2 instances—plug in the AWS Agent Toolkit MCP servers, giving the agents native cloud capabilities. You can also gate every shell command with the Claude Code v2.1.193 auto‑mode classifier, ensuring that only vetted scripts run inside the agent workflow. The classifier surfaces denial reasons in transcripts, so you get audit trails for any blocked operation. Combine this with the AWS Agent Toolkit’s pre‑built MCP servers for S3, Lambda, and RDS, and you have a fully managed, auditable pipeline that turns raw documents into actionable cloud assets while keeping a revertable history of every change.