{"id":54259,"date":"2025-11-29T08:19:51","date_gmt":"2025-11-29T08:19:51","guid":{"rendered":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/"},"modified":"2025-11-29T08:19:51","modified_gmt":"2025-11-29T08:19:51","slug":"anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk","status":"publish","type":"post","link":"https:\/\/youzum.net\/th\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/","title":{"rendered":"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK"},"content":{"rendered":"<p>Agent memory remains a problem that enterprises want to fix, as agents forget some instructions or conversations the longer they run.\u00a0<\/p>\n<p><a href=\"https:\/\/www.anthropic.com\/\"><u>Anthropic<\/u><\/a> believes it has solved this issue for its <a href=\"https:\/\/venturebeat.com\/ai\/anthropics-new-claude-can-code-for-30-hours-think-of-it-as-your-ai-coworker\"><u>Claude Agent SDK<\/u><\/a>, developing a two-fold solution that allows an agent to work across different context windows.<\/p>\n<p>\u201cThe core challenge of long-running agents is that they must work in discrete sessions, and each new session begins with no memory of what came before,\u201d Anthropic wrote in <a href=\"https:\/\/www.anthropic.com\/engineering\/effective-harnesses-for-long-running-agents\"><u>a blog post<\/u><\/a>. \u201cBecause context windows are limited, and because most complex projects cannot be completed within a single window, agents need a way to bridge the gap between coding sessions.\u201d<\/p>\n<p>Anthropic engineers proposed a two-fold approach for its Agent SDK: An initializer agent to set up the environment, and a coding agent to make incremental progress in each session and leave artifacts for the next.\u00a0\u00a0<\/p>\n<h2>The agent memory problem<\/h2>\n<p>Since agents are built on foundation models, they remain constrained by the limited, although continually growing, context windows. For long-running agents, this could create a larger problem, leading the agent to forget instructions and behave abnormally while performing a task. <a href=\"https:\/\/venturebeat.com\/ai\/enhancing-ai-agents-with-long-term-memory-insights-into-langmem-sdk-memobase-and-the-a-mem-framework\"><u>Enhancing agent memory<\/u><\/a> becomes essential for consistent, business-safe performance.\u00a0<\/p>\n<p>Several methods emerged over the past year, all attempting to bridge the gap between context windows and agent memory. <a href=\"https:\/\/www.langchain.com\/\"><u>LangChain<\/u><\/a>\u2019s LangMem SDK, <a href=\"https:\/\/www.memobase.io\/\"><u>Memobase<\/u><\/a> and <a href=\"https:\/\/openai.com\/\"><u>OpenAI<\/u><\/a>\u2019s Swarm are examples of companies offering memory solutions. Research on agentic memory has also exploded recently, with proposed <a href=\"https:\/\/venturebeat.com\/ai\/how-procedural-memory-can-cut-the-cost-and-complexity-of-ai-agents\"><u>frameworks like Memp<\/u><\/a> and the <a href=\"https:\/\/venturebeat.com\/ai\/googles-nested-learning-paradigm-could-solve-ais-memory-and-continual\"><u>Nested Learning Paradigm<\/u><\/a> from <a href=\"https:\/\/www.google.com\/\"><u>Google<\/u><\/a> offering new alternatives to enhance memory.\u00a0<\/p>\n<p>Many of the current memory frameworks are open source and can ideally adapt to different large language models (LLMs) powering agents. Anthropic\u2019s approach improves its Claude Agent SDK.\u00a0<\/p>\n<h2>How it works<\/h2>\n<p>Anthropic identified that even though the Claude Agent SDK had context management capabilities and \u201cshould be possible for an agent to continue to do useful work for an arbitrarily long time,\u201d it was not sufficient. The company said in its blog post that a model <a href=\"https:\/\/venturebeat.com\/ai\/anthropics-claude-opus-4-5-is-here-cheaper-ai-infinite-chats-and-coding\"><u>like Opus 4.5<\/u><\/a> running the Claude Agent SDK can \u201cfall short of building a production-quality web app if it\u2019s only given a high-level prompt, such as &#8216;build a clone of claude.ai.&#8217;\u201d\u00a0<\/p>\n<p>The failures manifested in two patterns, Anthropic said. First, the agent tried to do too much, causing the model to run out of context in the middle. The agent then has to guess what happened and cannot pass clear instructions to the next agent. The second failure occurs later on, after some features have already been built. The agent sees progress has been made and just declares the job done.\u00a0<\/p>\n<p>Anthropic researchers broke down the solution: Setting up an initial environment to lay the foundation for features and prompting each agent to make incremental progress towards a goal, while still leaving a clean slate at the end.\u00a0<\/p>\n<p>This is where the two-part solution of Anthropic&#8217;s agent comes in. The initializer agent sets up the environment, logging what agents have done and which files have been added. The coding agent will then ask models to make incremental progress and leave structured updates.\u00a0<\/p>\n<p>\u201cInspiration for these practices came from knowing what effective software engineers do every day,\u201d Anthropic said.\u00a0<\/p>\n<p>The researchers said they added testing tools to the coding agent, improving its ability to identify and fix bugs that weren\u2019t obvious from the code alone.\u00a0<\/p>\n<h2>Future research<\/h2>\n<p>Anthropic noted that its approach is \u201cone possible set of solutions in a long-running agent harness.\u201d However, this is just the beginning stage of what could become a wider research area for many in the AI space.\u00a0<\/p>\n<p>The company said its experiments to boost long-term memory for agents haven\u2019t shown whether a single general-purpose coding agent works best across contexts or a multi-agent structure.\u00a0<\/p>\n<p>Its demo also focused on full-stack web app development, so other experiments should focus on generalizing the results across different tasks.<\/p>\n<p>\u201cIt\u2019s likely that some or all of these lessons can be applied to the types of long-running agentic tasks required in, for example, scientific research or financial modeling,\u201d Anthropic said.\u00a0<\/p>","protected":false},"excerpt":{"rendered":"<p>Agent memory remains a problem that enterprises want to fix, as agents forget some instructions or conversations the longer they run.\u00a0 Anthropic believes it has solved this issue for its Claude Agent SDK, developing a two-fold solution that allows an agent to work across different context windows. \u201cThe core challenge of long-running agents is that they must work in discrete sessions, and each new session begins with no memory of what came before,\u201d Anthropic wrote in a blog post. \u201cBecause context windows are limited, and because most complex projects cannot be completed within a single window, agents need a way to bridge the gap between coding sessions.\u201d Anthropic engineers proposed a two-fold approach for its Agent SDK: An initializer agent to set up the environment, and a coding agent to make incremental progress in each session and leave artifacts for the next.\u00a0\u00a0 The agent memory problem Since agents are built on foundation models, they remain constrained by the limited, although continually growing, context windows. For long-running agents, this could create a larger problem, leading the agent to forget instructions and behave abnormally while performing a task. Enhancing agent memory becomes essential for consistent, business-safe performance.\u00a0 Several methods emerged over the past year, all attempting to bridge the gap between context windows and agent memory. LangChain\u2019s LangMem SDK, Memobase and OpenAI\u2019s Swarm are examples of companies offering memory solutions. Research on agentic memory has also exploded recently, with proposed frameworks like Memp and the Nested Learning Paradigm from Google offering new alternatives to enhance memory.\u00a0 Many of the current memory frameworks are open source and can ideally adapt to different large language models (LLMs) powering agents. Anthropic\u2019s approach improves its Claude Agent SDK.\u00a0 How it works Anthropic identified that even though the Claude Agent SDK had context management capabilities and \u201cshould be possible for an agent to continue to do useful work for an arbitrarily long time,\u201d it was not sufficient. The company said in its blog post that a model like Opus 4.5 running the Claude Agent SDK can \u201cfall short of building a production-quality web app if it\u2019s only given a high-level prompt, such as &#8216;build a clone of claude.ai.&#8217;\u201d\u00a0 The failures manifested in two patterns, Anthropic said. First, the agent tried to do too much, causing the model to run out of context in the middle. The agent then has to guess what happened and cannot pass clear instructions to the next agent. The second failure occurs later on, after some features have already been built. The agent sees progress has been made and just declares the job done.\u00a0 Anthropic researchers broke down the solution: Setting up an initial environment to lay the foundation for features and prompting each agent to make incremental progress towards a goal, while still leaving a clean slate at the end.\u00a0 This is where the two-part solution of Anthropic&#8217;s agent comes in. The initializer agent sets up the environment, logging what agents have done and which files have been added. The coding agent will then ask models to make incremental progress and leave structured updates.\u00a0 \u201cInspiration for these practices came from knowing what effective software engineers do every day,\u201d Anthropic said.\u00a0 The researchers said they added testing tools to the coding agent, improving its ability to identify and fix bugs that weren\u2019t obvious from the code alone.\u00a0 Future research Anthropic noted that its approach is \u201cone possible set of solutions in a long-running agent harness.\u201d However, this is just the beginning stage of what could become a wider research area for many in the AI space.\u00a0 The company said its experiments to boost long-term memory for agents haven\u2019t shown whether a single general-purpose coding agent works best across contexts or a multi-agent structure.\u00a0 Its demo also focused on full-stack web app development, so other experiments should focus on generalizing the results across different tasks. \u201cIt\u2019s likely that some or all of these lessons can be applied to the types of long-running agentic tasks required in, for example, scientific research or financial modeling,\u201d Anthropic said.\u00a0<\/p>","protected":false},"author":2,"featured_media":54260,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"pmpro_default_level":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_pvb_checkbox_block_on_post":false,"footnotes":""},"categories":[52,5,7,1],"tags":[],"class_list":["post-54259","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-club","category-committee","category-news","category-uncategorized","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK - YouZum<\/title>\n<meta name=\"description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youzum.net\/th\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\" \/>\n<meta property=\"og:locale\" content=\"th_TH\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK - YouZum\" \/>\n<meta property=\"og:description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youzum.net\/th\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\" \/>\n<meta property=\"og:site_name\" content=\"YouZum\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DroneAssociationTH\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-29T08:19:51+00:00\" \/>\n<meta name=\"author\" content=\"admin NU\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin NU\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 \u0e19\u0e32\u0e17\u0e35\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\"},\"author\":{\"name\":\"admin NU\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\"},\"headline\":\"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK\",\"datePublished\":\"2025-11-29T08:19:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\"},\"wordCount\":694,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"image\":{\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png\",\"articleSection\":[\"AI\",\"Committee\",\"News\",\"Uncategorized\"],\"inLanguage\":\"th\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\",\"url\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\",\"name\":\"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK - YouZum\",\"isPartOf\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png\",\"datePublished\":\"2025-11-29T08:19:51+00:00\",\"description\":\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\",\"breadcrumb\":{\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#breadcrumb\"},\"inLanguage\":\"th\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"th\",\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png\",\"width\":300,\"height\":168},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youzum.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yousum.gpucore.co\/#website\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"name\":\"YouSum\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yousum.gpucore.co\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"th\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\",\"name\":\"Drone Association Thailand\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"th\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"width\":300,\"height\":300,\"caption\":\"Drone Association Thailand\"},\"image\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/DroneAssociationTH\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\",\"name\":\"admin NU\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"th\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"caption\":\"admin NU\"},\"url\":\"https:\/\/youzum.net\/th\/members\/adminnu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK - YouZum","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youzum.net\/th\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/","og_locale":"th_TH","og_type":"article","og_title":"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK - YouZum","og_description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","og_url":"https:\/\/youzum.net\/th\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/","og_site_name":"YouZum","article_publisher":"https:\/\/www.facebook.com\/DroneAssociationTH\/","article_published_time":"2025-11-29T08:19:51+00:00","author":"admin NU","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin NU","Est. reading time":"3 \u0e19\u0e32\u0e17\u0e35"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#article","isPartOf":{"@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/"},"author":{"name":"admin NU","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c"},"headline":"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK","datePublished":"2025-11-29T08:19:51+00:00","mainEntityOfPage":{"@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/"},"wordCount":694,"commentCount":0,"publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"image":{"@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage"},"thumbnailUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png","articleSection":["AI","Committee","News","Uncategorized"],"inLanguage":"th","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/","url":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/","name":"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK - YouZum","isPartOf":{"@id":"https:\/\/yousum.gpucore.co\/#website"},"primaryImageOfPage":{"@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage"},"image":{"@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage"},"thumbnailUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png","datePublished":"2025-11-29T08:19:51+00:00","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","breadcrumb":{"@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#breadcrumb"},"inLanguage":"th","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/"]}]},{"@type":"ImageObject","inLanguage":"th","@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#primaryimage","url":"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png","width":300,"height":168},{"@type":"BreadcrumbList","@id":"https:\/\/youzum.net\/anthropic-says-it-solved-the-long-running-ai-agent-problem-with-a-new-multi-session-claude-sdk\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youzum.net\/"},{"@type":"ListItem","position":2,"name":"Anthropic says it solved the long-running AI agent problem with a new multi-session Claude SDK"}]},{"@type":"WebSite","@id":"https:\/\/yousum.gpucore.co\/#website","url":"https:\/\/yousum.gpucore.co\/","name":"YouSum","description":"","publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yousum.gpucore.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"th"},{"@type":"Organization","@id":"https:\/\/yousum.gpucore.co\/#organization","name":"Drone Association Thailand","url":"https:\/\/yousum.gpucore.co\/","logo":{"@type":"ImageObject","inLanguage":"th","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","width":300,"height":300,"caption":"Drone Association Thailand"},"image":{"@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DroneAssociationTH\/"]},{"@type":"Person","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c","name":"admin NU","image":{"@type":"ImageObject","inLanguage":"th","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","caption":"admin NU"},"url":"https:\/\/youzum.net\/th\/members\/adminnu\/"}]}},"rttpg_featured_image_url":{"full":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"landscape":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"portraits":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4-150x150.png",150,150,true],"medium":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"large":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"1536x1536":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"2048x2048":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"trp-custom-language-flag":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4-18x10.png",18,10,true],"woocommerce_thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"woocommerce_single":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4.png",300,168,false],"woocommerce_gallery_thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2025\/11\/crimedy7_illustration_of_robots_running_a_marathon_-ar_169_-_98e4a2e9-af27-4fe5-8f24-c70cc6d9dd30_3-GbP8h4-100x100.png",100,100,true]},"rttpg_author":{"display_name":"admin NU","author_link":"https:\/\/youzum.net\/th\/members\/adminnu\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/youzum.net\/th\/category\/ai-club\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/youzum.net\/th\/category\/committee\/\" rel=\"category tag\">Committee<\/a> <a href=\"https:\/\/youzum.net\/th\/category\/news\/\" rel=\"category tag\">News<\/a> <a href=\"https:\/\/youzum.net\/th\/category\/uncategorized\/\" rel=\"category tag\">Uncategorized<\/a>","rttpg_excerpt":"Agent memory remains a problem that enterprises want to fix, as agents forget some instructions or conversations the longer they run.\u00a0 Anthropic believes it has solved this issue for its Claude Agent SDK, developing a two-fold solution that allows an agent to work across different context windows. \u201cThe core challenge of long-running agents is that&hellip;","_links":{"self":[{"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/posts\/54259","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/comments?post=54259"}],"version-history":[{"count":0,"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/posts\/54259\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/media\/54260"}],"wp:attachment":[{"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/media?parent=54259"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/categories?post=54259"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/youzum.net\/th\/wp-json\/wp\/v2\/tags?post=54259"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}