Skip to content
Merged
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
b107157
chore(deps): bump serde from 1.0.224 to 1.0.228
dependabot[bot] Jan 12, 2026
ce6d392
feat(12-01): add --ag-ui flag for frontend connectivity
Jan 23, 2026
5d06a7a
feat(13-01): connect ToolDisplayHook to EventBridge for tool events
Jan 23, 2026
e1d3269
feat(14-01): wire LLM response handling to AG-UI EventBridge
Jan 25, 2026
437948e
feat(15-01): add AG-UI state synchronization
Jan 25, 2026
59619d1
feat(16-01): add interrupt methods to EventBridge for human-in-the-loop
Jan 25, 2026
3370b11
feat(17-01): emit step/thinking events during agent processing
Jan 25, 2026
c343277
feat(18-01): add agent command for headless AG-UI server mode
Jan 25, 2026
0c841e8
feat(19-01): add container deployment configurations
Jan 25, 2026
38610a9
test(20-01): add AG-UI server integration tests
Jan 25, 2026
a01d27e
feat(21-01): add message channel to ServerState
Jan 25, 2026
ff11409
feat(21-01): handle WebSocket incoming messages
Jan 25, 2026
35ffaed
feat(21-01): add POST /message endpoint
Jan 25, 2026
1d252c3
feat(22-01): create AgentProcessor module with session management
Jan 25, 2026
d747592
feat(22-01): implement message processing loop
Jan 25, 2026
4de4979
feat(22-01): wire processor to server startup
Jan 25, 2026
e8a9c89
chore(23-01): add CopilotKit dependencies
Jan 25, 2026
372320b
feat(23-01): create CopilotKit provider wrapper
Jan 25, 2026
661a1d9
feat(23-01): create agent chat route with CopilotKit
Jan 25, 2026
ed5ef0c
feat(23-01): wire CopilotKit provider and navigation
Jan 25, 2026
6e92a8b
fix(23-01): use CopilotChat component instead of headless API
Jan 25, 2026
2159a69
Merge pull request #252 from syncable-dev/dependabot/cargo/develop/se…
Alex793x Jan 29, 2026
b887148
feat(hetzner): add dynamic availability API for smart resource selection
Feb 4, 2026
d0f3d3b
feat(wizard): integrate dynamic Hetzner availability into deployment …
Feb 4, 2026
2126614
feat(hetzner): remove hardcoded data, require dynamic API fetching
Feb 4, 2026
f7fd3b2
feat: early ag-ui implementation with test along
Feb 4, 2026
6e173fc
Merge branch 'develop' of github.com:syncable-dev/syncable-cli into d…
Feb 4, 2026
a6f66b7
feat(agent): add list_hetzner_availability tool, require dynamic data…
Feb 5, 2026
c91a09e
fix(hetzner): use /api/v1/cloud-runner/hetzner/options endpoint
Feb 5, 2026
cdadc8c
fix(hetzner): use availability API for real-time capacity data
Feb 5, 2026
6e50cc7
feat: new availability feature for hetzner deployment through agent. …
Feb 5, 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
3 changes: 1 addition & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[build]
rustflags = ["-C", "target-cpu=native"]

# On macOS, the default linker (ld64) is already quite fast
# For Linux, you could use mold: rustflags = ["-C", "link-arg=-fuse-ld=mold"]
# Note: mold linker doesn't support macOS. Use default ld64 (already fast on Mac)

[alias]
b = "build"
Expand Down
41 changes: 41 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# =============================================================================
# Docker Build Context Exclusions
# =============================================================================

# Build artifacts
target/
*.rs.bk

# IDE and editor files
.idea/
.vscode/
*.swp
*.swo
*~

# Git
.git/
.gitignore

# Documentation and planning
.planning/
*.md
!README.md

# CI/CD
.github/

# Test fixtures
tests/test-*/

# Local configuration
.env
.env.*
*.local

# Logs
*.log

# OS files
.DS_Store
Thumbs.db
Loading
Loading