@barzkit/sdk 0.1.4 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.0] - 2026-03-02
9
+
10
+ ### Added
11
+
12
+ - `@barzkit/langchain` — LangChain StructuredTool integration (separate package in `plugins/langchain/`)
13
+ - 8 tools: barz_send_transaction, barz_check_balance, barz_swap, barz_lend, barz_batch_transactions, barz_freeze_wallet, barz_unfreeze_wallet, barz_fetch_with_payment
14
+ - `createBarzTools(config)` — one-liner to create all tools from AgentConfig
15
+ - `createBarzToolkit(agent)` — wrap existing BarzAgent in LangChain tools
16
+ - Zod schemas with parameter descriptions for LLM tool calling
17
+ - LangChain tools documentation (`docs/advanced/langchain-tool.md`)
18
+ - `langchain-agent` example
19
+
20
+ ## [0.1.5] - 2026-03-02
21
+
22
+ ### Added
23
+
24
+ - `@barzkit/elizaos` — ElizaOS plugin for AI agent wallets (separate package in `plugins/elizaos/`)
25
+ - 8 actions: SEND_TRANSACTION, CHECK_BALANCE, SWAP_TOKENS, LEND_TOKENS, BATCH_TRANSACTIONS, FREEZE_WALLET, UNFREEZE_WALLET, FETCH_WITH_PAYMENT
26
+ - `BarzService` — ElizaOS service lifecycle for BarzKit smart accounts
27
+ - `walletProvider` — wallet context provider (address, balance, status)
28
+ - ElizaOS plugin documentation (`docs/advanced/elizaos-plugin.md`)
29
+ - `elizaos-agent` example
30
+ - `plugins/` directory structure for all `@barzkit` plugins
31
+
8
32
  ## [0.1.4] - 2026-03-01
9
33
 
10
34
  ### Added
@@ -101,6 +125,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
101
125
  - `AgentEvent` type definitions for future event hooks
102
126
  - Dual-package build: ESM (`.mjs`) + CJS (`.js`) + DTS (`.d.ts`)
103
127
 
128
+ [0.2.0]: https://github.com/barzkit/sdk/compare/v0.1.5...v0.2.0
129
+ [0.1.5]: https://github.com/barzkit/sdk/compare/v0.1.4...v0.1.5
104
130
  [0.1.4]: https://github.com/barzkit/sdk/compare/v0.1.3...v0.1.4
105
131
  [0.1.3]: https://github.com/barzkit/sdk/compare/v0.1.2...v0.1.3
106
132
  [0.1.2]: https://github.com/barzkit/sdk/compare/v0.1.1...v0.1.2
package/README.md CHANGED
@@ -159,8 +159,8 @@ See [examples](https://github.com/barzkit/examples) for complete working example
159
159
  - [x] Multi-chain: Base Sepolia, Base mainnet
160
160
  - [x] DeFi actions: swap, lend (Uniswap, Aave)
161
161
  - [x] x402 payment handler
162
- - [ ] ElizaOS plugin
163
- - [ ] LangChain tool
162
+ - [x] ElizaOS plugin
163
+ - [x] LangChain tool
164
164
  - [ ] On-chain permission enforcement via Diamond Facets
165
165
 
166
166
  ## Contributing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barzkit/sdk",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "Self-custody AI agent wallets with passkeys, gasless transactions & programmable permissions (ERC-4337)",
6
6
  "main": "./dist/index.cjs",