@stellar-agent-kit/all
v0.1.10
Published
All-in-one entry point for the Stellar Agent Kit — re-exports core, all plugins, runner, and adapters. For granular installs, use the @stellar-agent-kit/* scoped packages.
Readme
stellar-agent-kit
The all-in-one entry point. Re-exports everything from the granular @stellar-agent-kit/* packages.
npm i @stellar-agent-kit/allimport {
StellarAgentKit,
KeypairWallet,
StellarAssetPlugin,
DefiPlugin,
autonomousRun,
TestnetSandbox,
SpendCap,
} from "@stellar-agent-kit/all";For tree-shaking, use the granular sub-paths:
import { StellarAgentKit } from "@stellar-agent-kit/all/core";
import { StellarAssetPlugin } from "@stellar-agent-kit/all/plugins";
import { autonomousRun } from "@stellar-agent-kit/all/runner";Or use the granular scoped packages directly — they install independently:
npm i @stellar-agent-kit/core @stellar-agent-kit/plugin-assetSee the main repo for full docs: https://github.com/kaankacar/stellar-agent-kit
