TL;DR
이번 포스트 묶음에서는 Claude Code 2.1.243의 장시간 세션 관리와 조직용 운영 기능, WAN 3.0의 20개 참조 입력 및 30초 영상 생성, vLLM의 AgentX 기반 에이전트 추론 최적화가 기술적 비중을 차지했습니다. vLLM은 sparse retention, 분산 KV cache, prefill-decode 분리로 1M 문맥에서 95% 초과 캐시 적중률과 DeepSeek V4 Pro의 4.45배 처리량 향상을 기록했습니다. Qwen3.8-27B는 단일 RTX 3090/4090에서 Code Arena WebDev 9위를 기록했다는 평가와 8k reasoning budget으로 중앙값 시간이 190초에서 94.7초로 줄었다는 사례를 낳았습니다. Grok Bot의 일상 업무 처리, Claude의 단백질 binder 설계, diffusion 학습 법칙과 Thomson의 자체 LLM 출시는 모델이 실제 업무와 전문 영역으로 들어가는 경로를 보여줍니다.
𝕏 실시간 트렌드 토픽
📈 Claude Code 2.1.243의 세션 운영과 조직 통제포스트 4
Claude Code 2.1.243이 장시간 세션과 조직 환경을 겨냥한 사용량·모델·비용·인증·복구 기능을 한 번에 확장했습니다.
세부 내용 보기
- 이번 릴리스의 문제는 에이전트 세션이 길어질수록 runaway loop, 비용 추적, 원격 연결 복구, 조직별 모델 선택을 따로 관리해야 했다는 점입니다. Claude Code 2.1.243은 /usage에 loop별 실행 횟수와 토큰 수를 넣고, modelPicker·modelPricing·promptCacheTtl·subagentPromptCacheTtl 설정으로 모델 목록과 계약 단가, 캐시 유지 시간을 통제하며, 원격 MCP 재연결과 Remote Control 복구를 처리합니다. Linux x64 네이티브 설치 파일은 약 340 MB에서 약 75 MB로 줄었고, 세션당 메모리는 대략 40–70 MB 감소했습니다. 개발 조직에서는 에이전트 작업의 비용·권한·실패 상태를 터미널 안에서 추적할 수 있다는 점이 핵심 변화입니다.
원문 트윗 2개 보기
Claude Code Changelog
Claude Code CLI 2.1.243 changelog: New features: • Added a Loops breakdown to /usage: per-loop run count, total tokens, tokens per run, and last run, so runaway or chatty /loop tasks are easy to spot • Added modelPicker setting: curate the /model picker with an ordered, labeled list of models (any id spelling, including Vertex/Bedrock ids), appended to or replacing the built-in lineup • Added promptCacheTtl and subagentPromptCacheTtl settings so API-key and cloud-provider users can keep a 1-hour prompt cache on the main conversation while subagents stay at 5 minutes • Added modelPricing managed setting so an organization's contracted per-model rates and discount multiplier are used for /cost, the status line, and telemetry cost figures instead of list price • Added a keyless sign-in under /login → Anthropic Console: "Sign in with your Console account" (recommended) alongside creating an API key, so organizations that don't allow API keys can sign in • Added a Skipped sources line to /status that lists managed settings sources (for example managed-settings.json) present but not applied because a higher-precedence managed source is active • Added a managed marker in /mcp and /plugins on http:// claude.ai connectors whose authentication is managed by your organization • Added a tip pointing http:// claude.ai users who haven't connected GitHub for Claude Code on the web to /web-setup • Added a /status line showing whether GitHub is connected for Claude Code on the web (Pro/Max), pointing to /web-setup when it isn't • Added the model (and effort level) each subagent ran on to /tasks and the agent detail dialogs Fixes: • Fixed remote MCP servers in non-interactive (-p) and SDK sessions never recovering after a dropped connection; they now reconnect automatically or report as failed • Fixed MCP server sign-in started from the desktop app failing with "Invalid redirect URI" on servers that support client ID metadata documents (for example Linear) • Fixed auto mode staying unavailable at startup when a temporary server-side disable was cached and later flag fetches failed • Fixed auto mode tool calls being denied as "temporarily unavailable" after about a minute of waiting when the API was briefly overloaded and asked the client to retry • Fixed the /model picker silently ignoring an Ultracode selection; picking Ultracode now applies it to the current session • Fixed /resume only listing the 50 most recent sessions; the picker now loads more as you scroll • Fixed cloud sessions resuming after a mid-turn restart with a pending hook or background-task notification re-sent as the prompt instead of the normal continuation message • Fixed cross-session messaging silently turning off inside user namespaces and rootless containers after the 2.1.232 socket-directory hardening • Fixed text that hangs outside its container (for example the sign-in URL in /login) losing its leading columns when another part of the screen repaints • Fixed spellcheck not underlining a misspelled word typed directly after an emoji • Fixed background subagents not waking when their last background Bash task completes • Fixed sessions going silent for 10+ minutes when the Anthropic API never starts a response: the request now times out after ~3 minutes, retries once, then shows API Error: No response from API • Fixed auth, model-availability, and other client-generated error messages rendering like model output instead of as error lines • Fixed workload identity federation in CI: processes in one job share the exchanged token instead of re-exchanging the single-use token; a rejected exchange fails fast with the server's message • Fixed server-managed companyAnnouncements not showing at startup in a session that began with signing in (for example the first launch after /logout) • Fixed hook if conditions like Bash(cat *) firing on unrelated Bash commands when the command contained $() or backtick command substitution followed by more arguments • Fixed plugin dependencies declared with a marketplace field never resolving when both plugins are loaded together via --plugin-dir • Fixed /reload-plugins keeping the LSP tool after the last LSP plugin is disabled; it now also warns before an LSP plugin change that would re-read the conversation • Fixed --agents silently ignoring invalid JSON or invalid agent definitions; it now exits with a clear error, like --mcp-config • Fixed /status showing "Found invalid entries in: ." with no filename when ~/.claude.json has an invalid MCP server entry • Fixed /clear removing the /rename session name from the prompt bar even though the name was kept for the new session • Fixed Ctrl+R history search and up-arrow history breaking when ~/.claude/history.jsonl contains a malformed entry • Fixed Ctrl+[ not leaving vim INSERT mode in terminals that encode modified keys (modifyOtherKeys / kitty protocol) • Fixed the local IDE connection being routed through HTTPS_PROXY (and sometimes failing) when localhost was listed in NO_PROXY but not lowercase no_proxy; both casings are now honored • Fixed sandbox network-violation details being dropped from the Bash tool result when the blocked command still exited 0 (for example curl printing the proxy's 403 page) • Fixed the status line rate_limits fields and /usage still showing a rate-limit window's pre-reset usage percentage after the window reset while the session was idle • Fixed claude --teleport <session> exiting on uncommitted changes instead of offering to stash them and continue, as the session picker already does • Fixed /web-setup repeatedly asking you to log in when an older GitHub CLI (without gh auth token) was already authenticated • Fixed Claude in Chrome losing its connection to Claude Code after an auto-update cleaned up the version it was set up with; the native host now launches via the stable claude launcher • Fixed claude remote-control exiting and stranding attached Remote Control sessions when the server drops its environment mid-session; it now recovers • Fixed Remote Control sessions served by claude remote-control sometimes getting stuck after it was stopped and restarted, for Team and Enterprise members without an admin or owner role Improvements: • Improved startup time: sandbox and MCP bring-up no longer block the first frame, bare launches skip subcommand registration, and workflow discovery, settings, and trust-store work is cheaper • Improved native install and auto-update download size: the binary is now zstd-compressed (about 75 MB instead of 340 MB on Linux x64) • Improved attribution of usage telemetry to your organization for sessions that authenticate with ANTHROPIC_AUTH_TOKEN directly against the Anthropic API, so its data-handling settings apply • Improved native binary size: about 2 MB smaller by storing the bundled skill and prompt text more compactly • Improved memory usage of native builds: code is now loaded on demand instead of keeping the whole bundle resident (roughly 40–70 MB less memory per session) • Improved peak memory usage in long-running sessions (the runtime now garbage-collects sooner as the heap grows) • Improved /login over SSH: the sign-in URL appears immediately, pressing c reports how the URL was copied instead of always claiming success, and a hint explains how to select text in fullscreen • Improved the error when effort xhigh/max is used with thinking turned off: it now names the level, the setting that disabled thinking, and /effort high as the fix • Improved /loop: consecutive wake-ups where Claude has nothing to do now fold into a single line in the terminal instead of printing each one • Improved the notice when resuming a conversation whose Remote Control is held by another terminal: it now says sessions on other machines can't be seen from, or reach, this one Security/safety changes: • [VSCode] Fixed sessions started before feature flags were first fetched (for example right after install) opening in the default permission mode instead of auto mode or your configured default mode • Changed the sandboxed Bash tool prompt to no longer list allowed network hosts, so Claude attempts requests (and you can approve new hosts) instead of assuming unlisted hosts are blocked Other changes: • [VSCode] Fixed Focus view sections you expanded collapsing on their own during subagent tool activity • Updated the /model picker and the bundled claude-api skill to show Sonnet 5's $2/$10 per Mtok pricing as its standard list price rather than a limited-time promo • Changed computer use on macOS so clicking the desktop, Dock, or a Finder window requires granting Finder via the access dialog, like any other app • Changed /model, /fast, and /effort to also run immediately instead of queueing until the turn ends on Bedrock, Vertex, and Foundry and when telemetry is disabled • Changed the cross-session messaging inbox socket to close connections that send no complete line within 30 seconds; scripts posting to it should connect once their data is ready • [VSCode] Improved history trimming in long sessions: older tool-activity rows are dropped first so your messages and Claude's replies stay visible • [VSCode] Improved attribution of the extension's own usage telemetry to your organization when you are signed in with a Claude account, so its data-handling settings apply Source: https:// github.com/anthropics/cla ude-code/blob/main/CHANGELOG.md#21243 …
Claude Code Changelog
Claude Code 2.1.243 has been released. 60 CLI changes Highlights: • Loops breakdown in /usage: per-loop runs, total tokens, tokens/run, last run — reveals chatty or runaway loops • modelPicker curates /model into an ordered, labeled org-approved list, making approved models easiest to pick • Added modelPricing setting so /cost, status, and telemetry use org contracted per-model rates and discounts Full details are in thread ↓
🔥 WAN 3.0의 20개 참조와 30초 영상 생성포스트 5
WAN 3.0이 Pika API Club, Runway, Pixmax 등으로 확산되며 긴 영상 길이와 다중 참조 입력을 제작 워크플로에 결합했습니다.
세부 내용 보기
- 기존 짧은 영상 생성에서 생긴 문제는 장면·인물·스타일의 일관성을 유지하려면 여러 번 재생성해야 했다는 점입니다. WAN 3.0은 텍스트·이미지·Omni Video를 입력으로 받고 문서와 웹페이지를 포함한 최대 20개 참조 자산을 사용해 네이티브 30초 영상을 한 번에 생성하며, 시각·음향 사실성과 정밀 편집을 함께 내세웁니다. Pika는 해당 API Club가 경쟁 서비스보다 최대 35% 저렴하다고 밝혔고, Alibaba Cloud는 Pixmax에서 30% 할인 기간을 알렸습니다. 참조 입력 수와 생성 길이의 확장은 영상 생성 모델을 단일 클립 도구에서 반복 제작 공정으로 옮기는 방식입니다.
원문 트윗 2개 보기
Santiago
WAN 3.0 is really cool! You can now: • Generate native 30-second videos • Use text, images, or Omni Video as input • Give it up to 20 reference assets, including docs and webpages • More consistent outputs across your entire workflow • Make more precise edits (don't need to regenerate as much) I remember when you could only get 5-second videos out of these models. We are now way past that: you can now control a complete production workflow. You can use WAN 3.0 on the Pika API Club. It's one of the least expensive platforms hosting it. https:// dev.pika.art/?utm_source=x& utm_medium=caption&utm_campaign=260823-wan_3_0_launch&utm_content=svpino&utm_term=post&utm_id=7397254a-a663-4c95-bd7e-c7b50a8c39f0 …
The wait is over. WAN 3.0 is here—20 references, enhanced visual and audio realism, and 30-second generations. In fact, this entire video was one generation. Up to 35% less expensive than competitors on the Pika API Club. Always.
Runway
WAN 3.0 is now on Runway. Generate state-of-the-art video and audio with multiple image, video and audio reference inputs. Try it now at the link below.
🔥 AgentX에서 드러난 에이전트 추론 인프라의 병목포스트 1
vLLM이 약 300만 달러 규모의 실제 trace로 구성된 AgentX에서 prefix 재사용, 긴 문맥 병렬화, prefill-decode 분리를 함께 최적화했습니다.
세부 내용 보기
- 다중 턴 에이전트는 같은 prefix와 긴 KV cache를 반복 사용하므로 캐시가 가득 차면 세션 간 thrashing과 부하 불균형이 발생합니다. vLLM은 구간별 상태 하나와 최신 replay 경계만 보존하는 sparse retention, worker 간 공유 KV pool, Mooncake Store 기반 분산 오프로딩, session-aware routing을 결합해 14개 동시 요청과 최대 1M 문맥에서 95% 초과 hit rate를 얻었습니다. DeepSeek V4 Pro의 ROCm 구현은 prefix 재계산 대비 출력 처리량이 81.7% 증가하고 평균 종단 간 지연이 46.6% 낮아졌으며, GB300 Dynamo에서는 DeepSeek V4 Pro 처리량이 B300 대비 4.45배 높아졌습니다. 실제 에이전트 trace를 기준으로 캐시·라우팅·하드웨어 구성을 함께 조정해야 오픈소스 추론 엔진의 성능을 평가할 수 있다는 흐름입니다.
📈 Grok Bot의 일상 업무 자동 처리포스트 2
Grok Bot이 영상 자료 탐색과 고장 수리 예약처럼 여러 단계가 이어지는 개인 업무를 직접 연결하는 사례가 등장했습니다.
세부 내용 보기
- 일상 업무 자동화의 병목은 정보를 찾는 단계와 실제 예약·일정 확인 단계가 서로 분리되어 사용자가 중간 결과를 옮겨야 한다는 점입니다. Grok Bot은 요청된 주제의 영상을 여러 출처에서 찾고, 사진에서 vendor와 warranty를 판독한 뒤, 서비스 일정을 잡고 캘린더를 확인하는 흐름으로 언급됐습니다. 구체적인 성능 수치는 없지만 한 요청 안에서 시각 입력, 검색, 외부 서비스 처리, 일정 확인이 이어졌다는 사례가 담겼습니다. 에이전트 제품의 평가 기준이 답변 품질뿐 아니라 사용자의 심부름을 끝까지 마치는 실행 연결성으로 이동하는 장면입니다.
원문 트윗 2개 보기
Grok @bot is likely the second (first would be FSD) AI product that is solving daily errands. Something is broken? I took a picture and it found the vendor and warranty, scheduled the service, and checked my calendar. Neat.

Elon Musk
Grok @Bot can do a lot!
Grok Bot is insane. I asked it to find every video where Dr. Roger Seheult discusses sunlight, red light, infrared light, and mitochondria, including MedCram videos and interviews with Andrew Huberman, Eric Berg, Steven Bartlett, and others. A few minutes later it had: •
📈 Qwen3.8-27B의 로컬 실행과 추론 예산 조절포스트 3
Qwen3.8-27B가 단일 소비자 GPU 실행과 Code Arena 성적, reasoning budget 조절 사례를 통해 성능과 지연의 균형을 겨뤘습니다.
세부 내용 보기
- 큰 모델을 호출할 때 단순한 tool call에도 내부 추론이 길어지는 문제가 제기됐습니다. 한 사례에서는 reasoning budget을 8k tokens로 설정해 실제 코딩 작업의 중앙값 시간이 190초에서 94.7초로 줄었고, 다른 평가에서는 Qwen3.8-27B가 Code Arena WebDev 1595점으로 전체 9위에 올랐으며 단일 RTX 3090/4090에서 실행됐습니다. Qwen3.8-27B는 Q2_K 양자화에서 10.9 GB로 구동되고 Q4_K_M은 16.8 GB가 sweet spot으로 언급됐으며 200k context와 Vision projector도 포함됐습니다. 로컬 모델 선택에서는 절대 성능뿐 아니라 양자화 형태, GPU 메모리, 작업별 추론 상한을 함께 맞춰야 한다는 점이 드러났습니다.
원문 트윗 2개 보기
Md Ismail Šojal
Qwen3.8-27B (dense) ranks #9 on Code Arena WebDev only 4 points behind GLM 5.3 Max. - Beats Claude Opus 4.8, DeepSeek V4 Pro, Gemini 3.7 Flash And it runs on a single RTX 3090/4090.
Exciting news: Qwen3.8-27B by @Alibaba_Qwen just landed in Code Arena: WebDev at #9 overall with 1595 pts. It is the only model in its size class in the top 10, and also reshapes the Pareto Frontier! It is only 6 ranks behind the much larger Qwen3.8-Max. For scale: Gemma 4-31B x.com/Alibaba_Qwen/s…
Md Ismail Šojal
Stop wasting GPU cycles on overthinking. Qwen 3.8 27B was burning 3 minutes deciding a simple tool call. One setting change (reasoning budget = 8k) cut median time in half on real coding tasks. Set reasoning budget to 8k tokens to median time cut in half (190s to 94.7s) on coding tasks.
📈 Claude 기반 단백질 binder 설계 자동화포스트 1
Claude가 단백질 표적 연구부터 후보 설계·최적화·합성 우선순위 선정까지 하나의 일반 프로토콜로 연결한 연구가 공유됐습니다.
세부 내용 보기
- 단백질 binder 설계 캠페인은 표적별 휴리스틱을 여러 단계에 적용해야 해 연구 과정이 길고 복잡했습니다. 해당 연구의 프로토콜은 Claude가 표적을 조사하고 epitope를 고른 뒤 오픈소스 설계 모델을 실행하며 후보를 최적화하고 합성할 단백질의 순위를 정하도록 구성됐습니다. 15개 표적에서 설계안 약 4개 중 1개가 실제 결합했고 1순위 후보는 거의 절반의 확률로 결합했으며, RBX1에서는 공개 단백질 설계 대회 우승안보다 약 10배 강한 결합이 보고됐습니다. 모델이 단순 예측기를 넘어 실험 후보를 좁히는 반복 연구 절차에 들어가는 방식입니다.
➖ Diffusion 이미지 모델의 데이터·연산 배분 법칙포스트 1
ABRA 연구가 Diffusion 이미지 모델의 학습 규모 법칙이 LLM과 다르며 더 작은 모델에 더 많은 데이터를 넣는 편이 안전하다고 제시한 결과를 공유했습니다.
세부 내용 보기
- 고정된 연산량에서 모델 크기와 학습 데이터의 비율을 어떻게 잡을지가 Diffusion 이미지 모델 학습의 핵심 문제입니다. ABRA 연구는 이미지 모델이 파라미터당 대략 200 image tokens를 필요로 하며 이는 Chinchilla 기준보다 약 10배 많고, undertraining보다 overtraining에 훨씬 관대하다고 산출했습니다. 따라서 같은 compute라면 더 작은 Diffusion 모델을 더 많은 데이터로 학습하는 조합이 상대적으로 안전한 선택으로 언급됐습니다. LLM의 학습 경험칙을 이미지 생성 모델에 그대로 옮기기보다 모델별 토큰·데이터·연산 관계를 따로 맞춰야 한다는 결론입니다.
➖ Thomson의 자체 LLM과 법률 문서 처리포스트 1
Thomson Reuters가 Alibaba의 오픈소스 Qwen을 개조하고 법률·세무·뉴스 데이터로 학습한 Thomson을 CoCounsel Legal에 투입했습니다.
세부 내용 보기
- 법률 서비스 기업이 외부 AI 공급자 의존도를 낮추려면 자사 문서와 업무 기능에 맞춘 모델이 필요합니다. Thomson Reuters는 약 4,000만 달러를 들여 Alibaba의 오픈소스 Qwen을 개조하고 Westlaw, Practical Law, 세무, 뉴스 콘텐츠로 학습한 Thomson을 구축했으며, 첫 적용처는 CoCounsel Legal의 Tabular Analysis 기능입니다. 구체적인 벤치마크는 공개되지 않았지만 자체 데이터와 법률 제품 기능을 하나의 모델에 연결한 배치 경로가 제시됐습니다. 범용 모델 호출에서 전문 데이터와 제품 기능을 함께 관리하는 도메인 모델 운영으로 무게중심이 옮겨가는 사례입니다.
용어 해설
- 프리픽스 캐싱(Prefix Caching)
- — 긴 대화형 에이전트 세션에서 이미 처리한 입력 앞부분의 KV cache를 재사용하는 방식입니다. 같은 문맥을 다시 계산하지 않아 추론 지연과 연산량을 줄이는 핵심 최적화입니다.
- KV 캐시 오프로딩(KV Cache Offloading)
- — 모델 추론에 필요한 KV cache를 GPU 메모리에만 두지 않고 CPU나 분산 저장소로 옮기는 방식입니다. 긴 문맥과 다중 세션을 수용하면서 GPU 메모리 압박을 낮춥니다.
- 프리필-디코드 분리(Prefill-Decode Disaggregation)
- — 입력 문맥을 처리하는 prefill 단계와 출력 토큰을 생성하는 decode 단계를 서로 다른 자원으로 분리하는 구조입니다. 두 단계의 부하를 따로 조절해 처리량과 사용자별 응답성을 맞춥니다.
- 추론 예산(Reasoning Budget)
- — 모델이 답을 내기 전에 사용할 수 있는 reasoning 토큰 상한입니다. 상한을 낮추면 단순한 도구 호출이나 코딩 작업에서 과도한 내부 추론을 줄여 응답 시간을 단축할 수 있습니다.
- 오픈 웨이트 모델(Open-Weight Model)
- — 학습된 모델 가중치를 외부에 공개해 사용자가 직접 실행하거나 연구할 수 있는 모델입니다. 이 글에서는 안전성 연구 지원과 로컬 실행 성능의 기반으로 등장합니다.
- 휴먼 인 더 루프(Human-in-the-Loop)
- — 모델의 판단을 자동으로 확정하지 않고 사람이 특정 단계에서 승인하거나 개입하는 운영 방식입니다. 문서 추출에서는 confidence score가 낮은 항목만 사람에게 넘기는 흐름으로 쓰입니다.
AI 요약 · 북마크 · 개인 피드 설정 — 무료
출처 · 인용 안내
인용 시 "요약 출처: AI Trends (aitrends.kr)"를 표기하고, 사실 확인은 원문 보기 기준으로 진행해 주세요. 자세한 기준은 운영 정책을 참고해 주세요.