Skip to content

Releases: qf-studio/pilot

pilot v0.13.6

03 Feb 18:39

Choose a tag to compare

Use ASCII symbols instead of emojis for TUI consistency.

Changelog

🚀 Features

pilot v0.13.5

03 Feb 18:36

Choose a tag to compare

Update notification now uses bordered panel style matching other dashboard sections.

Changelog

🚀 Features

pilot v0.13.4

03 Feb 18:28

Choose a tag to compare

Test release for hot reload feature. Press 'u' in dashboard to upgrade!

Changelog

🐛 Bug Fixes

pilot v0.13.3

03 Feb 18:26

Choose a tag to compare

Fix

  • Reduce version check interval from 30 minutes to 5 minutes
  • Updates now detected faster in dashboard

Test Hot Reload

  1. Run pilot upgrade to get v0.13.3
  2. Restart dashboard: pilot start --dashboard --telegram --github
  3. Wait for next release or restart to see update notification
  4. Press 'u' to hot reload

Changelog

🐛 Bug Fixes

pilot v0.13.2

03 Feb 18:02

Choose a tag to compare

Documentation

  • Add llm_classifier config to example (enables Claude Haiku intent detection)
  • Add rate_limit config to example
  • Clarify API key falls back to ANTHROPIC_API_KEY env var

Upgrade

Dashboard should show update notification. Press 'u' to hot reload!

Changelog

📚 Documentation

pilot v0.13.1

03 Feb 17:54

Choose a tag to compare

Bug Fix

  • Dashboard SQLite persistence: Wire store to dashboard for token usage and history persistence across restarts
  • GoReleaser v2: Fix release workflow to use GoReleaser v2

Upgrade

pilot upgrade

Changelog

🐛 Bug Fixes

v0.13.0 - LLM Intent Classification & Documentation

03 Feb 17:22
cba9182

Choose a tag to compare

What's New

🤖 LLM Intent Classification (GH-358)

  • Telegram messages now classified using Claude Haiku
  • Accurate detection of Chat, Question, Research, Planning, and Task intents
  • Conversation context preserved for better classification

📚 Documentation Sites

  • Nextra (GH-366): Modern Next.js documentation at /docs
  • MkDocs (GH-361): Alternative Material theme docs
  • Version Sync (GH-360): Auto-sync docs on release

🛡️ Quality Improvements

  • Pre-commit Verification (GH-362): Claude verifies completeness before committing
  • Self-review Phase (GH-364): Automated code review before PR creation
  • Auto Build Gate (GH-363): Minimal build gate when quality gates not configured

🔄 Hot Reload (GH-369)

  • Dashboard detects new releases
  • Press 'u' to upgrade without stopping

🔧 Other Changes

  • GoReleaser integration (GH-359)
  • SQLite WAL mode for concurrent access
  • Removed deprecated CLI flags (--no-pr, --direct-commit, --parallel)

Upgrade

pilot upgrade

Or fresh install:

curl -fsSL https://raw.githubusercontent.com/alekspetrov/pilot/main/install.sh | bash

v0.12.1

03 Feb 08:47

Choose a tag to compare

Bug Fixes

  • Fix upgrade fetching stale release due to GitHub API caching

v0.12.0

03 Feb 08:42

Choose a tag to compare

Features

  • Linear PR link-back notifications (GH-323)

Bug Fixes

  • Make WaitForCI non-blocking to prevent pipeline stalls (GH-320)
  • Gateway mode respects CLI flag exclusivity (GH-351)
  • Validate deliverables before marking issues as done

v0.11.15

03 Feb 05:35

Choose a tag to compare

Fix: Dashboard in gateway mode (GH-351)

Dashboard was hanging on startup because program.Send() was called before program.Run() started, causing a deadlock.

Before (broken)

pilot start --telegram --github --linear --dashboard
# Hangs forever, no TUI appears

After (fixed)

pilot start --telegram --github --linear --dashboard
# TUI dashboard appears correctly

Upgrade

pilot upgrade