You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ❌ **Agent Type Support**: Implement endpoints for async-copilot, async-codex, jules, and custom agents
317
+
- ❌ **Endpoint Registration**: Extend `.mcp.json` configuration to register remote agent endpoints per type
318
+
- ❌ **Model Parameter Passthrough**: Allow `--model` parameter to flow through to remote agent execution (e.g., `--model opus` on `/implement` passes to async agent)
319
+
- ❌ **Agent Selection Logic**: Route tasks to appropriate agent based on `/tasks` metadata (ASYNC tag + agent type)
320
+
321
+
**Tier 1.3 - Repository Context Provision**
322
+
- ❌ **Git Credential Handling**: Support SSH keys, personal tokens, git-credential-helper for remote auth
323
+
- ❌ **Branch Context**: Pass feature branch reference so remote agents work with correct isolated specs
324
+
- ❌ **Commit History**: Include recent commit history and related issue references in context metadata
325
+
- ❌ **Authentication Testing**: Validate credentials before submitting tasks to prevent failures
Consolidates: Sub-agent spawning logic from dual execution loop + background observability + failure escalation + agent type selection guidance
351
+
352
+
**Purpose**: Unified framework for spawning, coordinating, and monitoring local sub-agents (Explore, Plan, general-purpose) and remote async agents with context-aware selection.
- ❌ **Integration with Task Tool**: Embed selection guidance in Task tool schema (system prompt injection)
371
+
- ❌ **Model Parameter Support**: Document model override capability for each agent type
372
+
373
+
**Tier 2.2 - Context Inheritance Rules**
374
+
- ❌ **Context Inheritance Matrix**: Document which agents inherit vs start fresh
375
+
- Explore: Fresh slate (enables fast codebase search without prior context bloat)
376
+
- Plan/General-purpose: Full context inheritance (enables pair-wise attention relationships)
377
+
- ❌ **Main Agent Reading Pattern**: Document guidance that main agent should read relevant files itself (not rely on agent summaries) for better reasoning (from Claude Code article)
378
+
- ❌ **Team Directive Integration**: Store preferred context inheritance per organization in `team-ai-directives`
379
+
- ❌ **Configuration Option**: Allow per-project override of inheritance rules
380
+
381
+
**Tier 2.3 - "When NOT to Spawn" Guidelines***(Reduces context bloat)*
382
+
- ❌ **Anti-Pattern Documentation**:
383
+
- ❌ Don't spawn Explore if file paths already known → use Read tool directly
384
+
- ❌ Don't spawn if task < 3 steps → execute directly with tools
-`/levelup`: Default Sonnet → Options: Opus (comprehensive packets)
428
+
- ❌ **Admin Commands**:
429
+
-`/architect`: Default Sonnet → Options: Opus (critical systems), Haiku (exploration)
430
+
-`/constitution`: Default Sonnet → Options: Opus (complex governance)
431
+
-`/mode`: Haiku (config is lightweight)
432
+
-`/checklist`: Haiku (validation is formulaic)
433
+
- ❌ **Integration**: Add `--model [opus|sonnet|haiku|gpt-5-codex]` parameter to all commands above
434
+
435
+
**Tier 3.2 - Model-Aware Context Budgeting***(Inform users of token costs)*
436
+
- ❌ **Context Window Limits**: Document effective context windows per model (Opus: ~120K effective of 200K, Sonnet: ~100K of 200K, Haiku: ~80K of 200K)
437
+
- ❌ **Token Cost Calculator**: Implement utility to estimate tokens for spec.md + plan.md + tasks.md
438
+
- ❌ **Recommendation Engine**: Show "context utilization: 58% - OK" or "context: 72% - consider compaction" during execution
439
+
- ❌ **Model Downgrade Suggestions**: Auto-suggest Haiku when context > 70% for non-critical tasks
440
+
- ❌ **Transparency in Prompts**: Log context size in delegation prompts (e.g., "using Sonnet to preserve 22K tokens")
441
+
442
+
**Tier 3.3 - Two-Model Review Strategy***(From Claude Code article)*
443
+
- ❌ **Review Model Configuration**: Store preferred review model in config.json (configurable: gpt-5-codex, Sonnet, etc.)
444
+
- ❌ **Quality Gate Integration**: Invoke review model for ASYNC task validation (bug-finding, style checking)
445
+
- ❌ **SYNC vs ASYNC Review**: Apply two-model review only to critical SYNC tasks (cost optimization)
446
+
- ❌ **User Override**: Support `--review-model` parameter to force specific reviewer (cross-vendor validation)
447
+
- ❌ **Review Quality Thresholds**: Document when review model is invoked (P1/P2 risk level, SYNC tasks, security code)
448
+
449
+
**Tier 3.4 - Cost Optimization Guidance**
450
+
- ❌ **Usage Documentation**: Create guide on when to use each tier:
-**SDD Optimization**: 100% Complete (workflow flexibility with comprehensive iterative development, enhanced UX, completed mode switching with auto-detection, and mode-aware checklist validation)
637
790
-**Complexity Solutions**: ~90% Complete (completed workflow modes with auto-detecting post-implementation analysis, iterative development, enhanced rollback, configurable options - HIGH PRIORITY response to user feedback; some automation features still need implementation)
638
-
-**Current Phase Priorities**: 1 CRITICAL (async context delivery) + 5 HIGH (workflow blockers) + 4 MEDIUM features - **PRIMARY FOCUS**
791
+
-**Current Phase Priorities**: 3 TIERED INITIATIVES (Tier 1: CRITICAL async delivery, Tier 2: HIGH sub-agent coordination, Tier 3: MEDIUM model selection) + 1 HIGH (persistent issue ID) + 3 MEDIUM features - **PRIMARY FOCUS with parallel development**
639
792
-**Next Phase Priorities**: Command prefix migration (deferred to reduce churn while fixing blockers)
640
793
-**Future Enhancements**: 0% Complete (minimal enterprise features only)
641
794
-**Deferred Features**: IDE Integration & overkill enhancements (removed to maintain focus)
@@ -648,12 +801,14 @@ Architecture support is now available in all workflow modes as optional commands
0 commit comments