-
-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Welcome! This guide will help you get TagForge up and running on your system.
TagForge is distributed as a portable, standalone executable. There is no installer wizard—simply download and run.
Visit the Releases Page and download the version for your operating system:
-
Windows:
TagForge-win-x64.exe -
Linux:
TagForge-linux-x64 -
macOS:
TagForge-osx-arm64(Apple Silicon) orTagForge-osx-x64(Intel)
-
Windows: Double-click
TagForge-win-x64.exe. -
Linux/macOS: Run the executable from terminal (e.g.,
./TagForge-linux-x64).
Caution
Windows SmartScreen: Since TagForge is a new open-source tool, you might get a "Windows protected your PC" popup. Click More info -> Run anyway.
[!NOTE] First Launch Performance: TagForge is a pre-compiled high-performance binary. The very first time you run it after a download, your operating system may perform a security scan. This may cause a 2-3 second delay. Subsequent launches will be near-instant.
Tip
Linux/macOS Users: You may need to grant execution permissions:
chmod +x TagForgeTagForge stores all settings, API keys, and history in a unified location in your user profile:
-
Path:
~/.tagforge/(e.g.,C:\Users\YourName\.tagforgeon Windows) - Security: All API keys are encrypted with a machine-specific hardware salt.
- Migration: If you are upgrading from a version older than v2.2, your data will be automatically migrated to this new folder on the first launch.
If you prefer to build the application yourself, you will need the .NET 9.0 SDK.
-
Install SDK: Download from dotnet.microsoft.com.
-
Clone Repo:
git clone https://github.com/SiliconeShojo/TagForge.git cd TagForge -
Build: Run the command for your target OS:
Windows
dotnet build TagForge.csproj -c Release
Linux
dotnet build TagForge.csproj -c Release -r linux-x64
macOS
dotnet build TagForge.csproj -c Release -r osx-arm64
When you launch TagForge for the first time:
TagForge needs an AI "brain" to work.
- Select a provider (e.g., Google Gemini or Ollama).
- Enter your API Key.
- Click Fetch Models.
Note
See the Agents & Providers guide for detailed connection instructions.