<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Agentic Systems | Zhang Handuo's Site</title><link>https://handuo.top/tags/agentic-systems/</link><atom:link href="https://handuo.top/tags/agentic-systems/index.xml" rel="self" type="application/rss+xml"/><description>Agentic Systems</description><generator>HugoBlox Kit (https://hugoblox.com)</generator><language>en-us</language><lastBuildDate>Tue, 25 Aug 2026 00:00:00 +0000</lastBuildDate><image><url>https://handuo.top/media/icon_hu_39ba2e8de423d957.png</url><title>Agentic Systems</title><link>https://handuo.top/tags/agentic-systems/</link></image><item><title>FrontierAgent</title><link>https://handuo.top/project/frontieragent/</link><pubDate>Tue, 25 Aug 2026 00:00:00 +0000</pubDate><guid>https://handuo.top/project/frontieragent/</guid><description>&lt;p&gt;I initiated and lead &lt;strong&gt;FrontierAgent&lt;/strong&gt;, an open-source agent runtime and research workbench for long-running research and file-based tasks. It combines a terminal interface, sandbox tools, and evaluation workflows for single-agent ReAct and Agent Team execution, and shares reusable infrastructure with ApodexHarness through AgentCore.&lt;/p&gt;
&lt;h2 id="demo"&gt;Demo&lt;/h2&gt;
&lt;p&gt;A 1-minute 48-second walkthrough of Agent Team in FrontierAgent&amp;rsquo;s terminal interface.&lt;/p&gt;
&lt;video controls poster="/project/frontieragent/demo-poster.jpg" id="video-demo"&gt;
&lt;source src="https://handuo.top/project/frontieragent/frontieragent_agent_team_promo.mp4" type="video/mp4"&gt;
&lt;/video&gt;
&lt;p&gt;
.&lt;/p&gt;
&lt;h2 id="the-problem-keeping-a-long-task-coherent"&gt;The problem: keeping a long task coherent&lt;/h2&gt;
&lt;p&gt;A research task may involve several evidence sources, analysis scripts, intermediate files, and parallel investigations. Simply adding more agents does not settle who owns the plan, when work is complete, or which files constitute the final result. FrontierAgent makes those responsibilities explicit in the runtime.&lt;/p&gt;
&lt;p&gt;Its public interface offers two workflows: &lt;strong&gt;ReAct&lt;/strong&gt; for a stateful single-agent loop, and &lt;strong&gt;Agent Team&lt;/strong&gt; for a coordinator that delegates independent assignments and integrates reports. The same workflow engine also supports benchmark execution, connecting interactive use with repeatable evaluation.&lt;/p&gt;
&lt;p&gt;
&lt;figure id="figure-conceptual-agent-team-workflow-specialist-roles-illustrate-possible-task-decomposition-the-coordinator-organizes-the-team-for-the-task-rather-than-using-a-fixed-roster"&gt;
&lt;div class="flex justify-center "&gt;
&lt;div class="w-full" &gt;
&lt;img alt="Agent Team overview: a main agent delegates specialist work, receives asynchronous reports, requests verification, and synthesizes the final report."
srcset="https://handuo.top/project/frontieragent/agent-team-overview_hu_5c6c79f833d9cb14.webp 320w, https://handuo.top/project/frontieragent/agent-team-overview_hu_7076608cae32ebcf.webp 480w, https://handuo.top/project/frontieragent/agent-team-overview_hu_f877a11c10fb1ec0.webp 760w"
sizes="(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1024px) 80vw, 760px"
src="https://handuo.top/project/frontieragent/agent-team-overview_hu_5c6c79f833d9cb14.webp"
width="760"
height="557"
loading="lazy" data-zoomable /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;figcaption&gt;
Conceptual Agent Team workflow. Specialist roles illustrate possible task decomposition; the coordinator organizes the team for the task rather than using a fixed roster.
&lt;/figcaption&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;
.&lt;/p&gt;
&lt;h2 id="coordination-state-and-delivery"&gt;Coordination, state, and delivery&lt;/h2&gt;
&lt;p&gt;The architecture below separates three responsibilities that become tightly coupled during a long run:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Coordination:&lt;/strong&gt; the main agent maintains an external task board and uses an Agent Bus to dispatch work and collect reports. Execution status and the coordinator&amp;rsquo;s judgment that a task is resolved are distinct pieces of state.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Execution:&lt;/strong&gt; sub-agents produce candidate artifacts in working directories. The isolation backend determines whether those directories are private worktrees or a shared mount. Read-only inputs remain separate from mutable working files.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Delivery:&lt;/strong&gt; a single-publisher lease and an explicit output manifest govern final publication. Reconciliation against the initial output state prevents stale or empty files from being mistaken for newly completed deliverables. Shared scratch space remains outside the collected final output.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;figure id="figure-runtime-responsibilities-across-coordination-execution-and-publication-the-diagram-distinguishes-working-state-from-final-delivery-and-shows-where-user-follow-ups-enter-the-active-run"&gt;
&lt;div class="flex justify-center "&gt;
&lt;div class="w-full" &gt;
&lt;img alt="Agent Team state and artifact contract: user intervention, coordinator, external task board, Agent Bus, candidate workspaces, and controlled final outputs."
srcset="https://handuo.top/project/frontieragent/agent-team-state-contract_hu_c2efa15447366d96.webp 320w, https://handuo.top/project/frontieragent/agent-team-state-contract_hu_59e8e52ce81734f0.webp 480w, https://handuo.top/project/frontieragent/agent-team-state-contract_hu_bd96962f8ea5051e.webp 760w"
sizes="(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1024px) 80vw, 760px"
src="https://handuo.top/project/frontieragent/agent-team-state-contract_hu_c2efa15447366d96.webp"
width="760"
height="460"
loading="lazy" data-zoomable /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;figcaption&gt;
Runtime responsibilities across coordination, execution, and publication. The diagram distinguishes working state from final delivery and shows where user follow-ups enter the active run.
&lt;/figcaption&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;
.&lt;/p&gt;
&lt;p&gt;These mechanisms address state loss, ambiguous ownership, concurrent output writes, and premature completion claims. They do not by themselves establish that a scientific method or conclusion is correct; task-specific verification remains necessary. The runtime contract is also described in the
, Section 3.3 and Table 2.&lt;/p&gt;
&lt;h2 id="an-inspectable-workbench-and-evaluation-path"&gt;An inspectable workbench and evaluation path&lt;/h2&gt;
&lt;p&gt;The terminal product exposes the task board, tool activity, artifacts, and local traces. Checkpoints support resuming a session, and follow-up instructions can steer an active run. The evaluation runner supports artifact collection and rerunning failures, making it possible to investigate where a task broke down rather than only record its final score.&lt;/p&gt;
&lt;p&gt;The repository also contains
, which evaluates complete scientific deliverables. See the
for its task design and reported completion gaps, and
for model-and-system results using ReAct and Agent Team. Those benchmark gains reflect the complete evaluated configurations, not a standalone runtime speedup claim.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explore:&lt;/strong&gt;
·
.&lt;/p&gt;</description></item><item><title>Apodex 1.1: Scaling Agentic Intelligence for Complex Work</title><link>https://handuo.top/publication/apodex-1-1/</link><pubDate>Mon, 24 Aug 2026 00:00:00 +0000</pubDate><guid>https://handuo.top/publication/apodex-1-1/</guid><description>&lt;p&gt;A useful research agent must do more than retrieve information and produce a report. It needs to inspect real files, execute analyses, maintain state, recover from failure, and leave behind work that can be checked and reused. &lt;strong&gt;Apodex 1.1 calls this working capability: sustained, verifiable progress toward a real objective.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I contributed to the agent harness and its evaluation and release infrastructure. My work connects long-running execution, multi-agent coordination, and artifact verification through
. The results below describe the complete team-built model and system, rather than an isolated contribution from any one component. The author list on this page is abbreviated; the report contains the full credits.&lt;/p&gt;
&lt;h2 id="two-complementary-ways-to-scale-agent-capability"&gt;Two complementary ways to scale agent capability&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Environment Scaling&lt;/strong&gt; expands the file, search, and code environments in which agents can act and receive verifiable feedback. Tasks require the model to work with data and executable tools, rather than rely on text-only answers.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Agentic Coordination Scaling&lt;/strong&gt; trains task decomposition, delegation, integration of asynchronous results, and replanning. A coordinator can assign independent work to sub-agents, absorb their findings, and organize further verification as the task evolves.&lt;/p&gt;
&lt;p&gt;Both depend on a shared runtime. AgentOS maintains task state outside the conversation history, coordinates tool and agent execution, and tracks which files are working material and which are final deliverables. The
makes ReAct and Agent Team workflows available through a terminal interface and an evaluation harness.&lt;/p&gt;
&lt;h2 id="reported-results-react-and-agent-team"&gt;Reported results: ReAct and Agent Team&lt;/h2&gt;
&lt;p&gt;The August 2026 technical report compares a single-agent ReAct setting with Agent Team for the same Apodex 1.1 model. Selected results are reproduced below for readability.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Evaluation&lt;/th&gt;
&lt;th style="text-align: right"&gt;ReAct&lt;/th&gt;
&lt;th style="text-align: right"&gt;Agent Team&lt;/th&gt;
&lt;th style="text-align: right"&gt;Difference&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;APEX-Agents&lt;/td&gt;
&lt;td style="text-align: right"&gt;34.4&lt;/td&gt;
&lt;td style="text-align: right"&gt;38.5&lt;/td&gt;
&lt;td style="text-align: right"&gt;+4.1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GDPVal win rate (%)&lt;/td&gt;
&lt;td style="text-align: right"&gt;69.5&lt;/td&gt;
&lt;td style="text-align: right"&gt;78.8&lt;/td&gt;
&lt;td style="text-align: right"&gt;+9.3 pp&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FrontierFinance&lt;/td&gt;
&lt;td style="text-align: right"&gt;48.7&lt;/td&gt;
&lt;td style="text-align: right"&gt;54.3&lt;/td&gt;
&lt;td style="text-align: right"&gt;+5.6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FrontierScience-Research&lt;/td&gt;
&lt;td style="text-align: right"&gt;55.0&lt;/td&gt;
&lt;td style="text-align: right"&gt;63.3&lt;/td&gt;
&lt;td style="text-align: right"&gt;+8.3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;BioMysteryBench, Human-difficult&lt;/td&gt;
&lt;td style="text-align: right"&gt;23.5&lt;/td&gt;
&lt;td style="text-align: right"&gt;35.3&lt;/td&gt;
&lt;td style="text-align: right"&gt;+11.8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Humanity&amp;rsquo;s Last Exam&lt;/td&gt;
&lt;td style="text-align: right"&gt;53.2&lt;/td&gt;
&lt;td style="text-align: right"&gt;56.1&lt;/td&gt;
&lt;td style="text-align: right"&gt;+2.9&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Differences are in each benchmark&amp;rsquo;s reported score units; the GDPVal change is in percentage points. Agent Team uses additional coordinated computation, so these comparisons are not matched-compute estimates of the effect of coordination alone. They are a dated snapshot of the report&amp;rsquo;s evaluation, not claims about a current leaderboard.&lt;/p&gt;
&lt;p&gt;
&lt;figure id="figure-reported-results-across-professional-work-finance-scientific-research-and-general-reasoning-source-apodex-11-technical-report-tables-34-reference-system-protocols-are-described-in-the-report"&gt;
&lt;div class="flex justify-center "&gt;
&lt;div class="w-full" &gt;
&lt;img alt="Apodex 1.1 ReAct and Agent Team benchmark results alongside Apodex 1.0 and selected reference systems."
srcset="https://handuo.top/publication/apodex-1-1/benchmark-results_hu_7c4022ec439120ee.webp 320w, https://handuo.top/publication/apodex-1-1/benchmark-results_hu_bfd422239ecb9b47.webp 480w, https://handuo.top/publication/apodex-1-1/benchmark-results_hu_c1776bd665d652c1.webp 760w"
sizes="(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1024px) 80vw, 760px"
src="https://handuo.top/publication/apodex-1-1/benchmark-results_hu_7c4022ec439120ee.webp"
width="760"
height="502"
loading="lazy" data-zoomable /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;figcaption&gt;
Reported results across professional work, finance, scientific research, and general reasoning. Source: Apodex 1.1 technical report, Tables 3–4; reference-system protocols are described in the report.
&lt;/figcaption&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;
.&lt;/p&gt;
&lt;h2 id="from-runtime-behavior-to-usable-research-tools"&gt;From runtime behavior to usable research tools&lt;/h2&gt;
&lt;p&gt;For researchers, the runtime supports keeping a task moving through changing evidence and user feedback: intermediate files survive, the plan can be revised, and results from parallel branches can be integrated. The official
explains how this appears in the workbench through live intervention, visible progress, and review of important claims.&lt;/p&gt;
&lt;p&gt;The report also introduces a &lt;strong&gt;35B-parameter Mini model&lt;/strong&gt; as a locally deployable route to these workflows. This is separate from the full-model results above.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sources:&lt;/strong&gt;
, Sections 3–4 and Tables 3–5;
;
.&lt;/p&gt;</description></item><item><title>Prax / AgentOS and ApodexHarness</title><link>https://handuo.top/project/prax-agentos/</link><pubDate>Tue, 31 Mar 2026 00:00:00 +0000</pubDate><guid>https://handuo.top/project/prax-agentos/</guid><description>&lt;p&gt;I joined Apodex in late March 2026 as one of three founding engineers of Prax / AgentOS and became the technical owner of ApodexHarness infrastructure. The project develops an execution system for complex, long-running tasks.&lt;/p&gt;
&lt;p&gt;I built &lt;strong&gt;heavy_mode&lt;/strong&gt;, which combines parallel sub-agents, cross-branch synthesis, global verification, and continuation after interruption. I proposed planner-generated, schema-constrained workflow DAGs and replaced a LangGraph dependency with a compact execution engine supporting branches and verification-retry loops.&lt;/p&gt;
&lt;p&gt;I also developed token-budgeted context compression, file-based research memory, tool-specific result budgets, and evidence checks for unsupported numbers and citations. Reliability work included durable agent messages, sandbox isolation, tool permissions, and cancellation-safe event streaming.&lt;/p&gt;
&lt;p&gt;The harness connects workflows to a unified evaluation interface. I supported the Apodex 1.1 and 1.2 model releases and ran 240 APEX Agents 1.1 tasks end to end to validate the evaluation path.&lt;/p&gt;</description></item></channel></rss>