Skip to main content

GCS Distribution Index

Bucket: gs://coditect-dist Public URL Base: https://storage.googleapis.com/coditect-dist/ Last Updated: 2026-01-20T08:00:00Z


Table of Contents

  1. Binaries (codi-watcher)
  2. Installation Scripts
  3. Documentation
  4. Quick Install Commands
  5. Checksum Verification
  6. GCS Bucket Structure
  7. Update History

Binaries (codi-watcher)

Current Version: v0.4.0 (2026-01-20)

The Context Watcher (codi-watcher) is a Rust-based daemon that monitors Claude Code context usage and automatically exports sessions when context reaches a configurable threshold (default: 75%).

Platform Downloads

PlatformArchitectureSizeSHA256Download
macOSARM64 (Apple Silicon)2.9 MBe57646d1...Download
macOSx86_64 (Intel)3.0 MBc6f2767b...Download
LinuxARM643.4 MB6909039c...Download
Linuxx86_643.5 MB9b5701e2...Download
Windowsx86_645.9 MBc45ad704...Download

Full SHA256 Checksums

e57646d16add5ece8fe512c58cee006b0b8c419c383d5660f7d93f004ae418f3  codi-watcher-darwin-arm64
c6f2767bf4fec66246eb21e789f592f0a90c31e0bfb860b17314ef46186b9d3b codi-watcher-darwin-x86_64
6909039c67f53d8e7dcf1f093f69916f8bb20479a5d1ad5e629c8dd3c98500d8 codi-watcher-linux-arm64
9b5701e24e41ff3b8cec2ca2390a3014e81bc7f96bd8278a2e5d8f2ee69e4788 codi-watcher-linux-x86_64
c45ad704334e0d89cdcdbfbc7e26aaf9d2aea31b7cdfc94f1bf921f68288d30d codi-watcher-windows-x86_64.exe

Direct URLs

# macOS ARM64 (Apple Silicon M1/M2/M3)
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-darwin-arm64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-darwin-arm64.sha256

# macOS x86_64 (Intel)
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-darwin-x86_64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-darwin-x86_64.sha256

# Linux ARM64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-linux-arm64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-linux-arm64.sha256

# Linux x86_64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-linux-x86_64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-linux-x86_64.sha256

# Windows x86_64
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-windows-x86_64.exe
https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-windows-x86_64.exe.sha256

Binary Installation

# Auto-detect platform and install
PLATFORM=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)

# Map architecture names
[[ "$ARCH" == "aarch64" ]] && ARCH="arm64"
[[ "$ARCH" == "x86_64" ]] && ARCH="x86_64"

# Download binary
curl -sL "https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-${PLATFORM}-${ARCH}" \
-o ~/.coditect/bin/codi-watcher

# Make executable
chmod +x ~/.coditect/bin/codi-watcher

# Verify checksum
curl -sL "https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-${PLATFORM}-${ARCH}.sha256" | \
sha256sum -c -

Version History

VersionDateChanges
v0.4.02026-01-20All 5 platforms, unified build system
v0.3.02026-01-12macOS ARM64 only, initial release

Installation Scripts

Primary Scripts

ScriptVersionPurposeDownload
CODITECT-CORE-INITIAL-SETUP.py2.2.013-step user installationDownload
CODITECT-DEVELOPER-SETUP.py2.0.08-step developer configurationDownload
install.py1.0.0Curl-friendly installer wrapperDownload

Direct URLs

# User Setup Script (13 steps) - PRIMARY
https://storage.googleapis.com/coditect-dist/CODITECT-CORE-INITIAL-SETUP.py

# Also available at legacy location
https://storage.googleapis.com/coditect-dist/scripts/CODITECT-CORE-INITIAL-SETUP.py

# Developer Setup Script (8 steps)
https://storage.googleapis.com/coditect-dist/scripts/CODITECT-DEVELOPER-SETUP.py

# Curl Installer Wrapper
https://storage.googleapis.com/coditect-dist/install.py

Script Descriptions

CODITECT-CORE-INITIAL-SETUP.py (v2.2.0)

Purpose: Complete CODITECT installation for end users with all features enabled.

13-Step Installation Process:

StepNameDescription
1RepositoryClone/update coditect-core to protected system location
2SymlinksCreate ~/.coditect, ~/PROJECTS/.coditect, ~/PROJECTS/.claude
3Claude CodeConfigure settings.json with CODITECT hooks
4DatabaseInitialize ADR-118 four-tier databases (sessions.db, org.db)
5Machine IDGenerate hardware-based UUID for this machine
6Session LogsSet up machine-specific session log directory
7PythonCreate virtual environment and install dependencies
8StatuslineInstall 7-section Claude Code statusline
9Context WatcherInstall codi-watcher auto-export daemon
10BackupConfigure automatic GCS backup (optional)
11LicensingInitialize license verification system
12Platform DBInitialize platform.db for component index (ADR-089)
13MoE ToolsConfigure MCP servers and governance hooks

Key Features:

  • Four-tier database architecture (ADR-118): platform.db + org.db + sessions.db
  • MoE verification layer with judge personas
  • Automatic context export via launchd daemon
  • 7-section statusline for session visibility

CODITECT-DEVELOPER-SETUP.py (v2.0.0)

Purpose: Configure CODITECT for contributors working on the framework itself.

8-Step Configuration Process:

  1. Environment detection (validates existing submodule)
  2. Backup existing protected installation
  3. Symlink reconfiguration to submodule
  4. Database initialization
  5. Machine ID generation
  6. Claude Code hooks configuration
  7. Statusline installation
  8. Python environment setup

Key Difference: Points symlinks to editable git submodule instead of protected location.


Documentation

Core Documentation

DocumentVersionDescriptionDownload
CLAUDE.md2.9.0AI agent context and instructionsView
USER-QUICK-START.md5.0.010-minute getting started guideView
DEVELOPER-QUICK-START.md2.0.0Developer onboarding guideView

Reference Documentation

DocumentVersionDescriptionDownload
GCS-DISTRIBUTION-INDEX.md2.0.0This index documentView
GITHUB-CLI-USER-MANAGEMENT.md1.0.0GitHub CLI reference for user managementView

Email Templates

DocumentVersionDescriptionDownload
PILOT-INVITATION-EMAIL.md2.0.0User pilot invitation templateView
PILOT-DEVELOPER-INVITATION-EMAIL.md2.0.0Developer pilot invitation templateView

Direct URLs

# AI Agent Context
https://storage.googleapis.com/coditect-dist/CLAUDE.md

# Quick Start Guides
https://storage.googleapis.com/coditect-dist/docs/USER-QUICK-START.md
https://storage.googleapis.com/coditect-dist/docs/DEVELOPER-QUICK-START.md

# Reference
https://storage.googleapis.com/coditect-dist/docs/GCS-DISTRIBUTION-INDEX.md
https://storage.googleapis.com/coditect-dist/docs/GITHUB-CLI-USER-MANAGEMENT.md

# Email Templates
https://storage.googleapis.com/coditect-dist/docs/templates/PILOT-INVITATION-EMAIL.md
https://storage.googleapis.com/coditect-dist/docs/templates/PILOT-DEVELOPER-INVITATION-EMAIL.md

Quick Install Commands

For End Users (Full 13-Step Setup)

# Option 1: Curl installer (recommended)
curl -sL https://storage.googleapis.com/coditect-dist/install.py | python3

# Option 2: Download and run directly
curl -O https://storage.googleapis.com/coditect-dist/CODITECT-CORE-INITIAL-SETUP.py
python3 CODITECT-CORE-INITIAL-SETUP.py

For Developers (8-Step Setup)

# After cloning coditect-rollout-master with --recursive
cd submodules/core/coditect-core
curl -sL https://storage.googleapis.com/coditect-dist/scripts/CODITECT-DEVELOPER-SETUP.py | python3

Binary-Only Installation

# Download and install codi-watcher only
mkdir -p ~/.coditect/bin
curl -sL https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-darwin-arm64 \
-o ~/.coditect/bin/codi-watcher
chmod +x ~/.coditect/bin/codi-watcher

Checksum Verification

Verify Downloaded Files

# Download checksum file
curl -sL https://storage.googleapis.com/coditect-dist/codi-watcher/v0.4.0/codi-watcher-darwin-arm64.sha256 \
-o codi-watcher.sha256

# Verify binary
echo "$(cat codi-watcher.sha256) codi-watcher-darwin-arm64" | sha256sum -c -

Generate Checksum for Any File

# macOS
shasum -a 256 filename

# Linux
sha256sum filename

GCS Bucket Structure

gs://coditect-dist/
├── CODITECT-CORE-INITIAL-SETUP.py # Primary setup script (v2.2.0)
├── CLAUDE.md # AI agent context (v2.9.0)
├── install.py # Curl installer wrapper (v1.0.0)

├── scripts/
│ ├── CODITECT-CORE-INITIAL-SETUP.py # Legacy location (v2.2.0)
│ └── CODITECT-DEVELOPER-SETUP.py # Developer setup (v2.0.0)

├── docs/
│ ├── USER-QUICK-START.md # User guide (v5.0.0)
│ ├── DEVELOPER-QUICK-START.md # Developer guide (v2.0.0)
│ ├── GITHUB-CLI-USER-MANAGEMENT.md # GitHub CLI reference (v1.0.0)
│ ├── GCS-DISTRIBUTION-INDEX.md # This index (v2.0.0)
│ └── templates/
│ ├── PILOT-INVITATION-EMAIL.md # User email (v2.0.0)
│ └── PILOT-DEVELOPER-INVITATION-EMAIL.md # Developer email (v2.0.0)

└── codi-watcher/
└── v0.4.0/
├── codi-watcher-darwin-arm64 # macOS Apple Silicon
├── codi-watcher-darwin-arm64.sha256
├── codi-watcher-darwin-x86_64 # macOS Intel
├── codi-watcher-darwin-x86_64.sha256
├── codi-watcher-linux-arm64 # Linux ARM64
├── codi-watcher-linux-arm64.sha256
├── codi-watcher-linux-x86_64 # Linux x86_64
├── codi-watcher-linux-x86_64.sha256
├── codi-watcher-windows-x86_64.exe # Windows
└── codi-watcher-windows-x86_64.exe.sha256

Version Matrix

ComponentCurrent VersionLast Updated
codi-watcher binaryv0.4.02026-01-20
CODITECT-CORE-INITIAL-SETUP.pyv2.2.02026-01-20
CODITECT-DEVELOPER-SETUP.pyv2.0.02026-01-13
install.pyv1.0.02026-01-12
USER-QUICK-START.mdv5.0.02026-01-20
DEVELOPER-QUICK-START.mdv2.0.02026-01-13
CLAUDE.mdv2.9.02026-01-20
GCS-DISTRIBUTION-INDEX.mdv2.0.02026-01-20

Update History

DateComponentVersionChange
2026-01-20GCS-DISTRIBUTION-INDEX.md2.0.0Major rewrite with binaries, checksums
2026-01-20codi-watcher0.4.0Added all 5 platforms (darwin/linux/windows)
2026-01-20CODITECT-CORE-INITIAL-SETUP.py2.2.0Added MoE tools, platform.db (ADR-089)
2026-01-20CLAUDE.md2.9.0Updated for 13-step installation
2026-01-20USER-QUICK-START.md5.0.0Updated for v2.2.0 script
2026-01-14GCS-DISTRIBUTION-INDEX.md1.1.0Added script descriptions narrative
2026-01-13PILOT-DEVELOPER-INVITATION-EMAIL.md2.0.0Created
2026-01-13PILOT-INVITATION-EMAIL.md2.0.0Updated for v2.0.0 scripts
2026-01-13DEVELOPER-QUICK-START.md2.0.0Created
2026-01-13CODITECT-DEVELOPER-SETUP.py2.0.0Created
2026-01-13USER-QUICK-START.md5.0.0Updated for v2.0.0 script
2026-01-13CODITECT-CORE-INITIAL-SETUP.py2.0.0Major update to 10 steps
2026-01-12install.py1.0.0Curl installer wrapper
2026-01-12codi-watcher0.3.0Initial release (darwin-arm64 only)
2026-01-12GITHUB-CLI-USER-MANAGEMENT.md1.0.0Initial

Cache Control

All files are uploaded with cache-control headers to prevent CDN caching issues:

--cache-control="no-cache, no-store, max-age=0"

To force refresh after updates, clear browser cache or use:

curl -H "Cache-Control: no-cache" https://storage.googleapis.com/coditect-dist/...

Future: Authenticated Downloads

A landing page on auth.coditect.ai is planned to provide authenticated download access for approved users. This will:

  1. Require user registration and login
  2. Require admin approval for download access
  3. Provide signed URLs or proxied downloads
  4. Track download analytics per user

Until implemented, these public GCS URLs remain the primary distribution mechanism.


Bucket: gs://coditect-dist Owner: AZ1.AI INC Last Updated: 2026-01-20T08:00:00Z