- Rename
src-tauri/src/config.rstoglobal_config.rs. - Automate Knip: Run
.github/workflows/knip.yml(create if needed) on PR and push. - Automate Link Check: Run
.github/workflows/link_check.yml(create if needed) weekly. - Test Organization: Separate flaky, fast, and nondeterministic tests in the Rust test suite.
- UAC / admin detection (
IsUserAnAdmin, elevation prompt handling) - Registry-based protocol handler checks (
HKEY_CLASSES_ROOT) - Path conventions (backslashes,
%APPDATA%,%LOCALAPPDATA%) - Named pipes as alternative to Unix sockets for
appctl serve - Clipboard via PowerShell
Get-Clipboard/Set-Clipboard - Headless detection: check for interactive desktop session vs. service context
- Windows-specific doctor checks (Windows version, build number, WSL detection)
- JUnit XML output for CI integration (
--junit <path>) - Result upload / "push mode": POST
result.json+ artifact zip to a server - HTML report generation from artifact directories
- Implement
tray-clickvia platform APIs - Implement
deep-linkvia custom URL scheme invocation - Implement
file-dropvia synthetic drag-and-drop events - Implement
app-focusvia window manager APIs
- Retry logic per step (
retries: 3, backoff: exponential) - Conditional steps (
when: "{{ prev.status == 'pass' }}") - Parallel step execution (
parallel: [step1, step2]) - Variable interpolation across steps
- Timeout enforcement via
tokio::time::timeout
- More built-in commands (system_info, list_dir, http_request)
- Async command support
- Plugin system for custom command registration
- Shell completions generation (
appctl completions bash/zsh/fish) -
appctl listto show available commands and probes - Configuration file for CLI defaults (
~/.appctl.toml)