TRANSKRIPTEnglish

Hermes Agent v0.11 Just Dropped — This Changes Everything

28m 9s5,310 ord866 segmentsEnglish

FULLSTÄNDIGT TRANSKRIPT

0:00

News Research just dropped Hermes agent

0:02

version 0.11. And this one is not a

0:04

small update. Since version 0.9, this

0:08

project has seen 1,556

0:10

commits, 761 merged pull requests, and

0:14

contributions from 29 community

0:15

developers. The release notes call it

0:17

the interface release, and that framing

0:19

is accurate. This is not a patch. This

0:22

is a structural overhaul across three

0:24

layers of the entire stack. the

0:26

interface you interact with every day,

0:28

the infrastructure running underneath

0:29

it, and the surface area for what you

0:30

can actually build on top of it. Now, if

0:32

you have been following this series, you

0:34

already know that version 0.10 shipped

0:36

only the news tool gateway and deferred

0:38

almost everything else. What that means

0:40

is version 0.11 carries roughly 2 weeks

0:43

of accumulated work across the full

0:45

codebase, all landing at once. The TUI

0:48

has been completely rewritten. The

0:50

transport layer has been pulled out into

0:51

a pluggable architecture. AWS Bedrock

0:54

now has native support. Five new

0:56

inference providers are in. GPT 5.5 is

0:59

accessible through your existing codeex

1:01

OOTH. The plug-in surface has expanded

1:04

significantly and there is a new command

1:06

called / steer that changes how you

1:08

interact with a running agent mid task.

1:10

We're going to cover all of it and we're

1:11

going to spend serious time on the

1:12

agentic workflows that these new

1:14

capabilities actually unlock. Before we

1:17

get into it, if you're finding value in

1:18

this series and you want to stay current

1:20

on everything happening in the open-

1:21

source AI agent space, hit the like

1:23

button and subscribe. It genuinely helps

1:26

this channel grow and it makes sure you

1:27

do not miss the next breakdown when

1:29

these projects keep moving this fast.

1:31

Share this one with anyone in your

1:32

network who is building with AI agents

1:34

or evaluating open source tooling

1:36

because this release is worth knowing

1:38

about. The most visible change in

1:40

version 0.11 is the interactive CLI. The

1:43

entire thing has been rewritten from

1:45

scratch using React and inc land across

1:48

roughly 310 commits. You launch it with

1:50

Hermes--TuI

1:52

where you can set the environment

1:53

variable Hermes_TUI

1:55

to one if you want on by default. What

1:57

you get when you open it is a

1:58

fundamentally different experience from

2:00

the classic terminal interface. The

2:02

composer is now sticky. It stays fixed

2:04

at the bottom of the screen while your

2:05

history scrolls independently above it,

2:07

which sounds like a small thing until

2:09

you're deep in a long session and you

2:11

realize you're no longer fighting the

2:12

terminal to keep your input visible.

2:14

Streaming output renders live as the

2:16

agent works. And OSE52 clipboard support

2:19

means copy operations work correctly

2:21

even when you are connected over SSH.

2:23

That one has been a quiet painoint for

2:25

anyone running Hermes agent on a remote

2:26

VPS and it is now handled properly out

2:29

of the box. The status bar has been

2:31

extended with two additions that are

2:32

actually useful during active runs. Your

2:35

current git branch now shows in the

2:36

status bar alongside your working

2:38

directory. So you always know which

2:40

branch the agent is operating on without

2:42

having to run a separate command. And

2:44

there is now a per turn elapse stopwatch

2:46

that counts up while the agent is

2:47

working and shows you the total time

2:49

when the turn completes. When you are

2:51

running multi-step tasks and trying to

2:53

understand where time is going, having

2:55

that number visible in the interface is

2:56

far more useful than guessing. There's a

2:58

new command in this release called /

3:00

steer, and it deserves more than a

3:02

passing mention. The problem it solves

3:04

is one that anyone who runs long agent

3:06

tasks will recognize immediately. You

3:08

kick off a task, the agent starts

3:10

executing, and somewhere a few tool

3:12

calls, and you can see it is going a

3:14

direction you did not intend. Before

3:15

this, your options were to interrupt the

3:17

run and restart with a corrected prompt

3:19

or let finish and clean up afterward. /

3:22

steer gives you a third option. You type

3:23

/ steer followed by your correction and

3:25

the agent receives that note after its

3:27

next tool call completes. It does not

3:29

interrupt the current turn. It does not

3:31

break the prompt cache and the task

3:33

continues from where it was with your

3:34

correction folded in for long running

3:36

research tasks, code generation

3:38

workflows or anything where restarting

3:40

has a real cost. This is a significant

3:42

quality of life improvement. The release

3:44

also ships a sub aent spawn

3:46

observability overlay in the TUI. When a

3:49

parent agent delegates work to child

3:50

agents, you can now watch those spawns

3:52

happen in real time inside the

3:54

interface. If you're building or

3:55

debugging multi- aent workflows, having

3:58

that visibility without adding your own

4:00

logging is exactly the kind of thing

4:01

that shortens feedback loops. A light

4:03

theme preset and a/clear confirmation

4:06

dialogue round out the UX changes. And

4:08

the whole thing is backed by a Python

4:09

JSON RPC backend called TUI gateway that

4:13

keeps the interface layer cleanly

4:14

decoupled from the agent runtime. One of

4:16

the most important changes in version

4:18

0.11 is one that most people will scroll

4:21

past in the release notes and that is

4:22

the transport layer ref actor.

4:24

Previously, the logic responsible for

4:26

format conversion and HTTP transport was

4:28

embedded directly inside run agent. py.

4:32

It worked but meant that adding a new

4:34

provider or changing how requests were

4:36

shaped required touching core agent

4:38

code. In this release, all of that has

4:40

been extracted into a dedicated

4:41

agent/transports

4:43

directory with a clean abstractbased

4:45

class and four concrete implementations

4:47

sitting on top of it. Those four

4:48

transports are anthropic transport for

4:50

the anthropic messages API, chat

4:52

completions transport as the default

4:54

path for any open AAI compatible

4:56

provider, responses API transport for

4:58

the open AI responses API and codecs

5:01

build cores wiring and bedrock transport

5:03

for AWS bedrock via the converse API.

5:06

Each one owns its own format conversion

5:08

and API shape independently. The

5:10

practical result is that the agent

5:12

runtime no longer needs to know anything

5:14

about how a specific provider

5:16

communicates. That concern now lives

5:18

entirely inside the transport layer,

5:20

which makes the whole system

5:21

significantly easier to extend going

5:23

forward. The headline edition built on

5:25

top of this new architecture is native

5:27

AWS bedrock support. And it is worth

5:29

spending a moment on why this matters

5:31

beyond just having another provider

5:32

option. When you route Hermes agent

5:34

through Bedrock transport, your traffic

5:36

flows through your own AWS environment

5:38

using the Bedrock commerce API. It does

5:40

not leave your infrastructure to hit an

5:42

external endpoint. For teams operating

5:44

under data residency requirements,

5:46

enterprise security policies or

5:48

compliance frameworks that restrict

5:49

outbound API traffic. This changes the

5:52

equation entirely. You get the full

5:54

capability of Hermes agent including its

5:56

tool system, memory, multi- aent

5:59

delegation and messaging platform

6:00

integrations while keeping all model

6:02

traffic inside the boundary your

6:03

security team has already approved.

6:05

Getting set up with bedrock transport

6:07

follows the same configuration pattern

6:09

as any other provider in Hermes agent.

6:11

You define your provider in the config

6:13

pointed at your bedrock converse API

6:14

endpoint. Supply your AWS credentials

6:17

through the standard credential chain

6:18

and select whichever Bedrock hosted

6:20

model you want to run against. The

6:21

transport handles everything from there.

6:23

And because the transport layer is now

6:25

properly abstracted, switching between

6:27

bedrock and any other provider in your

6:29

setup is a config change, not a code

6:31

change. That kind of operational

LÅS UPP MER

Registrera dig gratis för att få tillgång till premiumfunktioner

INTERAKTIV VISARE

Titta på videon med synkroniserad undertext, justerbart överlägg och fullständig uppspelningskontroll.

REGISTRERA DIG GRATIS FÖR ATT LÅSA UPP

AI-SAMMANFATTNING

Få en omedelbar AI-genererad sammanfattning av videoinnehållet, nyckelpunkter och slutsatser.

REGISTRERA DIG GRATIS FÖR ATT LÅSA UPP

ÖVERSÄTT

Översätt transkriptet till över 100 språk med ett klick. Ladda ner i valfritt format.

REGISTRERA DIG GRATIS FÖR ATT LÅSA UPP

MIND MAP

Visualisera transkriptet som en interaktiv mind map. Förstå strukturen med ett ögonkast.

REGISTRERA DIG GRATIS FÖR ATT LÅSA UPP

CHATTA MED TRANSKRIPT

Ställ frågor om videoinnehållet. Få svar från AI direkt från transkriptet.

REGISTRERA DIG GRATIS FÖR ATT LÅSA UPP

FÅ UT MER AV DINA TRANSKRIPT

Registrera dig gratis och lås upp interaktiv visning, AI-sammanfattningar, översättningar, mind maps och mer. Inget kreditkort krävs.

    Hermes Agent v… - Fullständigt Transkript | YouTubeTranscript.dev