CxWebApp - macOS shell + swift-app wired to CxLLM-SDK
Go to file
CxAI Agent 79b3f32398
Some checks are pending
build-and-push / image (push) Waiting to run
feat: enhance Slack sidecar with response presets and improved diagnostics
- Added response presets for standup, bug report, and ship update in the Slack sidecar.
- Improved UI elements including a copy button for replies and conversation memory.
- Enhanced diagnostics section with better health indicators and tool listings.
- Introduced performance metrics for response times in the Slack form.

feat: revamp system pane for better process and host introspection

- Updated system pane to include live sparklines for memory and CPU usage.
- Enhanced KPI display with uptime, memory usage, and CPU load metrics.
- Added functionality to capture and display configured services and their statuses.

feat: overhaul tools pane for improved usability and interaction

- Redesigned tools pane to allow filtering, favoriting, and invoking MCP tools.
- Introduced a history feature to track recent tool calls.
- Enhanced form handling for tool arguments with schema-driven inputs.

feat: new files pane for accessing platform data

- Implemented a new files pane to surface data from files.cxllm.io.
- Added tabs for providers, edge functions, health, demand runs, watcher events, and file manager categories.
- Included functionality to capture health snapshots and display recent data.
2026-05-18 06:46:32 -05:00
.gitea/workflows feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
compose feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
include feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
share/cxai-mac feat(swift-app): rebuild share/cxai-mac as native CxAI ADE 1.2.0 2026-05-17 16:26:39 -05:00
src feat: enhance Slack sidecar with response presets and improved diagnostics 2026-05-18 06:46:32 -05:00
static feat: enhance Slack sidecar with response presets and improved diagnostics 2026-05-18 06:46:32 -05:00
swift-app feat(swift-app): rebuild share/cxai-mac as native CxAI ADE 1.2.0 2026-05-17 16:26:39 -05:00
.dockerignore feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
.gitignore feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
CMakeLists.txt feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
Dockerfile feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00
Makefile feat(swift-app): rebuild share/cxai-mac as native CxAI ADE 1.2.0 2026-05-17 16:26:39 -05:00
README.md feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK) 2026-05-16 14:32:01 -05:00

CxWebApp

C++ web application using Crow framework, built with CMake and Xcode.

Prerequisites

  • macOS with Xcode and command-line tools installed
  • CMake 3.22+ (brew install cmake)

Build with Xcode

# Generate Xcode project
cmake -B build -G Xcode

# Open in Xcode
open build/CxWebApp.xcodeproj

Build and run the CxWebApp scheme in Xcode (⌘R).

Build from command line

cmake -B build
cmake --build build
./build/CxWebApp

Usage

Open http://localhost:8080 in your browser.

API Endpoints

Method Path Description
GET /api/health Health check
GET /api/items List all items
GET /api/items/:id Get item by ID
POST /api/items Create item
DELETE /api/items/:id Delete item

Example

# Create
curl -X POST http://localhost:8080/api/items \
  -H "Content-Type: application/json" \
  -d '{"name":"Test","description":"A test item"}'

# List
curl http://localhost:8080/api/items