← irvcassio.com
Workflow Edition — Part 2

The AI Enthusiast

Claude Hub, Gas Town, Hive orchestration, and Claude Code's new autonomous capabilities
Irv Cassio • March 2026
02

Last Week Recap

Part 1 covered the foundation: parallel sessions, skills as reusable workflows, multi-profile setup, and the compound-engineering plugin. This week we go deeper — tooling, orchestration frameworks, and new Claude Code features that push us closer to fully autonomous workflows.

🖥
Multi-Session
Parallel Claude Code instances across terminal tabs — different projects, models, and roles running simultaneously.
Skills & Plugins
Reusable SKILL.md workflows, slash commands, and the compound-engineering plugin with 29 specialized agents.
Part 1 available at: AI Enthusiast — Workflow Edition

03

Claude Hub — Spyder Spann

Spyder Spann shared Claude Hub, a tool he's building that provides a centralized overview of your entire Claude Code environment. It surfaces project configurations, skills, plugins, and session state in a single dashboard.

🌐
Environment Overview
See all your Claude Code projects at a glance — which skills and plugins are loaded per project, configuration files, and environment state. Easily view or modify configs without digging through dotfiles.
📄
Session Tab Status
Builds on the multi-session concept — tabs color-change based on execution stats. At a glance, see which sessions are active, idle, or waiting for input. Visual feedback for parallel workflows.
Config Management
Browse and edit CLAUDE.md, settings.json, .mcp.json, and skill files directly from the Hub. Add skills or plugins to any environment without switching contexts.
🔗
Azure DevOps Integration
Pull tasks from Azure DevOps directly into the Hub, work on them in Claude Code, and push status updates back. Bridges project management with agentic development.

04

Gas Town — Levels of Agentic Dev

Steve Yegge's "Welcome to Gas Town" framework defines the levels of software development in the age of AI agents — from manual coding to full agent orchestration. A roadmap for where we are and where we're going.

5
Agent Orchestration
Fully autonomous agent swarms — agents managing agents, self-healing systems, continuous deployment
FRONTIER
4
Agentic Coding
AI agents write and ship code autonomously — multi-step workflows, tool use, git operations
WE ARE HERE
3
AI-Assisted Coding
Copilot-style autocomplete, inline suggestions, chat-based code generation
2
IDE Power User
Refactoring tools, snippets, linting, type checking — human-driven tooling
1
Manual Coding
Text editor, terminal, pure human effort
Key insight: Most teams are at Level 3 (AI-assisted). Claude Code with skills, sub-agents, and multi-session puts us firmly at Level 4 (agentic coding). The jump to Level 5 (orchestration) requires agents that can manage other agents autonomously — which is exactly what tools like Hive and Claude Hub are pushing toward.
Resources
LinkDescription
Gas Town Article Steve Yegge's original blog post on the levels of agentic development
SE Daily Podcast Interview with Steve Yegge — Gas Town, beads, and the rise of agentic development

Deep Dive
Gas Town & Agent Orchestration
The transition from Level 4 to Level 5, what orchestration looks like in practice
The Transition

From Agentic Coding to Orchestration

Level 4 (where we are) means a single agent that can write, test, and ship code autonomously. Level 5 means agents managing agents — an orchestration layer that decomposes work, delegates to specialized agents, monitors progress, and handles failures.

🛠
Level 4: Today
Human defines the task. Agent executes it end-to-end with tools, sub-agents, and skills. Human reviews output.

Example: /lfg "add dark mode to settings page" — Claude brainstorms, plans, codes, reviews, ships.
🚀
Level 5: Tomorrow
Human defines the goal. Orchestrator decomposes into tasks, assigns to agent pool, monitors execution, handles retries and conflicts.

Example: "Ship v2.0 of the app" — orchestrator manages dozens of parallel agents across features, testing, deployment.
Yegge's argument: The tooling for Level 5 is emerging now — background agents, scheduled tasks, Kanban-style orchestration. The gap isn't capability, it's coordination. The agent can do the work; we need the systems to tell it which work.

05

Hive — Lightweight Agent Orchestration

A Kanban-based orchestration system I started building this week. Hive treats agent tasks as cards that flow through stages — Backlog, Assigned, In Progress, Review, Done, Failed. Lightweight coordination for multi-agent workflows.

Hive Kanban board showing task cards in Review and Done columns
📋
Kanban Board
Visual task tracking with columns: Backlog → Assigned → In Progress → Review → Done / Failed. Each card shows project tag, cost, turn count, and elapsed time.
Workflow Tracking
Each task card tracks its workflow path: S → P → W (Spec → Plan → Work). See exactly where each task is in the development lifecycle.
Hive task detail view showing brainstorm output and action buttons
Task Detail View
Each task card expands to show full context: brainstorm output, key decisions, workflow state, cost tracking, and action buttons (Approve, Reject, Resume).
Multi-Project Support
Tags like HIVE and CANOPY identify which project each task belongs to. Filter and prioritize across your entire portfolio.
Why Kanban for agents? Agents need the same workflow discipline as human teams. Without it, you get unbounded parallelism, lost context, and duplicated work. Hive provides lightweight guardrails — just enough structure to keep autonomous agents productive without micromanaging them.

Deep Dive
🎓
Hive Architecture & Design
Kanban model, task lifecycle, workflow integration, and the path to Level 5
Task Lifecycle

Kanban for Agents

Every task in Hive follows a defined lifecycle. Cards move through columns as agents work on them, providing visibility into what's happening across all sessions.

Backlog
Queued
Assigned
Agent claimed
In Progress
Working
Review
Human check
Done
Shipped
Task Card Data
FieldPurpose
Project tagWhich project this task belongs to (HIVE, CANOPY, etc.)
Elapsed timeHow long the agent has been working on this task
CostAPI cost consumed by the agent session
TurnsNumber of agent conversation turns
Workflow pathS → P → W tracking (Spec, Plan, Work phases)
Session IDLinks back to the Claude Code session for resume
Connecting to Gas Town: Hive is a stepping stone toward Level 5. Today it's a visibility layer — you can see what agents are doing. Next: the orchestrator assigns tasks from the backlog, monitors progress, and automatically escalates failures. The Kanban model naturally supports this evolution.

06

Claude Code — New Autonomous Features

Anthropic shipped two significant features this week that push Claude Code toward always-on autonomous operation: the /loop background worker and scheduled tasks in Cowork/Desktop.

🔄
/loop — Background Worker NEW
The /loop command turns Claude Code into a background worker. Set a cron-style schedule (minutes, hours, days) and Claude runs recurring jobs locally while the app is open.
Use cases:
PatternExample
Periodic checks/loop 5m /babysit-prs — check PR status every 5 minutes
Data sync/loop 1h /import_all — run data imports hourly
Monitoring/loop 10m "check deploy status" — poll deployment health
Read: Anthropic turns Claude Code into a background worker →
📅
Scheduled Tasks in Cowork NEW
Cron-like scheduled tasks in Cowork and Claude Desktop. Set up recurring and on-demand tasks that run automatically — daily, weekly, or monthly — without keeping a terminal open.
What's different from /loop:
Feature/loopCowork Scheduled Tasks
RuntimeLocal, requires app openCloud-hosted, runs independently
InterfaceCLI commandDesktop/Cowork UI
SchedulingInterval-based (every Nm)Calendar-based (daily/weekly/monthly)
Best forQuick polling, dev-time tasksRecurring business workflows
Release notes: Scheduled tasks in Cowork →
Simon Willison: Claude Code remote control →
Tom's Guide: Hands-on with Claude Cowork →
Why this matters: These features close the gap between Level 4 and Level 5. With /loop, Claude Code becomes a daemon. With scheduled tasks, it becomes infrastructure. Combined with Hive-style orchestration, you get agents that work while you sleep.

Deep Dive
🔄
/loop & Scheduled Tasks Details
How /loop works, scheduling patterns, combining with skills and Hive
/loop Deep Dive

Claude Code as a Background Worker

The /loop command accepts a time interval and a prompt or slash command. Claude executes it on schedule, accumulating results in the session. Think of it as cron for your AI agent.

Example Patterns
# Check PR status every 5 minutes
/loop 5m /babysit-prs

# Run data imports every hour
/loop 1h /import_all

# Check deploy every 10 minutes (default interval)
/loop "check if staging deploy succeeded"

# Daily code quality scan
/loop 24h "run linting and report issues"
Combining /loop with Hive: Imagine /loop 5m "check Hive backlog, pick next task, execute it" — the agent becomes a worker that pulls from the Kanban queue automatically. This is the orchestration pattern that bridges Level 4 and Level 5.

Scheduled Tasks

Cowork & Desktop Scheduling

Unlike /loop which requires the CLI to stay open, Cowork scheduled tasks run independently in the cloud. Set up recurring workflows that execute on a calendar schedule.

Daily
Morning standup summary, overnight PR review, data freshness checks, security scan results digest.
Weekly
Dependency updates, performance regression reports, documentation sync, changelog generation.
Monthly
License audits, architecture drift analysis, cost optimization reviews, tech debt triage.
On-Demand
Triggered by events — new PR opened, deployment completed, incident detected. Reactive automation.

07

Putting It All Together

The tools and concepts from both weeks converge into a unified autonomous workflow. Here's how the pieces connect.

Claude Hub
Visibility
Hive
Orchestration
/loop
Execution
Skills
Capability
Level 5
Autonomous
🌐
Claude Hub
See all your environments, sessions, configs. Pull tasks from Azure DevOps or other PM tools. The dashboard for your agent fleet.
📋
Hive
Kanban orchestration layer. Tasks flow through stages with cost tracking and workflow visibility. The coordination system.
🔄
/loop + Scheduled
Background workers and cron-style scheduling. Agents run continuously, pulling work from the backlog. The execution engine.
Skills + Sub-Agents
Reusable workflows, specialized agents, compound-engineering plugin. The capabilities that make each agent effective.
The vision: A task enters the backlog (via Claude Hub, Azure DevOps, or manual entry). Hive assigns it to an available agent. The agent runs the appropriate skill pipeline (brainstorm → plan → work → review). /loop keeps the queue moving. Scheduled tasks handle recurring maintenance. Humans review and approve. The system compounds its own knowledge.

08

Resources & Links

Gas Town & Agentic Development
ResourceLink
Welcome to Gas Town (Steve Yegge) Medium article
SE Daily Podcast — Gas Town & Beads Podcast episode
Claude Code New Features
ResourceLink
Claude Code as background worker (/loop) The Decoder
Scheduled tasks in Cowork Release notes
Claude Code remote control Simon Willison
Hands-on with Claude Cowork Tom's Guide
Previous Presentations
ResourceLink
AI Enthusiast — Workflow Edition (Part 1) View presentation