# CodeController **Repository Path**: TaBuE/code-controller ## Basic Information - **Project Name**: CodeController - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-07 - **Last Updated**: 2026-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Harness Deck Harness Deck is a Flutter mobile prototype for Android and iOS. It is designed for quickly pairing a phone with a remote desktop IDE so the user can inspect live previews, queue AI harness work, and follow remote session activity while away from the keyboard. ## What is implemented - Responsive control deck optimized for phones and larger tablet-like layouts. - Quick Connect form for remote host, IDE, transport mode, and relay token. - Session deck with status, latency, branch, and capability badges. - Detail pane for preview artifacts, AI task queue, environment metadata, and recent activity. - Mock service layer that simulates remote IDE handoff flows and is ready to be replaced with real SSH, WebRTC, or relay APIs. ## Project structure - lib/src/models/workbench_models.dart: view models for sessions, previews, tasks, and activity. - lib/src/services/remote_harness_service.dart: sample remote session service. - lib/src/state/workbench_controller.dart: controller that drives dashboard state transitions. - lib/src/presentation/dashboard_page.dart: mobile and tablet UI. ## Run locally ```bash flutter pub get flutter run ``` ## Real integration next steps 1. Replace RemoteHarnessService with a real transport client. 2. Add device-authenticated session negotiation and token refresh. 3. Stream terminal output and preview frames over WebSocket or WebRTC. 4. Persist recent remote workspaces and handoff history locally.