Skip to content

Alpha 1.0.5

Choose a tag to compare

@marcuspat marcuspat released this 05 Jan 22:15
· 487 commits to main since this release
5170447

Turbo Flow Claude v1.0.5 Alpha Release Notes

Release Date: January 2025
Type: Feature Release


Overview

v1.0.5 brings comprehensive agent observability, multi-model AI support, and expanded alias coverage across all tools. This release focuses on giving developers better visibility into agent behavior and flexibility to use multiple AI models.


New Features

agtrace - Agent Observability

Local-first AI agent observability from Lanegrid. Monitor Claude Code, Codex, and Gemini CLI sessions with zero cloud dependencies.

  • Live TUI Dashboard - Real-time monitoring of agent activity, token usage, and costs
  • Session History - Browse and search across all agent sessions
  • MCP Integration - Agents can query their own execution history
  • Context Window Tracking - Visualize token consumption over time
agt-init      # Initialize in project
agt-watch     # Launch live dashboard
agt-sessions  # List all sessions
agt-grep      # Search across sessions

Claudish - Multi-Model Proxy

Access 100+ models through OpenRouter with a unified CLI interface.

  • Model Switching - Instantly switch between Grok, Gemini, GPT, Qwen, and more
  • OpenRouter Integration - Single API key for all models
  • Model Discovery - Browse and compare available models
claudish                 # Interactive mode
claudish-grok           # Use Grok
claudish-gemini         # Use Gemini
claudish-gpt            # Use GPT-4o
claudish-qwen           # Use Qwen
claudish-models         # List all models

Expanded Alias Coverage

91 aliases and 5 helper functions now included (up from 62 in v1.0.4).


Enhanced Tools

Agentic QE

New aliases for the full testing workflow:

aqe-init      # Initialize testing
aqe-generate  # Generate tests
aqe-flaky     # Hunt flaky tests
aqe-gate      # Quality gate check

Agentic Jujutsu

New aliases for repository analysis:

aj-status     # Repository status
aj-analyze    # Analyze repository

Spec-Kit

Full workflow coverage:

sk-const      # Define constitution
sk-spec       # Write specifications
sk-plan       # Create plan
sk-tasks      # Break into tasks
sk-impl       # Implement

AI Agent Skills

Complete skill management:

skills-info   # Get skill details
skills-update # Update skills
skills-remove # Remove skills

New Helper Functions

turbo-init

One-command workspace initialization:

turbo-init    # Initialize spec-kit + claude-flow

turbo-help

Quick reference for all commands:

turbo-help    # Show command reference

Alias Summary

Category Count New in v1.0.5
Claude Code 2 -
Claude Flow 7 -
Agentic Flow 4 -
Agentic QE 6 +4
Agentic Jujutsu 3 +2
Claude Usage 2 -
Spec-Kit 9 +5
OpenSpec 8 -
agtrace 6 +6 (new)
Claudish 7 +7 (new)
AI Agent Skills 7 +3
MCP Servers 3 -
PAL MCP 2 -
Tmux 30 -
Total Aliases 91 +29
Functions 5 +2

Configuration

agtrace

No configuration required. Initialize in any project with agt-init.

Claudish

Set your OpenRouter API key:

export OPENROUTER_API_KEY='sk-or-v1-...'

Known Issues

  • claudish requires OpenRouter API key (free tier available)
  • agtrace watch requires terminal with TUI support
  • Some tmux aliases may conflict with existing shell aliases

What's Next (v1.0.6)

  • Enhanced MCP server configuration UI
  • Automated skill recommendations based on project type
  • Integration with Claude Projects
  • Performance profiling for agent sessions

Contributors

Thanks to the teams behind:


Feedback

Report issues or request features:

  • GitHub Issues: https://github.com/marcuspat/turbo-flow-claude/issues
  • Use 👍/👎 in Claude to provide feedback

Full Changelog: v1.0.4...v1.0.5

# Turbo Flow Claude v1.0.5 Alpha Release Notes

Release Date: January 2025
Type: Feature Release


Overview

v1.0.5 brings comprehensive agent observability, multi-model AI support, and expanded alias coverage across all tools. This release focuses on giving developers better visibility into agent behavior and flexibility to use multiple AI models.


New Features

agtrace - Agent Observability

Local-first AI agent observability from Lanegrid. Monitor Claude Code, Codex, and Gemini CLI sessions with zero cloud dependencies.

  • Live TUI Dashboard - Real-time monitoring of agent activity, token usage, and costs
  • Session History - Browse and search across all agent sessions
  • MCP Integration - Agents can query their own execution history
  • Context Window Tracking - Visualize token consumption over time
agt-init      # Initialize in project
agt-watch     # Launch live dashboard
agt-sessions  # List all sessions
agt-grep      # Search across sessions

Claudish - Multi-Model Proxy

Access 100+ models through OpenRouter with a unified CLI interface.

  • Model Switching - Instantly switch between Grok, Gemini, GPT, Qwen, and more
  • OpenRouter Integration - Single API key for all models
  • Model Discovery - Browse and compare available models
claudish                 # Interactive mode
claudish-grok           # Use Grok
claudish-gemini         # Use Gemini
claudish-gpt            # Use GPT-4o
claudish-qwen           # Use Qwen
claudish-models         # List all models

Expanded Alias Coverage

91 aliases and 5 helper functions now included (up from 62 in v1.0.4).


Enhanced Tools

Agentic QE

New aliases for the full testing workflow:

aqe-init      # Initialize testing
aqe-generate  # Generate tests
aqe-flaky     # Hunt flaky tests
aqe-gate      # Quality gate check

Agentic Jujutsu

New aliases for repository analysis:

aj-status     # Repository status
aj-analyze    # Analyze repository

Spec-Kit

Full workflow coverage:

sk-const      # Define constitution
sk-spec       # Write specifications
sk-plan       # Create plan
sk-tasks      # Break into tasks
sk-impl       # Implement

AI Agent Skills

Complete skill management:

skills-info   # Get skill details
skills-update # Update skills
skills-remove # Remove skills

New Helper Functions

turbo-init

One-command workspace initialization:

turbo-init    # Initialize spec-kit + claude-flow

turbo-help

Quick reference for all commands:

turbo-help    # Show command reference

Alias Summary

Category Count New in v1.0.5
Claude Code 2 -
Claude Flow 7 -
Agentic Flow 4 -
Agentic QE 6 +4
Agentic Jujutsu 3 +2
Claude Usage 2 -
Spec-Kit 9 +5
OpenSpec 8 -
agtrace 6 +6 (new)
Claudish 7 +7 (new)
AI Agent Skills 7 +3
MCP Servers 3 -
PAL MCP 2 -
Tmux 30 -
Total Aliases 91 +29
Functions 5 +2

Installation

New Installations

devpod up https://github.com/marcuspat/turbo-flow-claude --ide vscode

Existing Installations

Update aliases by re-running setup or sourcing the new aliases file:

# Option 1: Re-run setup
cd /workspaces/turbo-flow-claude/devpods && ./setup.sh

# Option 2: Source updated aliases
curl -sSL https://raw.githubusercontent.com/marcuspat/turbo-flow-claude/main/devpods/aliases.sh > ~/.turbo-aliases.sh
source ~/.turbo-aliases.sh

Breaking Changes

None. All existing aliases remain unchanged.


Dependencies Added

Package Type Purpose
@lanegrid/agtrace npm Agent observability
claudish npm Multi-model proxy

Configuration

agtrace

No configuration required. Initialize in any project with agt-init.

Claudish

Set your OpenRouter API key:

export OPENROUTER_API_KEY='sk-or-v1-...'

Known Issues

  • claudish requires OpenRouter API key (free tier available)
  • agtrace watch requires terminal with TUI support
  • Some tmux aliases may conflict with existing shell aliases

What's Next (v1.0.6)

  • Enhanced MCP server configuration UI
  • Automated skill recommendations based on project type
  • Integration with Claude Projects
  • Performance profiling for agent sessions

Contributors

Thanks to the teams behind:


Feedback

Report issues or request features:


Full Changelog: v1.0.4...v1.0.5