惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Turned My Claude Code History Into an SAO-Style Floatin...
Animesh Path · 2026-05-24 · via DEV Community

A few weeks ago, I was trying to find an old Claude Code session where I had built a small automation script.

I remembered the idea.
I remembered the project.
I even remembered the vibe of that late-night debugging session.

But finding it? Impossible.

Just endless chat history. That’s when I had a stupid but fun idea:

What if my chats looked like Sword Art Online’s Aincrad instead of a sidebar?

And somehow… that turned into a real thing.

So What Is This?

I built a custom Claude Code skill that converts my latest 20 sessions into a floating anime-style castle.

Every session becomes a floor. The newest chat becomes the top “boss floor.” Older conversations sit lower in the tower like the earlier levels of Aincrad. But the best part is this:

  • The floors don’t look random. They change depending on what I created during that session.

    • If I worked mostly on Python scripts, the floor becomes this darker tech-dungeon style area.
    • If I created presentations, the floor feels more like a glowing crystal hall.

Documentation-heavy sessions become giant archive-style floors filled with “scroll” vibes. It honestly started feeling less like chat history and more like walking through old projects.

The Moment It Started Feeling Cool

The first time I opened the tower, I clicked one of the upper floors and immediately recognized the session.

Not because of the title. Because of the atmosphere. That floor had:

  • database migration scripts
  • markdown docs
  • pipeline files

and the whole thing looked like some underground engineering archive.

Another floor had slide decks and diagrams, so it looked brighter and more polished.

Without even reading much, I already knew what kind of work I had done there.

That’s when I realized this was actually useful.

How It Works?

The whole thing runs from a single Python script. The script scans Claude Code session files stored locally:

~/.claude/projects/*/*.jsonl

Enter fullscreen mode Exit fullscreen mode

Those files already contain everything:

  • prompts
  • messages
  • tool calls
  • edited files
  • generated resources

So instead of using AI guesses, the script reads actual session activity. It checks for tools like:

  • Write
  • Edit
  • MultiEdit
  • NotebookEdit

and collects the files created during the conversation.

That’s how it figures out the “theme” of each floor.

A session with lots of .py files feels different from one full of .pptx or .md files.

The Castle UI Was the Hardest Part

At first, the output looked boring. Just stacked cards.

It worked, but it didn’t feel like Aincrad. So I rebuilt the entire UI around a floating castle image.

Now the castle sits in the center of the screen with glowing floor markers connected by animated paths.

Clicking a floor opens a smooth SAO-style side panel with:

  • session details
  • created files
  • project info
  • animations
  • floor transitions

Even keyboard navigation works. Arrow keys move between floors like climbing the tower. That small detail made it feel surprisingly immersive.

One Unexpected Thing I Loved

Some sessions had no files at all.Just thinking, planning, or debugging discussions.
Instead of forcing themes onto them, I turned those into peaceful “safe-zone” floors. Almost like rest areas inside the castle.

That tiny design choice ended up making the whole thing feel more human. Not every session needs to be productive chaos. Some are just thinking spaces.

The Funniest Part

The current conversation became the newest boss floor automatically.

So while building the system… the system was already adding itself into the castle.

That felt very SAO somehow.

Performance Was Wild

I also tested what happens without the custom skill. Claude could still build a tower from scratch… but it took several minutes and massive token usage.

With the skill, the whole thing builds almost instantly because the logic is already structured.

The difference was huge. It went from:
“generate everything manually”
to:
“load my world.”

Why I Think This Matters

This project made me realize something important. AI chats are slowly becoming our real creative workspace.

We:

  • write code there
  • design systems there
  • build presentations there
  • brainstorm products there
  • debug production issues there

But the interfaces still treat everything like disposable messages.

That feels wrong.

I think AI workspaces should feel alive.

More visual.
More personal.
More memorable.

This project was my weird anime-inspired attempt at that idea.

Final Thoughts

I originally built this just because I thought it would look cool.

But now I genuinely use it. Sometimes I open the tower just to remember what I worked on during the week.

And honestly?

Seeing your projects as floors inside a floating castle is way more fun than scrolling through old chat tabs.

If you use Claude Code a lot, try building weird personal tools like this. Those are usually the projects that end up teaching you the most.