← Back to Supertag CLI

Changelog

All notable changes to Supertag CLI are documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

v1.12.2 — 2026-01-21

Fixed

v1.12.1 — 2026-01-21

Fixed

v1.12.0 — 2026-01-21

Added

v1.11.0 — 2026-01-19

Added

Fixed

v1.10.0 — 2026-01-18

Added

v1.9.8 — 2026-01-17

Added

v1.9.7 — 2026-01-17

Fixed

v1.9.6 — 2026-01-17

Fixed

v1.9.5 — 2026-01-12

Fixed

Added

v1.9.4 — 2026-01-12

Fixed

v1.9.3 — 2026-01-11

Fixed

v1.9.2 — 2026-01-11

Fixed

v1.9.1 — 2026-01-09

Fixed

v1.9.0 — 2026-01-08

Added

v1.8.3 — 2026-01-08

Fixed

v1.8.2 — 2026-01-08

Fixed

v1.8.1 — 2026-01-08

Fixed

v1.8.0 — 2026-01-08

Added

Fixed

v1.7.1 — 2026-01-07

Added

v1.7.0 — 2026-01-07

Added

v1.6.4 — 2026-01-06

Fixed

v1.6.3 — 2026-01-05

Fixed

v1.6.2 — 2026-01-05

Fixed

v1.6.1 — 2026-01-05

Fixed

v1.6.0 — 2026-01-04

Added

Fixed

v1.4.1 — 2026-01-03

Fixed

v1.4.0 — 2026-01-03

Added

v1.3.4 — 2026-01-01

Fixed

v1.3.3 — 2026-01-01

Added

Changed

v1.3.2 — 2025-12-30

Fixed

v1.3.1 — 2025-12-30

Added

v1.3.0 — 2025-12-28

Added

v1.2.3 — 2025-12-28

Fixed

v1.2.2 — 2025-12-27

Changed

Added

Fixed

v1.2.1 — 2025-12-26

Fixed

v1.2.0 — 2025-12-26

Added

Fixed

Upgrade Notes

Re-embedding recommended for transcript functionality:

If you want semantic search to include transcript content, regenerate your embeddings:

# Default: transcripts excluded (recommended for most users)
supertag embed generate

# Include transcripts in semantic search (90K+ additional nodes)
supertag embed generate --include-transcripts

Transcript-specific search is always available via supertag transcript search regardless of embedding settings

v1.1.1 — 2025-12-24

Added

v1.1.0 — 2025-12-24

Added

Fixed

v1.0.2 — 2025-12-23

Added

Changed

Fixed

v1.0.0 — 2025-12-23

BREAKING CHANGES

This is a major version release with significant CLI restructuring. Legacy commands have been removed.

Removed Commands (use new equivalents):

Added

CLI Harmonization - New Unified Commands

New commands following the object action pattern for consistency and discoverability:

Webhook Server RESTful API (T-4)

New RESTful endpoints with consistent API design:

Deprecated webhook endpoints (still functional, marked for removal):

Changed

v0.13.4 — 2025-12-21

Fixed

v0.13.3 — 2025-12-21

Changed

v0.13.2 — 2025-12-21

Changed

v0.13.1 — 2025-12-21

Added

Changed

v0.13.0 — 2025-12-20

Added

Fixed

v0.12.0 — 2025-12-20

Removed

Changed

Notes

v0.11.5 — 2025-12-18

Changed

Removed

Migration Guide

  1. Update to latest version
  2. Run supertag embed generate to regenerate embeddings in LanceDB format
  3. Previous SQLite embeddings can be safely deleted from workspace databases

v0.11.5 — 2025-12-14

Added

Fixed


v0.11.4 — 2025-12-13

Fixed


v0.11.3 — 2025-12-13

Added

Improved

Example

# Create todo with children and inline reference
supertag create todo "Meeting with <span data-inlineref-node=\"abc123\">John</span>" \
  --children "First subtask" \
  --children '{"name": "Assigned to", "id": "person123"}'

v0.11.2 — 2025-12-13

Added

Multi-Workspace Webhook Server

Usage

Start server (serves all configured workspaces):

supertag server start --daemon

Query specific workspace:

# GET endpoints: use query param
curl "http://localhost:3000/stats?workspace=work"

# POST endpoints: include in body
curl -X POST http://localhost:3000/search \
  -H "Content-Type: application/json" \
  -d '{"query": "meeting", "workspace": "personal"}'

v0.11.1 — 2025-12-13

Fixed

Embedding Dimension Mismatch Bug

How to Fix Affected Workspaces

If you configured embeddings before v0.11.1 and got dimension mismatch errors:

supertag embed config --fix -w <workspace>
supertag embed generate -w <workspace>

v0.11.0 — 2025-12-13

Added

Entity Detection

Semantic Search MCP Tool

Database Improvements

Test Suite Improvements

Changed

Workspace Discovery Refactoring


v0.10.1 — 2025-12-12

Changed

Centralized Version Management

Fixed


v0.10.0 — 2025-12-12

Added

Search Result Filtering & Deduplication

Entity Stats in filter-stats Command

Database Path in Stats

Changed

Short Text Embedding Support

Fixed

Entity Detection Using _flags from Export

Content Filter Entities Bypass Length

Embedding Schema Migration Safety


v0.9.9 — 2025-12-12

Fixed

Webhook Server Bug Fixes


v0.9.8 — 2025-12-12

Fixed

Semantic Search Improvements


v0.9.7 — 2025-12-12

Changed

Database Lock Retry Logic


v0.9.6 — 2025-12-11

Added

Contextualized Embeddings

Changed


v0.9.5 — 2025-12-11

Added

Multi-Workspace Embedding Support

Improved Embedding Generation

Changed

Increased Default Minimum Length to 15 Characters

Fixed

Embedding Vector Corruption Bug


v0.9.4 — 2025-12-11

Added

MCP Semantic Search Tool

Smart Content Filtering for Embeddings

New CLI Options for embed generate

Rich Display for Semantic Search Results

Changed


v0.9.3 — 2025-12-11

Added

Supported Embedding Models

Technical Notes


v0.9.2 — 2025-12-11

Changed

Documentation Improvements


v0.9.1 — 2025-12-11

Added

Date Range Filtering for Queries


v0.9.0 — 2025-12-10

Added

MCP Server for AI Tool Integration

Reference Support in Node Creation

Fixed

Export Format Compatibility

Configuration Namespace


v0.8.0 — 2025-12-08

Added

Release Automation

Export Cleanup

Depth Traversal

Changed


v0.7.0 — 2025-12-06

Added

LemonSqueezy License System

Cross-Platform Support

Changed


v0.6.0 — 2025-12-04

Added

Multi-Workspace Support

Unified CLI Architecture

Changed


v0.5.0 — 2025-12-01

Added

Export Automation

Query Engine

Write Capability

Webhook Server

Performance


Supertag CLI is developed by InVisible GmbH, Switzerland.