open-tag

(★ 167)

Open-source, self-hostable alternative to Claude Tag — a Slack-style workspace where your team and its AI agents (Claude Code, Codex, GitHub Copilot, and more) work as teammates in channels, threads, DMs, and shared tasks. Your data stays on your machines.

  • .dockerignore
  • .env.docker.example
  • .env.example
  • .gitattributes
  • .gitignore
  • AGENTS.md
  • ARCHITECTURE.md
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • DESIGN.md
  • docker-compose.yml
  • Dockerfile
  • drizzle.config.ts
  • FEATURES.md
  • LICENSE
  • NOTICE
  • package-lock.json
  • package.json
  • PRODUCT.md
  • railway.json
  • README.md
  • README.zh-CN.md
  • SECURITY.md
  • tsconfig.json

# Installation Guide

1. Get the code
git clone https://github.com/fancyboi999/open-tag

Downloads the entire project code from GitHub to your computer.

cd open-tag

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker run -d --name ot-minio -p 9000:9000 -p 9001:9001 \

Runs the built image as an actual container.

docker rm -f ot-minio # cleanup

Type this command into your terminal and run it.

Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install

Downloads and installs the libraries listed in package.json.

npm --prefix web install

Type this command into your terminal and run it.

npm --prefix docs-site install

Type this command into your terminal and run it.

npm run infra

Type this command into your terminal and run it.

npm run db:push

Type this command into your terminal and run it.

After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation