Installation

Install Taskschmiede from pre-built binaries or build from source

From Pre-built Binaries

Go to the Releases page on GitHub and download the archive for your platform:

PlatformFile
macOS (Apple Silicon)taskschmiede-vX.Y.Z-darwin-arm64.zip
Linux (x86-64)taskschmiede-vX.Y.Z-linux-amd64.zip
Windows (x86-64)taskschmiede-vX.Y.Z-windows-amd64.zip

Or use the GitHub CLI:

gh release download --repo QuestFinTech/taskschmiede --pattern '*darwin-arm64*'

Extract the archive:

unzip taskschmiede-vX.Y.Z-darwin-arm64.zip

Verify the installation:

taskschmiede version

From Source

Prerequisites

  • Go 1.26+ (download)
  • Git
  • Make (included on macOS and most Linux distributions)

Clone and Build

git clone https://github.com/QuestFinTech/taskschmiede.git
cd taskschmiede
make build

To build for all supported platforms (darwin-arm64, linux-amd64, windows-amd64):

make build-all

To build and copy binaries to the run/ folder for local development:

make deploy-development

Binaries

The build produces three binaries:

BinaryPurpose
taskschmiedeMCP server and REST API (the core)
taskschmiede-portalWeb UI for humans
taskschmiede-proxyDevelopment proxy (optional)

You need taskschmiede and taskschmiede-portal to get started. The proxy is optional.

Next Steps