agentuity-backend

Assemble Agentuity backend packages to build agent handlers and server-side logic.

19|2|Updated Dec 9, 2025
One-click install
npx skills add https://github.com/agentuity/sdk --skill agentuity-backend
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentuity-backend
Source: https://github.com/agentuity/sdk/tree/main/packages/claude-code/skills/agentuity-backend
Command: npx skills add https://github.com/agentuity/sdk --skill agentuity-backend

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This backend-focused guide helps developers understand and leverage Agentuity's suite of backend packages to build and run agent handlers, configure schemas, and manage database connections.

Core Features & Use Cases

  • Guidance across the backend ecosystem including @agentuity/runtime, @agentuity/schema, @agentuity/drizzle, @agentuity/postgres, @agentuity/evals, @agentuity/core, and @agentuity/server for building agents, APIs, and server-side logic.
  • Practical illustrations for wiring ctx APIs, setting up schemas, establishing resilient database connections, and integrating evaluation frameworks.
  • Use Case: Create a backend agent that handles requests, persists data, validates inputs, and performs evaluations within the Agentuity runtime.

Quick Start

Initialize a simple backend agent by creating a basic handler with a schema using createAgent from @agentuity/runtime.

Frequently Asked Questions about agentuity-backend

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a backend agent handler using the Agentuity runtime?

To build a backend agent handler, use the createAgent function from the @agentuity/runtime package to initialize a basic handler and wire ctx APIs for processing server-side logic and requests.

What is the best way to set up a database schema with Agentuity and Drizzle?

Setting up a database schema with Agentuity involves using the @agentuity/schema package alongside @agentuity/drizzle to define structures and establish resilient PostgreSQL connections for data persistence.

Can I integrate evaluation frameworks into my server-side agent logic?

Yes, you can integrate evaluation frameworks into your agent logic by utilizing the @agentuity/evals package to perform evaluations directly within the Agentuity runtime environment.

How does the Agentuity server package handle request validation and data persistence?

The @agentuity/server and @agentuity/core packages handle request validation and data persistence by wiring ctx APIs and establishing resilient database connections across the backend ecosystem.

Do I need PostgreSQL to run an Agentuity backend project?

While PostgreSQL is supported via the @agentuity/postgres package for resilient database connections, the broader backend ecosystem includes runtime, schema, and server packages for comprehensive agent project assembly.

Why use Drizzle ORM for schema management in an Agentuity backend?

Using Drizzle ORM for schema management in an Agentuity backend provides structured database interactions, allowing you to define schemas and manage data connections efficiently within the server-side logic.