SillyTavern Lorebook Extension – Scribe!

The Curse of Lorekeeping

Introducing a SillyTavern Lorebook Extension – Scribe!

Scribe is a personal little project I’ve been working on for a while. A SillyTavern lorebook extension for lazy people. I’m notoriously lazy. So much so that even when I use something like WorldInfo Recommender (which is great, by the way. Check my article on it here!), I still find myself too lazy to stop the story, open a menu, enter a prompt, and generate an entry. So I thought “Man, wouldn’t it be great to highlight a specific name, place, or entity, and simply make a lorebook entry without even having to open a menu?”. So I made Scribe! A lorebook editor that allows you to simply highlight text and create/update a lorebook entry.

How It Works

Scribe was designed for dummies, by a dummy. So it’s painfully simple to use. Listen up, dummy!

Continue reading

How to Install SillyTavern on Windows, Mac, and Linux

The Curse of Patience

If you want to know how to install SillyTavern without piecing together six Reddit comments and a three-year-old video, this is the guide. We’ll install the stable release on Windows, macOS, or Linux, open it locally, and connect it to an AI backend.

SillyTavern is a frontend. It gives you the chat interface, character cards, lorebooks, presets, extensions, and enough settings to lose an afternoon. It does not include an AI model. You’ll connect one after the installation is running.

The good news is that installing SillyTavern is mostly Node.js, Git, and one startup script. The bad news is that computers remain committed to inventing new and interesting ways to object.

Before you install SillyTavern

You need:

  • A currently supported version of Windows, macOS, or Linux. Windows 7 cannot run the required Node.js version
  • Node.js version 20 or newer. Use the current LTS release
  • Git
  • A normal user-owned folder where you can keep the installation

Check Node and Git from Command Prompt, PowerShell, or Terminal:

node -v
git --version

The Node command should report version 20 or newer. If either command is missing, install that dependency before continuing.

Use the release branch

SillyTavern has two main branches:

  • release is the stable branch and the right choice for most people.
  • staging gets new changes sooner and breaks more often. Use it if testing unfinished features sounds like recreation.

Every Git command in this guide installs the release branch explicitly.

How to install SillyTavern on Windows

Do not install SillyTavern inside Program Files, Windows, System32, or another Windows-controlled folder. Do not run Start.bat as Administrator. A folder inside your user directory, such as C:\Users\YourName\SillyTavern, is a safer choice.

1. Install Node.js and Git

Download the current Node.js LTS installer from nodejs.org. Keep the option that adds Node.js to your PATH enabled.

Install Git for Windows with its normal defaults. Close and reopen Command Prompt after both installers finish, then verify them:

node -v
git --version

2. Clone the stable release

Create or open the folder where you want SillyTavern. Click the File Explorer address bar, type cmd, and press Enter. Command Prompt will open in that folder.

Run:

git clone https://github.com/SillyTavern/SillyTavern -b release

This creates a new SillyTavern folder. Unlike downloading a random ZIP and forgetting where it came from, a Git installation is easy to update later.

3. Start SillyTavern

Open the new SillyTavern folder and double-click Start.bat. Windows may hide the .bat extension, in which case the file appears as Start.

The first launch installs the required packages and may take a few minutes. Keep the command window open. Closing it stops the SillyTavern server.

Your browser should open automatically. If it doesn’t, visit:

http://127.0.0.1:8000

That address works on the computer running SillyTavern. It does not automatically expose SillyTavern to every device on your network. We’ll return to remote access before somebody opens port 8000 to the entire internet and moves their soul index into the red.

How to install SillyTavern on macOS

SillyTavern runs on both Intel and Apple Silicon Macs. M1, M2, M3, M4, and later Apple chips are fine.

1. Install Homebrew, Node.js, and Git

Open Terminal. Install Homebrew using the command shown on brew.sh:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Homebrew may print one or two commands that add it to your shell PATH. Run those commands if prompted. Then install Git:

brew install git

Install the current Node.js LTS release from nodejs.org. This avoids Homebrew’s unversioned node formula, which may be a newer non-LTS release.

Verify both:

node -v
git --version

2. Clone and start SillyTavern

Move to the folder where you want the installation. Your home folder is fine. Then clone the stable release and enter its directory:

git clone https://github.com/SillyTavern/SillyTavern -b release
cd SillyTavern

Start it:

bash start.sh

Leave Terminal open while you use SillyTavern. Open http://127.0.0.1:8000 manually if the browser doesn’t appear.

How to install SillyTavern on Linux

The exact package command depends on your distribution. The SillyTavern part is the same once Node.js 20+ and Git are installed.

1. Install Node.js and Git

On Ubuntu, Debian, and most other Linux distributions, I recommend installing Node.js through nvm. Distribution repositories often trail the current LTS release.

Install nvm using its official instructions, then run:

nvm install --lts
nvm use --lts
sudo apt update
sudo apt install git

Check both before continuing:

node -v
git --version

If the command reports a version older than 20, do not continue with the antique it handed you. Update Node.js first.

Fedora, Arch, openSUSE, and their various trench-coat-wearing relatives should use their own package managers. You need the same two results: Node.js 20+ and Git.

2. Clone and start SillyTavern

git clone https://github.com/SillyTavern/SillyTavern -b release
cd SillyTavern
bash start.sh

If you prefer running the script directly, make it executable first:

chmod +x start.sh
./start.sh

Open http://127.0.0.1:8000 if your browser doesn’t launch automatically.

The SillyTavern Launcher option

The official SillyTavern Launcher can install and manage SillyTavern through a menu. It is useful if you want extras or dislike managing Git commands yourself.

The manual Git installation above is still my default recommendation. It has fewer moving parts, the folder structure is obvious, and updating it takes one command. The launcher is valid, but it is another layer to troubleshoot when something gets weird.

How to update SillyTavern

Stop SillyTavern first. Open Command Prompt or Terminal inside the SillyTavern folder, then run:

git pull

If Git refuses because you changed a tracked program file, do not force the update or delete the folder. Run git status to identify the change and save anything you meant to keep before trying again.

Start SillyTavern again with Start.bat on Windows or bash start.sh on macOS and Linux. The startup script handles dependency changes.

Do not replace your entire installation folder every time a release appears. In a normal standalone install, user data lives under the installation’s data directory; the default account is usually under data/default-user. Back up the entire data directory and config.yaml before a major migration or any experiment involving the phrase “this should probably work.”

Connect an AI model

SillyTavern is now running, but it still needs a model provider. Your two broad options are:

  • Use a hosted API such as OpenRouter. Create an API key, open SillyTavern’s API Connections panel, choose the matching provider, and paste the key into the secret field.
  • Run a local model through software such as KoboldCpp, Ollama, or LM Studio, then point SillyTavern at that server’s local API address.

SillyTavern stores API keys separately from exported character cards and chats, but you should still treat every key like a password. Don’t paste one into a preset, character description, screenshot, or Discord message. Yes, people do all four.

Access SillyTavern from another device

127.0.0.1 and localhost mean “this computer.” A phone or tablet cannot use your computer’s localhost address to reach SillyTavern.

Remote access requires setting listen: true in the root config.yaml, configuring an access-control method, and using a safe network route. Do not forward port 8000 directly from your router. Follow SillyTavern’s official remote-connections guide and use a private VPN such as Tailscale if you need access away from home.

That topic deserves its own guide. Treating it as a footnote is how a private roleplay frontend becomes a public incident report.

Common SillyTavern installation problems

“Node is not recognized” on Windows

Close every Command Prompt window and open a new one. If node -v still fails, reinstall Node.js and make sure the installer adds Node to PATH.

Start.bat closes immediately

Open Command Prompt inside the SillyTavern folder and run Start.bat from there. The error will remain visible. Do not run it as Administrator. Check the actual error before negotiating with your antivirus.

“Permission denied” on macOS or Linux

Run bash start.sh, or make the script executable with chmod +x start.sh and run ./start.sh.

brew: command not found on macOS

Homebrew probably printed commands to add itself to your PATH after installation. Run those commands, reopen Terminal, and try brew --version again.

Port 8000 is already in use

Stop the other process using port 8000, or change the port value in SillyTavern’s config.yaml, then restart it.

The page is blank or never finishes loading

Check the command window first. Confirm it says SillyTavern is listening on 127.0.0.1:8000, then hard-refresh the page. If the server stopped or printed an error, fix that error before troubleshooting the browser. Browser extensions and stale cached files are the next suspects.

You’re in. What next?

Once your API connection works, import a character card and send a test message. Then make the place yours:

You now know how to install SillyTavern, update it, and connect a model without granting a batch file dominion over your computer. A most joyous one.

Consume. Create. Obsess.

More tools, guides, and rabbit holes at rpfiend.com.

How To Write a SillyTavern Character Card

The Curse of Hollow

How To Write a SillyTavern Character Card (Or for any platform, really) That Actually Has Soul!

So if you’ve checked out my guide on how to write a system prompt (which if you haven’t, check it out here if you’re curious), then you might be wondering how to write a SillyTavern character card. If you haven’t written one before, I suggest you do! Writing your own character card with his/her own quirks and caveats is one of the most enjoyable things you can do in this space IMO. My first character cards were terrible. Straight copy and pasted from the Wiki page of whatever flavor-of-the-month anime I was into. I’d slap in 2-3 adjectives, and an equally terrible first message.

But that’s the Curse of Hollow. A character, a name, and a picture if you really tried. But no personality. Nobody’s home, Charlie. However, much like system prompts, the way you write and fill those fields can make a huge difference. It’s not so complex to call it prompt engineering (*tips fedora*), but knowing exactly how to structure it in order to achieve a desired result makes all the difference, and you’ll notice!

Continue reading

SillyTavern Story Suggestions Extension – Choices!

Introducing Choices!

Sometimes, you’re tapped out. It’s been a long day of work, a long day of chores, or a long day of nothing. Wouldn’t it be nice to just sit back and not have to think for once? SillyTavern Story Suggestions, or “Choices!” for short, is my love letter to address that issue (and before you say anything about the name, I’m not the most creative sort). It is a CYOA (choose-your-own-adventure) style extension that automatically generates one-click story suggestions for you. Instead of having to brainstorm and think of new ideas, the LLM thinks of them for you and your character acts out the option in a single click. So you no longer have to stop and think if you don’t want to. Now, you can let that sucker LLM do it for you while you sit back and… Consume. Create. Obsess.

Features

Now that the edginess is over, we can get to the more important details. Simply put, the purpose of this extension is to streamline the “What do I do now?” dilemma most hit at some point. Here’s some features, shamelessly taken directly from my github:

Continue reading

How to Write a System Prompt for AI Roleplay

The Curse of Prompts

If you’ve spent time in SillyTavern, you’ve seen the system prompt field…*shivers*. The lazy either leave the default in place (guilty..), paste something they found on Reddit (uh..guilty?), or dump a wall of instructions in and hope for the best (GUILTY!)

Yes, I was indeed guilty of all three.

inb4 “Just download a preset, bro“, because I surely am.

But for the curious, the system prompt is the most impactful piece of text in your entire setup. It sits at the top of every context window, sets the behavior for your LLM, and directly shapes every response you’ll ever get from a character card. That means that, many times, a well-written character card will actually suffer from a crappy system prompt (or..it might be a crappy card too. In that case, you’re double f’d)

This guide is a little bit of my experience, breaks down what a system prompt does, how to structure one for AI roleplay purposes, what to stop doing immediately, and sprinkled in with a bit of Chemical X. Let’s get into it!

Continue reading

SillyTavern Lorebook Profiles Extension – LoreProfiles!

Introducing LoreProfiles!

As I used SillyTavern more and more, it was a bit annoying to constantly switch between lorebooks. Every time I switched to whatever character I decided to interact with that day, I had to remember the specific lorebook(s) for the scenario I was trying to achieve, and then manually toggle them. This got old fast! Remembering 3-5 lorebooks for different aspects of a story for different characters or scenarios became a headache. I couldn’t find a Sillytavern lorebook profiles extension that fit this niche use case, either. SillyTavern Lorebook Extension – Scribe

The SillyTavern lorebook profiles extension (or LoreProfiles, for short) fixes that entirely. You create a profile, select the lorebooks for that profile, and save it. Therefore, a single click swaps your entire lorebook configuration instantly (to your global). So no more forgetting which lorebooks belonged to which character. And no more toggling 5 things on and 3 things off every time you switch scenarios.

Continue reading

Z.AI GLM-5 To Be Made Available to Lite Users

The Curse of… No, Wait! The Blessings are upon us!

On a day such as this, one could not have expected better news. Z.AI has announced that, over the next few weeks, GLM-5 should be made available to all lite users.

The email. Fresh and real. You can almost taste it.

I’m excited to experience the improvements GLM-5 has made over 4.7. The team at Z.AI has made note of the immense RP community behind their LLM, and have taken steps to cater to that community as well. Specifically, improvements on long-text consistency and complex character developments were noted. When I was reading some reddit posts on it, some users remarked how impressively natural the dialogue felt compared to GLM 4.7. SillyTavern Weekly: DeepSeek V4, Kimi

GLM-5 is a 744B MoE model, and creative writing is a noted improvement area over GLM-4.7. NC Bench scores GLM-5 at 83–88% on prose quality across fantasy, horror, literary fiction, and mystery scenarios, measuring things like avoiding passive voice, weak dialogue tags, and AI-isms. That’s a meaningful jump for immersive RP output. – Perplexity

I’m a big GLM fan, but I’m also a big saving money fan (as we all know, tokens cost money)! Z.AI’s Lite subscription is an incredible bang-for-your-buck, and is a great LLM for roleplaying purposes. It’s actually my go-to, and I’m still rocking GLM 4.7 daily. The announcement is a most joyous one, and I’ll be releasing content catered towards GLM-5 over the coming weeks as I get an opportunity to experiment further with the LLM. SillyTavern Weekly: GLM 5.2, DeepSeek

Z.AI GLM-5 lite users rejoice!

**Note: If you’re looking for a suitable preset to be used with GLM-5/4.7, look no further. Check out my article on Stab’s Directive Hierarchy for SillyTavern and GLM-4.7 / Gemini 3.0

SillyTavern WorldInfo Recommender Extension by bmen25124

The Curse of Knowing

WorldInfo Recommender: Hands-Off Worldbuilding

SillyTavern WorldInfo Recommender is one of my most used tools. As your stories continue to expand in the world of SillyTavern, you’re going to want something that is going to aid in streamlining the process of creation. Thinking, creating, and manifesting new ideas can be exhausting (especially when you’re out of ideas!). Tools, such as lorebooks, help us implement and keep track of these new and old details. They feed the relevant information the our LLMs so that they can weave the tale. For some, creating and updating a lorebook is one of the more intensive things you can do in SillyTavern. It can be tiring to constantly decide things such as: What’s important? What’s relevant? What’s a key detail? So on, and so on. At times, we want to be able to just partake in the story while maintaining a hands-off approach. This is where WorldInfo-Recommender by bmen25124 comes in. SillyTavern Message Summarize Extension: Qvink Memory

Continue reading

SillyTavern Message Summarize Extension: Qvink Memory

The Curse of Forgetting

Qvink Memory and Why SillyTavern Summarize Extension Simply Isn’t Enough

When I first started using SillyTavern, I was truly taken aback by the number of options presented to the user compared to the broader market of AI-Chatbot websites. The flexibility of being able to tweak almost every single aspect of your experience is something that very little services offer (One of the closer ones being DreamGen). However, as my stories grew larger, and my tokens grew heftier (As will yours!), I began to research ways in which I could cut back on my tokenization in order to preserve my context. That’s when I discovered a third-party SillyTavern message summarize extension by qvink, called MessageSummarize. It has proven to be an invaluable tool when it comes to preserving memory over long, bigger-than-life narratives. Below are some brief explanations, as well as an in-depth guide to getting started. Let’s begin!

Continue reading