Go to file
2026-04-06 07:40:25 +08:00
.codex/environments chore: commit all pending project changes 2026-03-31 18:13:06 +08:00
apps Merge remote-tracking branch 'mirror/master' 2026-04-06 07:40:25 +08:00
docs docs: refine mobile ui refresh design spec 2026-04-01 17:14:25 +08:00
.gitignore Ignore local work logs 2026-04-02 11:10:04 +08:00
AGENTS.md Complete terminal session flow stabilization 2026-03-30 10:32:32 +08:00
melos.yaml chore: initialize monorepo workspace 2026-03-27 10:27:46 +08:00
README.md Complete terminal session flow stabilization 2026-03-30 10:32:32 +08:00

TermRemoteCtl

TermRemoteCtl is a personal remote coding controller for one Windows workstation.

Workspace Layout

  • apps/mobile_app: Flutter app for iPhone and Android
  • apps/windows_agent: Windows resident agent
  • docs: specifications, plans, and protocol notes

Prerequisites

  • Flutter 3.x
  • .NET 8 SDK
  • Windows 11 for the agent runtime

Initial Setup

  1. Run flutter create apps/mobile_app --platforms=android,ios --project-name term_remote_ctl
  2. Run dotnet new sln -n TermRemoteCtl.Agent -o apps/windows_agent
  3. Verify the generated workspace with flutter --version and dotnet --version
  4. Begin implementation in apps/mobile_app and apps/windows_agent using the checked-in workspace files and protocol notes

Verification

  • dotnet test apps/windows_agent/tests/TermRemoteCtl.Agent.Tests/TermRemoteCtl.Agent.Tests.csproj
  • flutter test apps/mobile_app/test
  • flutter test apps/mobile_app/integration_test
  • The Flutter integration_test suite may still require a supported local runtime target or device on the machine running it.