AI News

Researchers behind a project called AgenticSTS say they have improved long-horizon AI agent performance in the card game Slay the Spire 2 by replacing the usual ever-growing chat history with a structured memory system. In reported tests covered by The Decoder, the agent won 6 of 10 runs on the game’s lowest difficulty when a tactical skill layer was enabled, while two public comparison agents using traditional transcript-heavy prompting reportedly failed to win any of their runs.

The result matters beyond a game benchmark because it targets a practical bottleneck for AI agents: long tasks tend to accumulate huge prompts, driving up cost, latency, and error rates. AgenticSTS’s core claim is that an agent does not need to keep replaying its full conversation to act coherently over hundreds of steps. Instead, it can rebuild each prompt from a compact set of memory slots that store only specific kinds of information.

According to The Decoder’s report on the paper, the work comes from Alaya Lab, Shanghai Jiao Tong University, and other institutions. The researchers used Slay the Spire 2 as a test case because a run involves many sequential choices, the rules can be represented in text, and randomness makes brittle strategies easier to expose. For AI builders, that makes the study less about beating a game and more about whether memory architecture can substitute for brute-force context expansion.

Why Slay the Spire 2 is a useful stress test

Slay the Spire 2 is unusually punishing for agent design. A single run can involve route planning, deck construction, combat tactics, store purchases, and event decisions spread across hundreds of steps. That makes it a better test of persistence and planning than a one-shot benchmark. The Decoder notes that human players win about 16 percent of the time on the lowest difficulty, A0, according to the game’s developers, while frontier-model agents in the AGI-Eval assessment reportedly did not win a single game across five tested setups.

That backdrop is important because the researchers are not arguing that a new model suddenly solved the game. Their argument is narrower and more actionable: the same class of large language model can perform differently depending on how its history is represented and retrieved.

Traditional agent designs such as ReAct and Reflexion often append observations, tool outputs, and self-reflection to the next prompt. That pattern is easy to build, but it creates a prompt that grows every turn. As runs get longer, the agent risks either hitting the context limit or diluting its own attention across stale information. This is the same failure mode many practitioners now describe as context rot.

How AgenticSTS reorganizes memory

AgenticSTS reportedly avoids feeding the model its raw running transcript. Instead, each decision prompt is assembled from five memory layers. The Decoder describes them as a fixed instruction layer, a current-state layer, a retrieved game-rules layer, a summary layer for previous runs, and a strategy-skills layer that stores reusable tactical rules for recurring situations.

That separation is the main design contribution. If information from a previous step matters, it must first be written into one of those memory stores. In practice, that means the model sees a shorter, curated prompt rather than a giant log of everything it ever did. The reported prompt length stays around 5,000 tokens even late in a run, versus prompt growth into the hundreds of thousands of tokens for baseline agents that resend the full history.

This also gives researchers a cleaner way to inspect what actually helps. Instead of treating “memory” as one vague blob, they can switch layers on or off. In the main comparison described by The Decoder, an agent without memory layers won 3 of 10 runs. Adding the L5 tactical skill library increased that to 6 of 10. The article says this held whether the skills were handwritten or generated from templates.

That is a notable result, but the researchers themselves appear to have been careful about overstating it. With only 10 runs per condition, they reportedly acknowledge that the improvement could partly reflect noise.

The strongest gains may be cost and latency, not just wins

The cleaner performance story may be operational rather than purely benchmark-driven. The Decoder reports that public comparison agents STS2MCP and CharTyr, which use a growing-transcript approach, did not win any of five runs each under the reported setup. More strikingly, they reportedly consumed 66 to 90 times more tokens per point scored than AgenticSTS.

One cited example illustrates why. In STS2MCP, a late-game model call reportedly reached about 527,000 tokens because the entire game history was resent. AgenticSTS, by contrast, held the active user text around 5,000 tokens. The article also says transcript-heavy agents took about four times longer to reach the same level, with provider statistics attributing 96 percent of that slowdown to model latency rather than orchestration overhead.

For teams building AI agents in enterprise settings, this may be the more transferable lesson. Many production workflows already suffer from ballooning context in coding assistant, customer support, research, and workplace automation use cases. If structured memory can preserve enough continuity while sharply reducing prompt size, the payoff is lower inference spend, better responsiveness, and potentially fewer reasoning failures caused by noisy history.

What the evidence supports, and what it does not

The evidence in this story comes from media coverage of the underlying research rather than a company launch or independent benchmark audit, so caution is warranted. The Decoder reports that the key metrics are based on 50 runs overall, with only one playable character, Silent, tested on one game version. That leaves open how well the approach generalizes across patches, characters, or other long-horizon environments.

The article also says this was not a clean apples-to-apples ablation against transcript accumulation inside the same codebase. STS2MCP and CharTyr differ from AgenticSTS in routing and decision batching as well as memory handling. So while the comparison is useful as a snapshot of the current public-agent landscape, it does not isolate structured memory as the only reason for the gap.

Cross-model transfer results also suggest the memory itself may be less reusable than some builders might hope. The researchers reportedly froze a memory stack accumulated by Gemini 3.1 Pro and then passed it to Qwen 3.6-27B and Deepseek V4-Pro. Qwen 3.6-27B’s average score reportedly rose by 84.5 percent, while Deepseek V4-Pro’s score fell by 18.1 percent. Neither model won a game. If that finding holds, memory formats may need to be tailored to the model that creates and consumes them.

Even so, the project appears to make a useful contribution to reproducibility. The Decoder says the team is publishing 298 full game runs, frozen memory snapshots, and evaluation scripts on Hugging Face. That should make it easier for outside groups to test alternative memory designs without rebuilding the environment from scratch.

Why this matters for AI agents and enterprise AI

The broad implication is that better AI agents may come less from ever-larger context windows and more from explicit memory management. That shifts the engineering problem. Instead of asking how to stuff more tokens into a model, teams can ask what information deserves long-term storage, how it should be summarized, when it should be retrieved, and which decisions require fresh state versus durable skills.

This aligns with a wider move across the market. The Decoder points to Anthropic work on Memory Tool and Context Editing, which aims to remove stale tool results from live context and move durable information into external storage. It also mentions GAM and Mastra as other efforts to manage memory outside the raw prompt. These projects vary in implementation, but they share a similar premise: letting context grow unchecked is often the wrong default for long-running AI agents.

For enterprise AI buyers, that suggests procurement questions should extend beyond model quality. Teams evaluating an agent platform should ask how it handles memory compaction, retrieval, schema design, and auditability. A flashy demo built on giant prompts may fail when workflows stretch into hundreds of actions or when inference budgets tighten.

For researchers, Slay the Spire 2 offers a useful intermediate benchmark between toy tasks and messy real-world deployment. It is structured enough for controlled study but long enough to reveal failures in planning and memory. If AgenticSTS’s approach reproduces across more settings, it could influence how coding assistant systems, browser agents, and business-process automation tools are architected.

What to watch next

The next signal is independent replication. If outside researchers using the Hugging Face artifacts can reproduce the win rates, token savings, and latency improvements, the memory-architecture claim will become more credible.

A second signal is stricter ablation. The most informative follow-up would compare AgenticSTS against a transcript-accumulating baseline inside the same codebase, with the same model, same routing, and same scoring.

Third, watch for broader generalization. Results on more Slay the Spire 2 characters, later patches, or other long-horizon tasks would say more about whether the design is robust or benchmark-specific.

Finally, keep an eye on productization. If framework providers or model companies adopt similar structured-memory patterns, concepts now tested in research may quickly flow into commercial AI agents, enterprise AI stacks, and developer tools.

Creati.ai perspective

The most important part of this story is not that an agent won a handful of game runs. It is that the researchers are treating memory as a first-class system design problem rather than a side effect of chat. That is exactly where many deployed AI agents still break down: they confuse persistence with replay, so every new step drags around too much irrelevant past.

If the AgenticSTS results hold up, they strengthen a view that many builders already suspect: raw context length is an expensive substitute for structured state. In practice, the next wave of reliable AI agents may depend less on bigger models alone and more on disciplined memory layers, retrieval policies, and tools that prevent context rot before it starts.

Featured
AdsCreator.com
AdsCreator.com
Generate polished, on‑brand ad creatives from any website URL instantly for Meta, Google, and Stories.
AirMusic
AirMusic
AirMusic.ai generates high-quality AI music tracks from text prompts with style, mood customization, and stems export.
Laper
Laper
AI screenplay editor for writing, formatting, reviewing, and collaborating on film and TV scripts.
SharkFoto
SharkFoto
SharkFoto is an all-in-one AI-powered platform for creating and editing videos, images, and music efficiently.
Claude API
Claude API
Claude API for Everyone
KiloClaw
KiloClaw
Hosted OpenClaw agent: one-click deploy, 500+ models, secure infrastructure, and automated agent management for teams and developers.
Atoms
Atoms
AI-driven platform that builds full‑stack apps and websites in minutes using multi‑agent automation, no coding required.
Refly.ai
Refly.ai
Refly.AI empowers non-technical creators to automate workflows using natural language and a visual canvas.
VoxDeck
VoxDeck
Next-gen AI presentation maker,Turn your ideas & docs into attention-grabbing slides with AI.
Skywork.ai
Skywork.ai
Skywork AI is an innovative tool to enhance productivity using AI.
MenuForma
MenuForma
MenuForma turns restaurant menus into QR ordering, multilingual digital menus, payments, analytics, and review tools.
Pippit
Pippit
Elevate your content creation with Pippit's powerful AI tools!
BGRemover
BGRemover
Easily remove image backgrounds online with SharkFoto BGRemover.
Diagrimo
Diagrimo
Diagrimo transforms text into customizable AI-generated diagrams and visuals instantly.
Anijam AI
Anijam AI
Anijam is an AI-native animation platform that turns ideas into polished stories with agentic video creation.
GenPPT.AI
GenPPT.AI
AI-driven PPT maker that creates, beautifies, and exports professional PowerPoint presentations with speaker notes and charts in minutes.
wan 2.7-image
wan 2.7-image
A controllable AI image generator for precise faces, palettes, text, and visual continuity.
SuperMaker AI Video Generator
SuperMaker AI Video Generator
Create stunning videos, music, and images effortlessly with SuperMaker.
Elser AI
Elser AI
All-in-one AI video creation studio that turns any text and images into full videos up to 30 minutes.
Text to Music
Text to Music
Turn text or lyrics into full, studio-quality songs with AI-generated vocals, instruments, and multi-track exports.
Seedance 20 Video
Seedance 20 Video
Seedance 2 is a multimodal AI video generator delivering consistent characters, multi-shot storytelling, and native audio at 2K.
Hitem3D
Hitem3D
Hitem3D converts a single image into high-resolution, production-ready 3D models using AI.
Wan 2.7
Wan 2.7
Professional-grade AI video model with precise motion control and multi-view consistency.
Anyvids AI
Anyvids AI
Any Idea to Video. Made Simple. All Top AI Video Models, One Simple Platform.
VidMage
VidMage
Realistic AI face swaps for photos, videos, and GIFs, instantly and effortlessly.
AI Pet Video Generator
AI Pet Video Generator
Create viral, shareable pet videos from photos using AI-driven templates and instant HD exports for social platforms.
InstantChapters
InstantChapters
Create Youtube Chapters with one click and increase watch time and video SEO thanks to keyword optimized timestamps.
Couple AI - AI Couple Photo Maker
Couple AI - AI Couple Photo Maker
Create realistic AI couple portraits from selfies with themed styles, fast generation, and private HD downloads.
FixArt AI
FixArt AI
FixArt AI offers free, unrestricted AI tools for image and video generation without sign-up.
Qoder
Qoder
Qoder is an agentic coding platform for real software, Free to use the best model in preview.
FineVoice
FineVoice
Clone, Design, and Create Expressive AI Voices in Seconds, with Perfect Sound Effects and Music.
Flowith
Flowith
Flowith is a canvas-based agentic workspace which offers free 🍌Nano Banana Pro and other effective models...
Questie AI - Game Companion
Questie AI - Game Companion
Real-time AI gaming companion that watches your screen, chats by voice, and coaches gameplay live.
OnlyDoc Summarizer
OnlyDoc Summarizer
OnlyDoc's free PDF summarizer reads through a PDF and pulls out the key points in a clean, structured summary
Gptimg2 AI
Gptimg2 AI
All-in-one AI studio for creating images and videos from text, images, or references.
Coffee Chats AI
Coffee Chats AI
AI-matched coffee chat automation for communities, teams, mentorship, and alumni networking.
Imagvio AI
Imagvio AI
AI-powered image and video creation platform with precise editing, generation, and consistency-focused creative workflows.
AIToHuman
AIToHuman
Free AI text humanizer that rewrites AI-generated content into natural, human-like writing instantly.
Funy AI
Funy AI
AI bikini & kiss videos from images or text. Try the AI Clothes Changer & Image Generator!
Ampere.SH
Ampere.SH
Free managed OpenClaw hosting. Deploy AI agents in 60 seconds with $500 Claude credits.
GPT Image 2 Online
GPT Image 2 Online
An AI image generator and editor with photorealistic results, accurate text rendering, and strong prompt following.
WhatsApp AI Sales
WhatsApp AI Sales
WABot is a WhatsApp AI sales copilot that delivers real-time scripts, translations, and intent detection.
APIMaster
APIMaster
Real LLMs, verified by fingerprint. One API, up to 70% off official pricing.
Tome AI PPT
Tome AI PPT
AI-powered presentation maker that generates, beautifies, and exports professional slide decks in minutes.
Iara Chat
Iara Chat
Iara Chat: An AI-powered productivity and communication assistant.
SkyGen Plus
SkyGen Plus
A multi-model AI creation platform for generating images, videos, and music with one streamlined workflow.
Gobii
Gobii
Gobii lets teams create 24/7 autonomous digital workers to automate web research and routine tasks.
paperclaw
paperclaw
AI workspace that generates publication-ready scientific figures, diagrams, posters, and editable SVGs in minutes.
EaseMate AI
EaseMate AI
All-in-one AI assistant for chat, writing, study help, image creation, and video generation in one browser-based platform.
HookTide
HookTide
AI-powered LinkedIn growth platform that learns your voice to create content, engage, and analyze performance.
AI Video API: Seedance 2.0 Here
AI Video API: Seedance 2.0 Here
Unified AI video API offering top-generation models through one key at lower cost.
CreateMemorial
CreateMemorial
CreateMemorial helps families build lasting online memorial websites and funeral slideshow videos to honor loved ones.
Scavio AI
Scavio AI
Real-time multi-platform search API that helps AI agents fetch structured web, shopping, video, and social data.
AI Clothes Changer by SharkFoto
AI Clothes Changer by SharkFoto
AI Clothes Changer by SharkFoto instantly lets you virtually try on outfits with realistic fit, texture, and lighting.
Mubert AI
Mubert AI
Mubert is an AI music platform that generates, extends, remixes, and vocalizes royalty-free tracks in seconds.
Media.io Free AI Image Generator
Media.io Free AI Image Generator
Create AI visuals with Media.io from text prompts or reference images for social media, marketing, ecommerce, and more.
AIsa
AIsa
AIsa gives AI agents one gateway to models, skills, APIs, and payments with OpenAI-compatible access.
AI Gift finder by wishwave
AI Gift finder by wishwave
AI gift finder that builds shareable wishlists from real products across hundreds of popular stores.
MusicGPT
MusicGPT
AI music platform for generating songs, sound effects, vocals, and audio edits from simple prompts.
Palix AI
Palix AI
All-in-one AI platform for creators to generate images, videos, and music with unified credits.
Flaq AI Media API
Flaq AI Media API
Flaq AI is a unified AI media API platform for generating images, videos, and LLM-powered workflows with stable models
AdMakeAI
AdMakeAI
AI ad generator that creates high-performing static and UGC ads for brands in seconds.
StitchPilot.ai
StitchPilot.ai
Browser-based AI embroidery tool for converting images, previewing stitch files, and inspecting machine formats.
AnimeShorts
AnimeShorts
Create stunning anime shorts effortlessly with cutting-edge AI technology.
insmelo AI Music Generator
insmelo AI Music Generator
AI-driven music generator that turns prompts, lyrics, or uploads into polished, royalty-free songs in about a minute.
WriteHybrid AI Humanizer
WriteHybrid AI Humanizer
WriteHybrid is an AI humanizer and detector that rewrites text naturally while helping users bypass AI detection.
Kirkify
Kirkify
Kirkify AI instantly creates viral face swap memes with signature neon-glitch aesthetics for meme creators.
HappyHorseAIStudio
HappyHorseAIStudio
Browser-based AI video generator for text, images, references, and video editing.
Gemini Omni - Video Generator
Gemini Omni - Video Generator
AI video creation platform for conversational editing, multimodal references, and coherent short-form generation.
Lyria3 AI
Lyria3 AI
AI music generator that creates high-fidelity, fully produced songs from text prompts, lyrics, and styles instantly.
Paper Banana
Paper Banana
AI-powered tool to convert academic text into publication-ready methodological diagrams and precise statistical plots instantly.
Create WhatsApp Link
Create WhatsApp Link
Free WhatsApp link and QR generator with analytics, branded links, routing, and multi-agent chat features.
NerdyTips
NerdyTips
AI-powered football predictions platform delivering data-driven match tips across global leagues.
UNI-1 AI
UNI-1 AI
UNI-1 is a unified image generation model combining visual reasoning with high-fidelity image synthesis.
BeatMV
BeatMV
Web-based AI platform that turns songs into cinematic music videos and creates music with AI.
kinovi - Seedance 2.0 - Real Man AI Video
kinovi - Seedance 2.0 - Real Man AI Video
Free AI video generator with realistic human output, no watermark, and full commercial use rights.
Image3D - AI 2D to 3D Model Generator (GLB, OBJ, STL, PLY)
Image3D - AI 2D to 3D Model Generator (GLB, OBJ, STL, PLY)
Browser-based AI that turns any 2D image or text prompt into a 3D model in 30 seconds. Export GLB, OBJ, STL, PLY—free
whatslove.ai
whatslove.ai
AI dating coach that customizes advice, conversation starters and date ideas tailored to your personality.
Video Sora 2
Video Sora 2
Sora 2 AI turns text or images into short, physics-accurate social and eCommerce videos in minutes.
AI FIRST
AI FIRST
Conversational AI assistant automating research, browser tasks, web scraping, and file management through natural language.
WhatsApp Warmup Tool
WhatsApp Warmup Tool
AI-powered WhatsApp warmup tool automates bulk messaging while preventing account bans.
TextToHuman
TextToHuman
Free AI humanizer that instantly rewrites AI text into natural, human-like writing. No signup required.
Manga Translator AI
Manga Translator AI
AI Manga Translator instantly translates manga images into multiple languages online.
Remy - Newsletter Summarizer
Remy - Newsletter Summarizer
Remy automates newsletter management by summarizing emails into digestible insights.
GLM Image
GLM Image
GLM Image combines hybrid AR and diffusion models to generate high-fidelity AI images with exceptional text rendering.
Seedance 2.0 Video AI
Seedance 2.0 Video AI
Generate cinematic 1080p videos from prompts, images, and reference clips with synchronized audio.
happy horse AI
happy horse AI
Open-source AI video generator that creates synchronized video and audio from text or images.

Structured memory, not bigger context windows, may be the key to stronger AI agents in Slay the Spire 2

AgenticSTS researchers say structured memory helped an AI agent beat Slay the Spire 2 while cutting token use, highlighting a practical path past context rot.