Compare commits

...

3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] 6f246fc64f docs: fix AGENTS grep alternation 2026-06-03 06:22:52 +00:00
copilot-swe-agent[bot] 6e112ccdfa Merge remote-tracking branch 'origin/pr-10619' into copilot/fix-comments-in-review-thread 2026-06-03 06:22:25 +00:00
copilot-swe-agent[bot] f6f6d0f48f Initial plan 2026-06-03 06:19:03 +00:00
+1 -1
View File
@@ -16,7 +16,7 @@ This file (`AGENTS.md`) is a short pointer + quick reference for agents that don
| Build native macOS host binary | `pio run -e native-macos` (Homebrew prereqs + CH341 LoRa setup in `variants/native/portduino/platformio.ini`) |
| Clean + rebuild | `pio run -e <env> -t clean && pio run -e <env>` |
| Flash a device | `pio run -e <env> -t upload --upload-port <port>` (or use the `pio_flash` MCP tool) |
| Run firmware unit tests (native) | `~/.platformio/penv/bin/python -m platformio test -e native > /tmp/test_out.txt 2>&1` then `grep -E 'error:\|PASS\|FAIL\|succeeded\|failed' /tmp/test_out.txt` (redirect first — piping causes line-buffering) |
| Run firmware unit tests (native) | `~/.platformio/penv/bin/python -m platformio test -e native > /tmp/test_out.txt 2>&1` then `grep -E 'error:|PASS|FAIL|succeeded|failed' /tmp/test_out.txt` (redirect first — piping causes line-buffering) |
| Run MCP hardware tests | `./mcp-server/run-tests.sh` |
| Live TUI test runner | `mcp-server/.venv/bin/meshtastic-mcp-test-tui` |
| Format before commit | `trunk fmt` |