Docs

The Agent-Native SDK · 10.06

The Internal Packages: app, app-client, runtime, sdk

Four private, internal shared packages behind the public surface — what each holds and why they aren't a publishable client SDK today.

Packages

Shared logic, not a public npm surface

Beyond the well-known apps/api, apps/web, packages/core, packages/db, packages/integrations, and packages/cli, four more workspace packages carry shared logic: @agentis/app (the App primitive's own datastore, lifecycle, packager, surface store, and test harness — shared between the API and the web dashboard), @agentis/app-client, @agentis/runtime, and @agentis/sdk. All four are marked "private": true in their own package.json — internal workspace packages, not something published to a public registry today. If you're looking for a standalone client library to call the Agentis HTTP API from an external application, this isn't it yet; the agentis.* registry covered elsewhere in this category is the surface agents call from inside a run, and the plain HTTP API is what an external caller uses today.

Continue