Prerequisite: All Agentic packages are ESM only and require Node.js >= 18 or an equivalent environment (Bun, Deno, CF workers, etc).

1

Install core deps (zod)

npm install zod
2

Install AI tools

You can either install all of the AI tools via @agentic/stdlib, or you can install them individually via their respective packages (@agentic/weather, @agentic/twitter, etc.).

There is no functional difference between using @agentic/stdlib versus using the individual tool packages directly. The only difference is if you want to optimize your install size.

The default examples all use @agentic/stdlib for simplicity.

3

Install an AI SDK Adapter

To use Agentic with one of the supported AI SDKs, you’ll also need to install its corresponding adapter package.

You can use Agentic without any of these AI SDKs. @agentic/core, @agentic/stdlib, and all individual tool packages are compatible with any LLM and AI SDK that supports function calling / tool use.