Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ For detailed session history, see [HERALD.md](HERALD.md).
- At least one AI CLI: Claude Code (recommended), Codex, or Gemini CLI
- `sudo` access (for global CLI symlinks)
- API keys optional (OpenRouter/OpenAI — for optional add-on agents)
- **Platforms:** Linux (fully tested), macOS (untested, should work), Windows via WSL2
- **Platforms:** Linux (tested, primary dev environment), macOS (untested), Windows (native testing in progress — see [open issues](https://github.com/AIOSAI/AIPass/issues?q=is%3Aissue+is%3Aopen+Windows))

---

Expand Down
7 changes: 7 additions & 0 deletions src/aipass/drone/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@
drone @module command [args] Route command to internal module
"""

import os
import sys

# Windows terminals default to cp1252 which can't encode Rich's Unicode
# characters (box-drawing, em dashes, arrows). Force UTF-8 before any
# imports that trigger Rich output.
if sys.platform == "win32":
os.environ.setdefault("PYTHONUTF8", "1")

from aipass.drone.apps.drone import main as _drone_main


Expand Down
Loading