Skip to content
This repository was archived by the owner on Mar 25, 2026. It is now read-only.

Commit 0a07799

Browse files
committed
Re-add omitted context
1 parent 0e95501 commit 0a07799

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

content/Agents/creating-agents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ In the Agentuity SDK, agents are one of the core primitives. An agent is where y
44

55
## Framework Flexibility
66

7-
Agentuity is not framework-specific. You can use any inference library or SDK you prefer—Mastra, Vercel AI SDK, or the model providers' own SDKs directly. Agentuity doesn't care what you use.
7+
Agentuity is not framework-specific. You can use any inference library or SDK you prefer—Mastra, Vercel AI SDK, the model providers' own SDKs directly, or even a coding agent SDK like Agent SDK from Claude Code. Agentuity doesn't care what you use.
88

99
What Agentuity provides is a wrapper around your inference code that makes it easy to add observability, evaluations, structured logging, authentication, and a bunch of other things—without requiring you to set up the underlying infrastructure yourself.
1010

1111
## Agents as Infrastructure
1212

1313
Agents in Agentuity are meant to be infrastructure pieces and wrappers around the inference calls you would make. The SDK provides easy access to logging, observability, OpenTelemetry traces, and cloud services without having to set up a bunch of stuff—Redis, key-value storage, databases, you name it.
1414

15-
Higher-level services like threads are also provided. If there's a conversation going on, Agentuity will automatically group that conversation together in a thread so the back and forth gets lumped all together. That's an important thing to understand about agents—they're the infrastructure wrapper around your inference code that makes it easy to use.
15+
Higher-level services like threads are also provided. If there's a conversation going on, Agentuity will automatically group that conversation together in a thread so the back and forth gets lumped all together. With agents, you also get observability and sessions built in. That's an important thing to understand about agents—they're the infrastructure wrapper around your inference code that makes it easy to use.
1616

1717
## Schema-Driven Development
1818

content/Frontend/deployment-scenarios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deployment Scenarios
22

3-
There are times when you have a Greenfield application—it's important to be able to start fresh. You can have frontend, routes, agents, all the cloud stuff, easy to deploy. But also you have existing applications.
3+
There are times when you have a Greenfield application—it's important to be able to start fresh. Using `agentuity create`, you can have frontend, routes, agents, all the cloud stuff, easy to deploy. But also you have existing applications.
44

55
## Existing Applications
66

content/Frontend/react-hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# React Hooks
22

3-
Back to end-to-end type safety—what was happening over and over is someone was building an agent and saying "I need APIs" (which Agentuity offers), then "now I need a frontend for this agent or these things." So Agentuity built a client-side frontend package as well.
3+
Agents, routes, and frontend hooks are the three big building blocks for building agentic software. Back to end-to-end type safety—what was happening over and over is someone was building an agent and saying "I need APIs" (which Agentuity offers), then "now I need a frontend for this agent or these things." So Agentuity built a client-side frontend package as well.
44

55
## The React Package
66

content/Routes/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Routes
22

3-
Routes and APIs are another core primitive alongside agents. One thing constantly observed is that people want to build agents, but agents don't live in isolation. Agents have to have lots of different things, including some API or route that you call them or invoke them by.
3+
Routes and APIs are another core primitive alongside agents—one of the three big building blocks for building what we call agentic software. One thing constantly observed is that people want to build agents, but agents don't live in isolation. Agents have to have lots of different things, including some API or route that you call them or invoke them by.
44

55
## Built on Hono
66

content/Services/Observability/sessions-debugging.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Remember—this is an agent-native platform, so agents should have access to the
1818

1919
On deployments, you can see how your deployments are doing. You can view that whole pane of glass by deployment—this deployment was just done, there was a deployment yesterday, let me compare the two. You can see the artifacts, how it's doing, the logs.
2020

21+
On the observability side, you get things like threads, sessions (OpenTelemetry sessions), evals, logs, and analytics—all within a project.
22+
2123
## CLI Integration
2224

2325
On most screens there's a terminal icon showing how to interact with everything on screen via the CLI. This is orthogonal—it's a cloud platform with a web app to view things, but you also have a CLI to programmatically access everything. An agent can use the CLI for debugging or setting things up programmatically, which is really useful.

0 commit comments

Comments
 (0)