Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
eb29ab1
feat(infra): add WorktreeManager for isolated story development
oalanicolas Jan 29, 2026
c762067
test(infra): add tests for worktree status integration [Story 1.5]
oalanicolas Jan 29, 2026
68c6c4c
feat(ade): complete Epic 1 (Worktree) and Epic 2 (Migration V3)
oalanicolas Jan 29, 2026
295f297
chore(ide-sync): update agent definitions for V3 migration
oalanicolas Jan 29, 2026
4958e47
feat(dashboard): implement Epic 2 - Agent Monitor
oalanicolas Jan 29, 2026
eface5d
feat(dashboard): implement Epic 3 - Integrations
oalanicolas Jan 29, 2026
619c791
feat(qa): implement Epic 6 - QA Evolution
oalanicolas Jan 29, 2026
4a8216e
feat(memory): implement Epic 7 - Memory Layer
oalanicolas Jan 29, 2026
198bf43
feat(dashboard): add Roadmap view and UI components
oalanicolas Jan 29, 2026
62f1838
feat(dashboard): implement real-time CLI integration and CRUD stories
oalanicolas Jan 29, 2026
cafb450
fix(tests): isolate test directories and fix mock sequences
oalanicolas Jan 29, 2026
1d048c4
feat(dashboard): consolidate motion system and enhance kanban a11y
oalanicolas Jan 29, 2026
8df768c
feat(qa): add session persistence and abandoned loop detection
oalanicolas Jan 29, 2026
c2cedd6
feat(ade): implement build recovery & resume system [Story 8.4]
oalanicolas Jan 29, 2026
6171313
feat(epic-12): implement Auto-Claude feature absorption
oalanicolas Jan 29, 2026
556e22f
feat(agents): update agent definitions and squad scripts
oalanicolas Jan 29, 2026
6757b95
feat(dashboard): update AIOS dashboard components
oalanicolas Jan 29, 2026
4f275d3
fix(wizard): update wizard and CLI tools
oalanicolas Jan 29, 2026
77cfc40
chore: update package.json and README
oalanicolas Jan 29, 2026
dfb9273
chore(ide-sync): sync agent definitions to IDE configurations
Pedrovaleriolopez Jan 29, 2026
6ac54a9
chore(ide-sync): sync antigravity and cursor agent files
Pedrovaleriolopez Jan 29, 2026
db01526
feat(ade): implement Semantic Merge Engine for AI-powered conflict re…
oalanicolas Jan 29, 2026
90c5679
feat(ade): implement PR Review AI for automated code review
oalanicolas Jan 29, 2026
0a99981
feat(ade): implement CI/CD Discovery and Test Discovery
oalanicolas Jan 29, 2026
f4d53f1
feat(epic-6): implement Permission Modes system for safe autonomous o…
oalanicolas Jan 29, 2026
407e824
feat(memory): implement AIOS gaps - file evolution, timeline, feedbac…
oalanicolas Jan 29, 2026
1f1a8cc
feat(ade): AIOS Dashboard & ADE Core Implementation (#51)
oalanicolas Jan 29, 2026
cf58db2
fix(ci): rename verification script to avoid Jest crash
Pedrovaleriolopez Jan 29, 2026
79e366e
feat(monitor): implement real-time Claude Code monitoring system
oalanicolas Jan 29, 2026
7c93c42
fix(dashboard): add Monitor view to page switch statement
oalanicolas Jan 29, 2026
333cf15
fix(monitor): resolve ESLint error in useMonitorEvents hook
oalanicolas Jan 29, 2026
ef6d7f7
docs(architecture): add real-time observability architecture for dash…
oalanicolas Jan 29, 2026
62ff126
chore(ci): temporarily lower coverage thresholds for PR #53
Pedrovaleriolopez Jan 29, 2026
ea1199d
docs: comprehensive documentation overhaul - AllFluence removal and n…
oalanicolas Jan 29, 2026
dcf412d
chore(ci): regenerate manifest after rebase
Pedrovaleriolopez Jan 29, 2026
4d7879c
fix(ci): sync IDE files, regenerate manifest, skip flaky test
Pedrovaleriolopez Jan 29, 2026
84e933a
chore(ci): lower core coverage threshold to 38%
Pedrovaleriolopez Jan 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .aios-core/core-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ coderabbit_integration:
wsl_config:
distribution: Ubuntu
installation_path: ~/.local/bin/coderabbit
working_directory: /mnt/c/Users/AllFluence-User/Workspaces/AIOS/SynkraAI/aios-core
working_directory: ${PROJECT_ROOT}

# Self-healing configuration
self_healing:
Expand All @@ -347,9 +347,9 @@ coderabbit_integration:
# CLI commands (WSL wrapper for Windows)
commands:
qa_pre_review_uncommitted: |
wsl bash -c 'cd /mnt/c/Users/AllFluence-User/Workspaces/AIOS/SynkraAI/aios-core && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
qa_story_review_committed: |
wsl bash -c 'cd /mnt/c/Users/AllFluence-User/Workspaces/AIOS/SynkraAI/aios-core && ~/.local/bin/coderabbit --prompt-only -t committed --base main'
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t committed --base main'

report_location: docs/qa/coderabbit-reports/

Expand Down
Loading
Loading