You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Do not assume agent platform capabilities beyond what is available; fail explicitly when unavailable.
90
90
- When building a CLI, follow standard conventions: --help/-h, --version/-V, stdin/stdout piping, --json output, --dry-run for mutations, deterministic exit codes, and JSON Schema config validation.
91
91
- Treat `agent-browser` sessions as temporary resources: close them immediately when they are no longer needed, and before concluding a task verify that no sessions spawned for that task remain open.
92
+
- When launching `agent-browser` on Windows, do not rely on the implicit default session; always provide an explicit `--session <name>` or set `AGENT_BROWSER_SESSION` to a chosen session name before use, and if a localhost bind/access error occurs (for example `os error 10013`), retry with a different explicit session name instead of reusing the blocked default session, then report the working session name or the remaining failure.
92
93
- For federated identity flows (Google, Apple, Microsoft, GitHub, etc.), when automation-launched browser contexts are blocked, degraded, or risky, hand off only the IdP step to a real browser/session via CDP or explicit user interaction, then resume automation after the redirect; do not try to bypass provider anti-automation or embedded-browser restrictions.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,13 @@ All notable changes to this project are documented here.
4
4
5
5
## [Unreleased]
6
6
7
+
## [0.12.71] - 2026-03-16
8
+
9
+
### Changed
10
+
11
+
-**Fishing Area is now a first-class ranking dimension**: ranking mode can treat `釣り場` like `Rod / Line / Bobber / Enchant`, so you can rank areas directly or include area alongside gear in combination searches instead of hiding area choice inside setup only.
12
+
-**The ranking and optimizer internals now carry area identity all the way through the result rows**: subset searches, multi-slot rankings, and result tables keep `areaId` / area name attached to each candidate, which lets the UI show area-aware rankings without special-case postprocessing.
0 commit comments