Alpha 1.0.2
Release Notes: Turbo Flow Advanced Agentic Development Environment Alpha 1.0.2
This release provisions a complete, automated development environment for the Claude Flow and Agentic Flow agentic frameworks. It includes core tool installation, expanded CLI support, cloud integration, an interactive project configuration wizard, and a pre-configured tmux workspace for immediate productivity.
Core Environment & Setup (setup.sh)
This script bootstraps the entire development environment.
-
Core Frameworks:
- Installs
@anthropic-ai/claude-code(v2.7.0+ compatible). - Installs
claude-flow@alphaand initializes a new project in the workspace. - Installs
agentic-flowfor multi-model agent execution.
- Installs
-
Monitoring & Tooling:
- Installs the
uvPython package manager. - Installs
claude-monitorfor real-time token and usage tracking. - Installs
direnvfor automatic environment variable management.
- Installs the
-
Additional CLI Tool Support:
- The
setup.shscript now includes installers for several other popular AI and developer CLIs. Direnvis installed by default.- The following tools are included as commented-out lines, allowing for easy manual installation by editing the script:
opencode-ai@google/gemini-cli@just-every/codeterminal-jarvis@vibe-kit/grok-clirun-deepseek-cli@openai/codex
- The
-
Browser Automation (MCP):
- Upgrades Playwright installation from a simple
npm installto being installed and registered as a first-class MCP (Model Context Protocol) server (@playwright/mcp). - Installs and registers two other key MCP servers for AI-driven browser tasks:
chrome-devtools-mcpmcp-chrome-bridge
- Upgrades Playwright installation from a simple
-
Project Scaffolding:
- Creates a standard
package.json(as"type": "module") andtsconfig.json. - Builds a standard project directory structure (
src,tests,docs, etc.).
- Creates a standard
-
Agent & Configuration:
- Clones and installs over 610 pre-defined sub-agent prompts from the
610ClaudeSubagentsrepository. - Installs custom agents, including
doc-planner.mdandmicrotask-breakdown.md. - Replaces the default
CLAUDE.mdwith a custom, project-specific configuration file. - The new Turbo-Flow Wizard allows Claude to optiimize your CLAUDE.md based upon your answers.
- Clones and installs over 610 pre-defined sub-agent prompts from the
-
Shell Integration & Aliases:
- Updates
~/.bashrcwith a comprehensive set of 200+ aliases forclaude-flow(cf-*) andagentic-flow(af-*), including full support for the new v2.7.0+ ReasoningBank commands. - Creates
cf-with-context.shandaf-with-context.shwrapper scripts to automatically injectCLAUDE.mdand agent context into commands.
- Updates
-
Deployment:
- Adds support for Rackspace Spot Instances, enabling cost-effective cloud-based development and deployment.
New Feature: Turbo Flow Wizard (Project Scaffolding)
This release introduces the turbo-flow-wizard.sh, an interactive tool to automate project-specific configuration.
- Interactive Setup: Guides the user through a series of questions to define project scope.
- Deep Configuration: Covers:
- 12 Application Types (Web, API, Mobile, ML, etc.)
- Technology Stacks (React, Node, Python, Go, etc.)
- 7 Development Methodologies (SPARC, TDD, BDD, etc.)
- 19 Selectable Features (Auth, CI/CD, Docker, etc.)
- Automatic Merging:
- Generates a temporary
CLAUDE.prefile based on user answers. - Automatically uses the Claude CLI to merge the new
CLAUDE.prewith the existingCLAUDE.md, instantly tailoring the AI's core instructions to the new project.
- Generates a temporary
Verification (post-setup.sh)
A health-check script that runs after setup to ensure all critical components are correctly installed and available.
- ✅ Verifies that the
claudeCLI is in the system path. - ✅ Verifies that the
claude-monitorCLI is in the system path. - ✅ Confirms that the
$AGENTS_DIRis populated with.mdagent files. - ✅ Checks for the existence of the main
CLAUDE.mdconfiguration file in the workspace.
Developer Experience (tmux-workspace.sh)
This script automatically provisions a tmux session named claude-dev to launch all necessary services and organize the workspace for maximum productivity.
- Window 1 (dev-1):
- A clean shell prompt for agentic development, testing, and file management.
- Window 2 (dev-2):
- A second clean shell prompt for agentic development, allowing for parallel tasks.
- Window 3 (monitor):
- Runs
claude-monitorfor a persistent, real-time view of AI token usage and costs.
- Runs
- Window 4 (htop):
- Runs
htopto monitor system processes and resource consumption.
- Runs
To use, simply attach to the session:
tmux attach-session -t claude-dev