Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2e9e84d
feat: add dynamic project registry (Phase 1)
marcmantei Mar 12, 2026
f32bbd4
feat: add notification on new repo discovery
marcmantei Mar 12, 2026
e3608f4
fix: defer registry sync loop spawn until messaging_manager is available
marcmantei Mar 12, 2026
da94ac2
fix: correct default model + worker retrigger relay
marcmantei Mar 12, 2026
044f9d8
style: cargo fmt
marcmantei Mar 12, 2026
c3319e7
fix: clippy collapsible_if + derive Default for SyncStatus
marcmantei Mar 12, 2026
39c6f7c
feat: dynamic project context from registry + webhook filtering
marcmantei Mar 12, 2026
f355180
Fix clippy collapsible_if in webhook registry filter
marcmantei Mar 12, 2026
50ab0bb
Merge pull request #3 from marcmantei/issue-1-dynamic-registry-github…
marcmantei Mar 12, 2026
9ee063d
fix: add missing libxkbcommon0 to Docker runtime dependencies
l33t0 Mar 13, 2026
2dbec43
Add CUPID coding principles as global worker default
marcmantei Mar 12, 2026
e8b2762
feat: add `spacebot upgrade` CLI command for native self-upgrade
marcmantei Mar 14, 2026
4c5d8cf
fix: add worker queue with idle eviction to prevent dropped tasks
marcmantei Mar 17, 2026
c2fb403
feat: add automatic PR conflict detection and resolution
marcmantei Mar 17, 2026
f428066
feat: add startup catch-up and health watchdog
marcmantei Mar 14, 2026
5096cf8
fix: use map_while(Result::ok) for BufRead::lines iterator (clippy)
marcmantei Mar 17, 2026
61bc7e9
Merge pull request #4 from marcmantei/feat/startup-catchup-and-watchdog
marcmantei Mar 17, 2026
ba3ca5e
feat: add Ember theme, Pricing page, and Kanban dependency tracking
marcmantei Mar 27, 2026
e47ab58
feat: add `spacebot local` command and Welcome page
marcmantei Mar 27, 2026
4f81a57
feat: add MCP bridge for CLI agent integration
marcmantei Mar 27, 2026
21f4dec
feat: Kanban agent assignment, worktree indicators, and metadata badges
marcmantei Mar 27, 2026
3f401dd
feat: add task dependency graph visualization
marcmantei Mar 28, 2026
95e11c2
feat: inline diff review in Kanban task detail dialog
marcmantei Mar 28, 2026
70b4e4e
feat: git worktree isolation per task
marcmantei Mar 28, 2026
e2705c6
fix: resolve CI failures — cargo fmt + TS type errors in AgentTasks
marcmantei Mar 28, 2026
a679f07
fix: use Value::get() directly on metadata (not Option<Value>)
marcmantei Mar 28, 2026
7bb6402
feat: OAuth-aware Welcome page, GitHub Issues in Kanban, project filter
marcmantei Mar 29, 2026
5ee535a
fix: Welcome page crash — safe agent access, href links
marcmantei Mar 29, 2026
9d75093
feat: native Kanban-Spacebot config integration
marcmantei Mar 29, 2026
b51fcea
Merge branch 'feature/kanban-sales-platform'
marcmantei Mar 29, 2026
8fac4b5
fix: prevent interactive workers from getting stuck in idle after out…
marcmantei Apr 8, 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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libpango-1.0-0 \
libcairo2 \
libcups2 \
libxkbcommon0 \
libxss1 \
libxtst6 \
&& rm -rf /var/lib/apt/lists/*
Expand Down
Loading