Pilot Shell: A Structured Workflow Layer for Claude Code

Pilot Shell is an open-source layer installed on top of Claude Code that enforces structured workflows for planning, fixing, and brainstorming. It addresses common pain points like skipped tests, lost context, and inconsistent output while avoiding the overhead of frameworks that require dozens of agents or thousands of config lines.
Key Components
/spec— Plans, implements, and verifies features end-to-end with TDD./fix— Bugfix workflow with TDD; bails out when complexity exceeds the standard fix lane./prd— Brainstorms ideas into clear requirements with optional deep research.- Quality hooks — Enforce linting, formatting, type checking, and tests as quality gates.
- Context engineering — Preserves decisions and knowledge across sessions.
- Code intelligence — Semantic search (Probe) + code knowledge graph (CodeGraph).
- Token optimization — 60–90% cost reduction via RTK and context-mode.
- Extensions — Reusable rules, skills, and MCP servers with team sharing and customization.
- Console — Local web dashboard with real-time notifications and session management.
- Pilot Bot — Persistent automation agent with scheduled tasks and background jobs.
Installation
Works on macOS, Linux, and Windows (WSL2). Installs globally with a single command:
curl -fsSL https://raw.githubusercontent.com/maxritter/pilot-shell/main/install.sh | bash
All tools and rules go to ~/.pilot/ and ~/.claude/. After installation, run pilot or ccp in any project directory.
Who It's For
Developers who already use Claude Code and want structured, repeatable workflows without switching to a heavy agent framework.
📖 Read the full source: r/ClaudeAI
👀 See Also

Strale.io offers free IBAN and email validation API for AI agents with no signup
Strale.io provides a free API with five capabilities including IBAN validation, email validation, DNS lookup, URL-to-markdown conversion, and JSON repair. No signup or API key is required, and it includes an MCP server for Claude or Cursor integration.

MCP Gateway for Secure Remote Access to Internal Tools
An open-source MCP gateway aggregates multiple MCP tool servers into a single connection, enabling secure access via Claude Desktop without exposing public endpoints. It uses OpenZiti/zrok for zero-trust networking and requires only one configuration entry with a share token.

Code Evolution Method Triples LLM Performance on ARC-AGI-2 Benchmark
Researchers achieved a 2.8x improvement on the ARC-AGI-2 benchmark using code evolution with open-weight models, reaching 34% accuracy at $2.67 per task. The same method pushed Gemini 3.1 Pro to 95% accuracy at $8.71 per task.

RouteLLM Setup for Cost-Effective AI Task Routing
A Reddit user shares a Docker Compose configuration that combines Ollama's local Qwen3.5:4b model with GitHub Copilot via OpenWire, using RouteLLM to route complex tasks to GPT-4o while handling simpler tasks locally.