GuidePublished July 8, 2026 · Updated July 8, 2026
Tenka Cloud Multiview

Build simpler, cheaper, and more secure

To help you build more secure, more stable applications as you update code — and save tokens while you do — you can use Tenka Cloud's Multiview sessions. They're designed to keep each Claude Code session small and cheap, and to keep your project out of one giant file where a single error could take down the whole app.

Tenka Cloud Multiview — a grid of focused Claude Code sessions, one per compartment

Why Multiview

On Tenka Cloud you run one app per VM, and you can organise that app into compartments — small folders under app/ (say app/auth/ for anything security-sensitive, app/core/ for features). Multiview lets you open each compartment as its own focused Claude Code session, side by side in a grid.

A few nice things follow from that:

  • It's simpler. You can work on one concern at a time, with every compartment — auth, database, websocket, DNS, billing — visible at a glance.

  • It can save tokens. Claude re-sends the whole conversation on every turn, so a smaller session costs less. If you give each compartment its own session, each one only needs to load that folder — so there's less to send back, and your bill stays lower.

  • It's easier to keep things stable and secure. Because your code lives in separate compartments instead of one big file, a mistake in one area is far less likely to disturb another — and much less likely to take down the whole app. To avoid affecting other compartments while you update code, you can keep each piece of work in its own session, keep security-sensitive code neatly in app/auth/, and commit each compartment separately.
  • Watching your context

    Every session shows how full its context is with /context, and you can check spend with /cost. In the Multiview above, one session is already around 59% — and by then it's re-sending quite a lot on every turn.

    To save tokens, you can reset a session while it's still small — somewhere around 20–25% is a comfortable point, rather than waiting for it to fill up. It feels early, but that's really where the savings are.

    Using auto memory

    Claude Code keeps a persistent memory across sessions, and it reads your CLAUDE.md files at the start of each one — so a fresh session can pick up where you left off.

  • You can just ask Claude to remember something ("remember that migrations run via x") and it saves that to memory for you.

  • You can keep your project's conventions and architecture in CLAUDE.md, which loads automatically.

  • And you can run /memory any time to see or tidy what's stored.
  • Getting ready for /clear

    When a session gets heavy, a nice way to reset is to save the important bits to files first. You can ask Claude something like:

    > "Write the current state and open tasks into this compartment's CLAUDE.md, and save the durable project facts to memory."

    Then you can start fresh with /clear, or use /compact if you'd rather keep the same thread but trim it down. Either way nothing important is lost — it's safe in CLAUDE.md and memory.

    Before you clear

  • Ask Claude to write the current state + open tasks into CLAUDE.md.

  • Ask it to save the durable facts to memory.

  • Then /compact to keep going, or /clear for a clean slate.
  • Coming back to a compartment

  • Reopen that compartment's session in Multiview.

  • It only needs that folder plus CLAUDE.md and your memory — a small, quick context.

  • So there's much less to send back, and you're moving again cheaply.
  • Why coming back is cheap

    A revived session doesn't need to re-read the whole project — it starts from one compartment plus your saved notes. That's the idea: the less data that has to travel back and forth each turn, the lower your cost and the faster things feel. And for the occasional side task that would flood a session (digging through logs, running a big test suite, some research), you can hand it to a subagent so all that noise stays in its own context and only the result comes back.

    In short

    Multiview lets you swap one big AI session on a sprawling codebase for several small, focused ones — easier to follow, gentler on your token budget, and safer to change. Pair it with resetting your context early and leaning on memory, and you can ship new things quickly without the cost creeping up.

    New to the commands here? The Claude Code slash-command reference is a good place to start.

    ← Back to blog