From Pair Programming to Full Automation: Claude Code Orchestrator Pattern Dramatically Boosts Development Speed
Henry Inc. engineer implements advanced Claude Code Skills usage. Orchestrator-pattern Skills with SubAgents and Review Agents fully automate info gathering → design → implementation → PR creation. Real-world case study of freeing time for domain knowledge learning.
Most engineers using AI coding assistants remain in “pair programming” mode: humans stay beside the AI, reviewing generated code and continuously providing next instructions.
However, software engineer warabi at Henry Inc. achieved a shift to full automation using Claude Code’s Skills feature. This case study reveals next-generation AI coding tool usage patterns.
Why Move Beyond Pair Programming?
Henry Inc. develops products for the healthcare industry. warabi’s team needs to understand complex domain-specific medical knowledge, but implementation work also demands time. Time allocation was the challenge.
Problems with traditional Claude Code usage (pair programming mode):
- Must review AI code changes in real-time
- Must read generated code each time to continue conversation
- Humans can’t step away from the AI
To solve this, warabi sought to reduce implementation time and increase domain knowledge learning time.
Breaking Down Development Flow and Identifying Automatable Areas
warabi first decomposed the typical workflow into 3 phases, 7 steps.
The analysis revealed that beyond the “planning” and “implementation” steps previously done via pair programming, 4 total steps were fully automatable, including “information gathering” and “PR creation.”
Automation target steps:
- Information gathering (related code, documentation)
- Design (architecture, implementation strategy)
- Implementation (code generation)
- PR creation (pull request creation)
Strategic Skills Usage - Why CLAUDE.md Isn’t Enough
Claude Code has CLAUDE.md (project configuration file), but writing the entire workflow there compresses the context window.
CLAUDE.md loads at every conversation start, so longer procedures increase the probability of incorrect instruction execution.
Skills feature advantages:
- Define workflows like procedure manuals
- Load only when needed (context savings)
- Explicitly specify what to reference, what decisions to make, and what output to expect at each step
Division of roles between CLAUDE.md and Skills:
- CLAUDE.md: Project prerequisites (always loaded)
- Skills: Work procedures (loaded only when needed)
This separation is key to transitioning from pair programming to automation.
Orchestrator-Pattern Skill Design - Independent Step Execution via SubAgents
Cramming all steps into one Skill causes context bloat again. warabi adopted the Orchestrator pattern.
Architecture:
- Parent Skill (Orchestrator): Manages call sequence for each step
- Child Skills (SubAgents): Execute each step in independent context
Importance of SubAgent feature: Mechanism to run child agents in context independent from parent agent. Each step executes as a SubAgent, so context resets per step.
Benefits:
- Each Skill can execute its assigned step’s procedures in small context
- Easy to modify or replace individual steps
- Avoids context compression
Context management technique: Info-gathering and design agents save results as files and simply tell the Orchestrator “processing complete.” The Orchestrator doesn’t need to load entire investigation results, preventing context bloat.
Review Agent Feedback Loop - Quality Assurance Mechanism
warabi further added a Review Agent to raise quality.
Mechanism:
- Work agent generates output
- Review Agent reviews output
- If issues exist, reports to Orchestrator
- Orchestrator requests fixes from work agent
- Loop within limit count
This replicates the human development process of “implement → code review → fix” between agents.
Effect: warabi reports “quite a few PRs can be merged without fixes.”
Final Workflow
dev Skill (Orchestrator) execution flow:
- User specifies task ID
- Orchestrator confirms task content
- Final human confirmation (only human intervention here)
- Fully automated thereafter:
- Info gathering Agent → Review Agent
- Design Agent → Review Agent
- Implementation Agent → Review Agent
- PR creation Agent → Review Agent
- Loop until passing review at each step
Human role:
- Final task content confirmation (at start)
- PR review (after completion)
During implementation, VS Code can be backgrounded while spending time on other task research.
Pair Programming vs Full Automation - Comparison Results
warabi’s own comparison:
| Aspect | Before (Pair Programming) | After (Full Auto) | Assessment |
|---|---|---|---|
| Time freed | ☓ | ◎ | Can background after final confirmation. Many PRs merge without fixes |
| Development speed | ◯ | ◎ | Work + Review Agent combo maintains quality |
| Implementation understanding | ◎ | ◯ | Pair programming allowed detailed questions. But PR review compensates for understanding |
Overall evaluation:
- Successfully secured domain knowledge learning time
- Development speed also improved
- Implementation understanding slightly decreased but compensable through PR review
Evolution Stages of AI Coding Tool Usage
This case reveals 3 stages of AI coding tool usage.
Stage 1: Completion-based
- Code completion, partial generation
- Humans maintain full control
Stage 2: Pair Programming
- Conversational development with AI
- Real-time feedback
- Humans must stay beside AI
Stage 3: Automation
- Fully automatic after task specification
- Orchestrator + SubAgent + Review Agent combination
- Human intervention only at start and completion
Current mainstream: Stage 2 (pair programming) This case study: Achievement of Stage 3 (automation)
Highly Versatile Approach - Applicable Beyond Implementation
warabi notes “Skills usage isn’t limited to implementation work; it can apply to various daily tasks.”
Applicable domains:
- Document generation (research → structure → writing → review)
- Data analysis (data retrieval → analysis → visualization → reporting)
- Test automation (test case design → implementation → execution → reporting)
Key concepts:
- Break workflow into clear steps
- Define each step as independent Skill
- Integrate with Orchestrator
- Ensure quality via Review Agent
Synergy With Claude Sonnet 4.6
Claude Sonnet 4.6, released February 17, 2026, achieved these improvements:
- “Reduced over-engineering”
- “Improved instruction following”
- “Better consistency in multi-step tasks”
These improvements demonstrate power precisely in Orchestrator-pattern Skill step execution. The combination of model performance gains and strategic Skills usage enables true automation.
Summary - Next-Generation AI Coding Tool Usage
warabi’s case demonstrates that AI coding tool value can increase 10x or 100x depending on how you use them.
Success factors:
- Clear workflow decomposition
- Strategic Skills usage
- Context management via SubAgents
- Quality assurance via Review Agents
- Integration through Orchestrator
Future implications: As Spotify’s top engineers stated they “haven’t written a line of code since December,” engineer roles are shifting from “writing code” to “designing AI.”
warabi’s practice anticipates this future.
References:
- Original article: Fully Automating Development with Claude Code - Orchestrator-Type Skill Design and Practice
- Claude Code Official: https://code.claude.com/
- Skills Documentation: https://code.claude.com/docs/en/skills
Related Articles:
- Claude Sonnet 4.6 Released - Opus-Grade Performance at Sonnet Pricing
- 29 Real-World OpenClaw Use Cases - Community-Selected Examples
- Spotify AI Fatigue Issue - Reality of Top Developers No Longer Writing Code
関連記事
Claude Codeの「ペアプロ」から「完全自動化」へ - Orchestrator型Skillで開発速度が劇的向上
株式会社ヘンリーのエンジニアが実践する、Claude Code Skills機能の高度な活用法。SubAgentとレビューAgentを組み合わせたOrchestrator型Skillで、情報収集→設計→実装→PR作成を完全自動化。ドメイン知識学習の時間確保に成功した実例を分析。
Docker Sandboxes、Claude Code等のAIコーディングエージェントを安全に実行する技術を発表
Docker公式がmicroVMベースのDocker Sandboxesを発表。Claude Code、Gemini、Codex、Kiroなどのコーディングエージェントを、プロンプトインジェクション攻撃から保護しながら実行可能に。
OpenClaw導入後の「で、何に使う?」問題を解決 - コミュニティが選んだ実用例29選
OpenClawをインストールしたものの活用法に困っている人へ。コミュニティが最低1日以上実際に運用して検証した29の実用ユースケースを分析。Daily Reddit Digest、YouTube Content Pipeline、Self-Healing Home Serverなど、生産性向上に直結する事例を紹介。
人気記事
ChatGPT(OpenAI)とClaude(Anthropic)の機能比較 2026年版。コーディング・長文解析・コスト・API料金の違いを検証
ChatGPT(GPT-4o/o3)とClaude(Sonnet 4.6/Opus 4.5)を2026年時点の最新情報で比較する。コーディング能力、長文処理、日本語品質、API料金、無料プランの違いをSWE-benchなどのベンチマーク結果とともに解説する。
【2026年2月20日 所感】「AIがコードを書く」は仮説から現実になった——しかし私たちはその意味をまだ消化できていない
2026年2月20日に観測したコーディングエージェント関連ニュースの総括と所感。Anthropicの自律性研究、cmux、MJ Rathbunのエージェント事故、HN「外骨格 vs チーム」論争、Stripe Minions週1000件PR、Taalas 17k tokens/sec——朝から夜までの流れを通じて見えてきた「AIがコードを書く時代」の実相を考察する。
868のスキルをnpx 1コマンドで——「Antigravity Awesome Skills」が主要AIコーディングエージェントの共通スキル基盤になりつつある
Claude Code・Gemini CLI・Codex CLI・Cursor・GitHub Copilotなど主要AIコーディングアシスタントを横断する868以上のスキルライブラリ「Antigravity Awesome Skills」(v5.4.0)を詳細分析。Anthropic・Vercel・OpenAI・Supabase・Microsoftの公式スキルを統合した設計思想、ロール別バンドル・ワークフロー機能、SKILL.mdによる相互運用性のアーキテクチャを解説する。
最新記事
AIエージェント間通信の標準化競争が始まる——AquaとAgent Semantic Protocolが同日登場
2026年2月23日、Hacker Newsに2つのAIエージェント通信プロジェクトが同日掲載された。Go製CLI「Aqua」とセマンティックルーティングを実装する「Agent Semantic Protocol」は、MCPが解決できないP2P・非同期通信の課題に取り組む。
Claude Sonnet 4.6、無料・Proプランのデフォルトモデルに——社内テストでOpus 4.5を59%の確率で上回る
Anthropicは2026年2月17日にリリースしたClaude Sonnet 4.6を、claude.aiの無料・Proプランのデフォルトモデルに設定した。価格はSonnet 4.5と同額の$3/$15 per 1Mトークン。社内評価ではコーディングエージェント用途でOpus 4.5を上回る結果が出ている。
GoogleがOpenClaw経由のGemini利用ユーザーのアカウントを永久停止——月額$250請求継続のまま
2026年2月23日、Hacker Newsで140pt/107コメントを集めたレポートによると、GoogleはOpenClaw(サードパーティクライアント)経由でGeminiを使用していたGoogle AI Pro/Ultraユーザーを予告なしに永久停止した。技術的・経済的背景を整理する。