Activity
Mon
Wed
Fri
Sun
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
What is this?
Less
More

Owned by Harald

KI Agentur Insider Pro

1 member • $79/month

Für Unternehmer, die KI nicht nur verstehen, sondern einsetzen wollen. Keine Theorie – nur was wirklich funktioniert.

KI-Roadmap: Von Claude bis n8n

10.4k members • Free

Agent Zero

2.8k members • Free

AI Automation Society

457.9k members • Free

Skoolers

158.7k members • Free

3 contributions to Agent Zero
Agent Zero v2.12 is out, with a Launcher update
File browser rebuilt: The File browser now has directory trees, list and icon views, sorting preferences, and its own Settings category. The Editor unifies text and code editing with syntax highlighting, line numbers, search, Markdown previews, and protection against conflicting saves. Remote file access: Browse and edit folders exposed by connected A0 CLI and Launcher instances directly from the Web UI, with granular permission checks. Transfers are hardened with streaming, integrity checks, atomic writes, configurable limits, and safe archive handling. Beta, feedback wanted - A0 Tag: With an Agent Zero instance open in a Launcher tab, press Ctrl/Cmd + Shift + Enter and ask A0 to do anything on your computer from the app you are in. It can also type text directly in place, currently in text editors, email clients, and custom fields. Credential fields are intentionally not supported for security reasons. Tell us what works and what does not. Browser and Desktop: Safari host-browser setup on macOS, Browser tabs that no longer get stuck loading, faster Browser and Desktop startup, and a draggable canvas rail that remembers its position with per-panel desktop and mobile visibility. Security: Fixed WhatsApp media path traversal, Telegram webhook authentication bypass, and IMAP sender-whitelist parsing bypass. If you use these integrations, please update. How to update CLI: open a terminal and type 'a0 update' Web UI: open Settings -> Check for updates -> Review update Launcher: close and reopen the app, then click the Update button New here? Install guide: https://www.agent-zero.ai/p/docs/installation Full changelogs: github.com/agent0ai/agent-zero
Agent Zero v2.12 is out, with a Launcher update
1 like • 1d
Agent-Zero 2.12 new chat Question: How are your status ? Error: UnicodeEncodeError: 'utf-8' codec can't encode characters in position 1494-1496: surrogates not allowed Traceback (most recent call last): Traceback (most recent call last): File "/a0/helpers/extension.py", line 181, in _run_async data["result"] = await data["result"] ^^^^^^^^^^^^^^^^^^^^ File "/a0/agent.py", line 649, in handle_exception raise exception # exception handling is done by extensions ^^^^^^^^^^^^^^^ File "/a0/agent.py", line 425, in monologue prompt = await self.prepare_prompt(loop_data=self.loop_data) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/a0/helpers/extension.py", line 188, in _run_async result = _process_result(data) ^^^^^^^^^^^^^^^^^^^^^ File "/a0/helpers/extension.py", line 148, in _process_result raise exc File "/a0/helpers/extension.py", line 181, in _run_async data["result"] = await data["result"] ^^^^^^^^^^^^^^^^^^^^ File "/a0/agent.py", line 579, in prepare_prompt await extension.call_extensions_async( File "/a0/helpers/extension.py", line 238, in call_extensions_async result = cls(agent=agent).execute(**kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/a0/plugins/_context_window/extensions/python/message_loop_prompts_after/_99_capture_context_usage.py", line 8, in execute capture_context(self.agent, loop_data) File "/a0/plugins/_context_window/helpers/usage.py", line 75, in capture_context parts["extras"] = _output_tokens(agent, "extras", protocol + extras) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/a0/plugins/_context_window/helpers/usage.py", line 205, in _output_tokens return _cached_tokens(agent, cache_key, text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/a0/plugins/_context_window/helpers/usage.py", line 215, in _cached_tokens
1 like • 15h
## Title: UnicodeEncodeError: 'utf-8' codec can't encode characters (surrogates not allowed) in _cached_tokens, responses_history and httpx ## Description: When Agent-Zero encounters unescaped terminal sequences, broken JSON outputs, or corrupted characters from tool executions, isolated high/low surrogate pairs (range U+D800 to U+DFFF) enter the message history. This causes multiple sequential UnicodeEncodeError: 'utf-8' codec can't encode characters ... surrogates not allowed crashes across the entire framework because raw .encode("utf-8") calls are used without error handling on strings containing these surrogates. ## Steps to Reproduce: 1. Run a tool or terminal command that returns raw binary data, certain emojis, or non-standard ANSI control codes into the agent loop. 2. Let the context manager try to cache or token-count the response. 3. Observe the crash chain. ## Traceback Summary: The crash cascades through three core locations: 1. Plugin Context Window: _context_window/helpers/usage.py inside _cached_tokens via hashlib.sha256(text.encode("utf-8")). 2. History Component: helpers/responses_history.py inside _json_bytes via json.dumps(...).encode(). 3. HTTP Transport Layer: httpx internally crashes in _content.py via encode_json because litellm forwards the uncleaned surrogate strings to the external API call. ## Proposed Fixes / Workarounds: To prevent the framework from crashing on bad tool outputs, errors="surrogateescape" or errors="replace" should be added to the encoding/decoding chains. * Fix 1 (Context Caching) in /a0/plugins/_context_window/helpers/usage.py: digest = hashlib.sha256(text.encode("utf-8", errors="surrogateescape")).hexdigest() * Fix 2 (History Hashing) in /a0/helpers/responses_history.py: return json.dumps(value, ensure_ascii=False, sort_keys=True, separators=(",", ":")).encode("utf-8", errors="surrogateescape")
Return the King with a Style
Hi guys I'm new here, but it hurts me to see Agent Zero falling back so bad I do not see even a slightest video hype anymore on Youtube, every where you check is "Hermes Agent this Hermes Agent that", and as much as I respect it(Hermes), I know that there is actually nothing like Agent Zero, Once the Agent Zero be able to merge A0 and Space Agent together and make a full Desktop one click setup .exe and stop depending too much on Docker for sandbox, there will be nothing on AI Universe that can stand a chance against Agent Zero ever again, make an ultimate killer fix that really matters, and desktop/web browser total dominant Agent Zero via CLI or a full desktop A0 version without sandbox( some of us do not need that)
0 likes • Jul 29
Docker are the feature not a bug. It make agent-zero save for me. it runs on my server and one on my laptop. I am very habby about agent-zero 😀
Agent Zero v2.7 is out
A focused stability release. If you ever saw your agent freeze mid-reasoning or stop halfway through a response, this one is for you. New provider: Cerebras Cerebras is now a native provider with onboarding guidance, default model selection, and full UI coverage. If you want extremely fast inference behind your agents, setup takes a few clicks. Linux Computer Use hardening: Window targeting now uses stable AT-SPI window IDs with window-scoped snapshots. Focus is verified before typing, and typing fails closed instead of landing in the wrong window. There is also an unambiguous XWayland wmctrl fallback, plus better evidence handling and retry behavior for failed actions on remote targets. Also in this release: Project-scoped HTTP/SOCKS proxy support for the internal Docker browser, with auth and bypass options and runtime restart handling for active sessions. Codex OAuth reasoning_effort forwarding was normalized so upstream providers never receive unsupported field shapes. How to update CLI: open a terminal and type 'a0 update' Web UI: open Settings -> Check for updates -> Review update New here? Install guide: https://www.agent-zero.ai/p/docs/installation Full changelogs: github.com/agent0ai/agent-zero
Agent Zero v2.7 is out
0 likes • Jul 29
powerfull update, i like it 😀
1-3 of 3
Harald Pichler
1
3 points to level up
@harald-pichler-3904
Es bereitet mir Freude, meine Erfahrungen, Wissen der nächsten Generation weiter zu geben und an der Entwicklung in Form von Open-Source teilzuhaben

Active 10h ago
Joined Jul 29, 2026
Powered by