@barzkit/sdk 0.1.5 → 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,18 @@ 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
+
8
20
  ## [0.1.5] - 2026-03-02
9
21
 
10
22
  ### Added
@@ -113,6 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
113
125
  - `AgentEvent` type definitions for future event hooks
114
126
  - Dual-package build: ESM (`.mjs`) + CJS (`.js`) + DTS (`.d.ts`)
115
127
 
128
+ [0.2.0]: https://github.com/barzkit/sdk/compare/v0.1.5...v0.2.0
116
129
  [0.1.5]: https://github.com/barzkit/sdk/compare/v0.1.4...v0.1.5
117
130
  [0.1.4]: https://github.com/barzkit/sdk/compare/v0.1.3...v0.1.4
118
131
  [0.1.3]: https://github.com/barzkit/sdk/compare/v0.1.2...v0.1.3
package/README.md CHANGED
@@ -160,7 +160,7 @@ See [examples](https://github.com/barzkit/examples) for complete working example
160
160
  - [x] DeFi actions: swap, lend (Uniswap, Aave)
161
161
  - [x] x402 payment handler
162
162
  - [x] ElizaOS plugin
163
- - [ ] LangChain tool
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.5",
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",