Show HN: Abralo – 在一个窗口中运行多个 Claude Code 代理的简便免费方案
Show HN: Abralo – Free, easy way to run several Claude Code agents in one window

原始链接: https://abralo.com/

修复登录重定向循环。用户在登录后被重定向回 /login。根本原因是 Cookie 定时错误:Set-Cookie 与 302 重定向同时发送,导致浏览器在存储前丢弃了它,并将请求弹回 /login。我将其移至重定向之前,测试通过。 Editauth.rs - set_cookie(sid); redirect("/dash") + set_cookie(sid, http_only: true) + redirect("/dash") +2 −1 点击打开 Bash cargo test redirect OUT test result: ok. 3 passed Cookie OAuth 回调 会话 Cookie 应该设置为 httpOnly 吗? 是,httpOnly 更安全;SPA 从不访问它 否,保持可读性,SPA 需要在 JS 中读取该值

开发者 Chris Woods 推出了 **Abralo**,这是一款基于 Tauri 的轻量级桌面应用程序,旨在同时运行多个 Claude Code 智能体。 Abralo 的诞生是为了解决官方 VS Code 插件在重负载下容易崩溃以及难以管理多个终端会话的问题,它提供了一个集中的仪表盘,用于实时监控多个智能体。主要功能包括: * **提高效率:** 通过使用 Rust 后端和共享 WebView,相比 VS Code 沉重的 Electron 环境,它占用的资源更少。 * **用量追踪:** 内置的警报和迷你图功能,帮助用户监控令牌(Token)使用情况,确保不超过 Anthropic 的速率限制。 * **隐私保护:** 该应用不会在本地存储用户凭据或聊天记录。 * **可用性:** 目前在 Windows、macOS 和 Linux 上免费支持最多四个智能体同时运行。 Hacker News 社区对此反响普遍积极,用户在提供潜在错误反馈的同时,还请求增加对 Claude 以外其他编码智能体的支持。Woods 表示,未来计划扩展兼容性至更多工具,并修复目前已知的 UI 同步问题。
相关文章

原文

Fix the login redirect loop. Users land back on /login after signing in.

Root cause

A cookie-timing bug: the Set-Cookie rides the same 302, so the browser drops it before storing it and bounces the request back to /login. I moved it ahead of the redirect, and tests pass.

Editauth.rs

- set_cookie(sid); redirect("/dash")

+ set_cookie(sid, http_only: true)

+ redirect("/dash")

+2 −1click to open

Bashcargo test redirect

OUTtest result: ok. 3 passed

Should the session cookie be httpOnly?

Yes, httpOnlySafer; the SPA never touches it1

No, keep it readableThe SPA needs the value in JS2

联系我们 contact @ memedata.com