Skip to content

Commit 30cec6b

Browse files
oalanicolasclaude
andauthored
feat(ade): AIOS Dashboard & ADE Core Implementation (#51)
## Summary Complete implementation of AIOS Dashboard and Autonomous Development Engine (ADE) Core. ### AIOS Dashboard - Kanban board with drag & drop story management - Agent monitor with real-time status - Roadmap view with MoSCoW prioritization - Terminal output viewer with ANSI colors - GitHub integration panel - Settings page with theme support - Real-time CLI integration via SSE ### ADE Core - Master Orchestrator for workflow control - Gate Evaluator for quality gates - Recovery Handler for error recovery - Epic Executors (3-7) - Build State Manager with checkpoints - Autonomous Build Loop ### Workflow Intelligence - Enhanced Confidence Scorer - Suggestion Engine - Wave Analyzer - Pattern Learning System ### Infrastructure - WorktreeManager for git worktree isolation - Plan Tracker - Stuck Detector - Rollback Manager ### QA Evolution - QA Loop Orchestrator (10-phase review) - Session Persistence - Abandoned Loop Detection ### Memory Layer - Gotchas Memory - Context Snapshot - Pattern Capture ### Agent System - 12 agents migrated to V3 format - Auto-Claude feature absorption ## Stats - 341 files changed - +108,763 / -4,026 lines - 3,063 tests passing ## Note Merged with admin override due to coverage thresholds not met (expected with 108k+ new lines). Coverage improvement tracked in #52. Co-Authored-By: Alan Nicolas <alan@alanicolas.com> Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ce2e918 commit 30cec6b

333 files changed

Lines changed: 108562 additions & 1402 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.aios-core/core-config.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,3 +487,49 @@ ideSync:
487487
strictMode: true
488488
failOnDrift: true
489489
failOnOrphaned: false
490+
491+
# ============================================
492+
# SECTION 13: Auto-Claude Configuration (ADE)
493+
# Autonomous Development Engine settings
494+
# ============================================
495+
autoClaude:
496+
enabled: true
497+
version: "3.0"
498+
migratedAt: "2026-01-29T02:25:00Z"
499+
500+
# Worktree Management (Story 1.4)
501+
# Controls automatic worktree creation/cleanup for stories
502+
worktree:
503+
enabled: true
504+
# When to auto-create worktree:
505+
# - on_story_start: Auto-create when story moves to "In Progress"
506+
# - manual: Only create via explicit command
507+
# - never: Disable auto-creation
508+
autoCreate: on_story_start
509+
510+
# When to auto-cleanup worktree:
511+
# - on_story_done: Auto-cleanup when story moves to "Done" (if clean)
512+
# - manual: Only cleanup via explicit command
513+
# - never: Keep worktrees indefinitely
514+
autoCleanup: manual
515+
516+
# Maximum concurrent worktrees (prevents disk bloat)
517+
maxWorktrees: 10
518+
519+
# Days after which a worktree is considered stale
520+
staleDays: 30
521+
522+
# Branch prefix for worktree branches
523+
branchPrefix: "auto-claude/"
524+
525+
# Spec Pipeline (Story 3.x - Future)
526+
specPipeline:
527+
enabled: false
528+
529+
# Execution Engine (Story 4.x - Future)
530+
execution:
531+
enabled: false
532+
533+
# QA Integration (Story 5.x - Future)
534+
qa:
535+
enabled: false

0 commit comments

Comments
 (0)