@agentlayer.tech/wallet 0.1.98 → 0.1.100

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.
@@ -2,7 +2,7 @@
2
2
  "id": "agent-wallet",
3
3
  "name": "Agent Wallet",
4
4
  "description": "Official OpenClaw plugin bridge for the agent-wallet backends, including Solana, local BTC, and local EVM.",
5
- "version": "0.1.98",
5
+ "version": "0.1.100",
6
6
  "contracts": {
7
7
  "tools": [
8
8
  "agentlayer_autonomous_approve",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentlayertech/agent-wallet-plugin",
3
- "version": "0.1.98",
3
+ "version": "0.1.100",
4
4
  "description": "OpenClaw plugin bridge for the AgentLayer wallet runtime.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN ../../../LICENSE",
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.98
1
+ 0.1.100
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Keep in sync with package.json, pyproject.toml, and the npm installer version.
4
4
  # scripts/check_release_version.mjs enforces this on release.
5
- __version__ = "0.1.98"
5
+ __version__ = "0.1.100"
6
6
 
7
7
  __all__ = [
8
8
  "config",
@@ -2,7 +2,7 @@
2
2
  "id": "agent-wallet",
3
3
  "name": "Agent Wallet",
4
4
  "description": "Plugin-friendly wallet backend for OpenClaw agents with safe wallet tools and runtime instructions across Solana, local BTC, and local EVM.",
5
- "version": "0.1.98",
5
+ "version": "0.1.100",
6
6
  "skills": ["skills/wallet-operator"],
7
7
  "configSchema": {
8
8
  "type": "object",
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "openclaw-agent-wallet"
7
- version = "0.1.98"
7
+ version = "0.1.100"
8
8
  description = "Plugin-friendly wallet backend for OpenClaw agents"
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-wallet",
3
3
  "displayName": "Agent Wallet",
4
- "version": "0.1.98",
4
+ "version": "0.1.100",
5
5
  "description": "Claude Code bridge for the existing AgentLayer wallet runtime. Connects to Solana, Bitcoin, and EVM wallets without creating a new one.",
6
6
  "author": {
7
7
  "name": "AgentLayer"
@@ -34,10 +34,23 @@ wants only to ignore what they already typed. If it is empty (a bare
34
34
  Agentic Market was named explicitly — `auto` searches CDP Bazaar first.
35
35
  - Only if no inline text was given at all, ask the user what they want to
36
36
  find or pay for before calling any tool.
37
- - Present the returned `items` as a short list name/description, price
38
- (CDP Bazaar: `accepts[].amount_display`; Agentic Market:
39
- `endpoints[].pricing`), and network. Call `AskUserQuestion` to let the
40
- user pick one, or refine the search if none fit.
37
+ - Present the top 6 returned `items` as a compact Markdown table before
38
+ asking anything, columns `Service | Price`:
39
+ - Service — CDP Bazaar: `description` (fall back to `resource`'s host +
40
+ path); Agentic Market: `service_name` (fall back to `domain`).
41
+ - Price — CDP Bazaar: `accepts[].amount_display`; Agentic Market:
42
+ `endpoints[].pricing`.
43
+ - Cap at 6 rows; if `count` is higher, say so below the table ("12 total
44
+ matches, showing the top 6 — ask me to narrow the search for more").
45
+ - Immediately after the table, call `AskUserQuestion` — header `Service`,
46
+ one option per the table's first 4 rows (label: service name,
47
+ description: price from that row). `AskUserQuestion` hard-caps at 4
48
+ options, so it can't cover all 6 table rows as buttons — its built-in
49
+ "Other" choice is how the user reaches rows 5-6 (or refines the search):
50
+ they can type a service name or row text from the table, and it should
51
+ be matched back to that row rather than treated as a brand new search
52
+ query. Network and provider still surface naturally in Step 2's preview
53
+ and Step 3's confirm — they're just not repeated in this first table.
41
54
  - If the chosen item doesn't already carry a directly-callable URL (CDP
42
55
  Bazaar's `resource`, or an Agentic Market `endpoints[].url`), call
43
56
  `x402_get_service_details` with that item's reference to resolve one.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-wallet",
3
- "version": "0.1.98",
3
+ "version": "0.1.100",
4
4
  "description": "Codex plugin bridge for the AgentLayer wallet runtime.",
5
5
  "author": {
6
6
  "name": "AgentLayer"
@@ -35,10 +35,19 @@ wants only to ignore what they already typed.
35
35
  - Only if the triggering message carried no description or URL at all (a
36
36
  bare `$x402`), ask the user what they want to find or pay for before
37
37
  calling any tool.
38
- - Present the returned `items` as a numbered text list name/description,
39
- price (CDP Bazaar: `accepts[].amount_display`; Agentic Market:
40
- `endpoints[].pricing`), and network and wait for the user to pick a
41
- number, or to say how to refine the search if none fit.
38
+ - Present the top ~10 returned `items` as a compact Markdown table with a
39
+ leading `#` column, columns `# | Service | Price`:
40
+ - ServiceCDP Bazaar: `description` (fall back to `resource`'s host +
41
+ path); Agentic Market: `service_name` (fall back to `domain`).
42
+ - Price — CDP Bazaar: `accepts[].amount_display`; Agentic Market:
43
+ `endpoints[].pricing`.
44
+ - If `count` is higher than what's shown, say so below the table ("14
45
+ total matches, showing the top 10 — ask me to narrow the search for
46
+ more"). Network and provider still surface naturally in Step 2's
47
+ preview and Step 3's confirm — they're just not repeated in this first
48
+ table.
49
+ - Wait for the user's reply with a row number, or a request to refine the
50
+ search if none fit.
42
51
  - If the chosen item doesn't already carry a directly-callable URL (CDP
43
52
  Bazaar's `resource`, or an Agentic Market `endpoints[].url`), call
44
53
  `x402_get_service_details` with that item's reference to resolve one.
@@ -1,5 +1,5 @@
1
1
  name: agent-wallet
2
- version: 0.1.98
2
+ version: 0.1.100
3
3
  description: Thin Hermes Agent bridge to the existing AgentLayer/OpenClaw wallet backend
4
4
  provides_tools:
5
5
  - agent_wallet_tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentlayer.tech/wallet",
3
- "version": "0.1.98",
3
+ "version": "0.1.100",
4
4
  "description": "Universal AgentLayer wallet installer for OpenClaw, Codex, Claude Code, and Hermes.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wdk-btc-wallet",
3
- "version": "0.1.98",
3
+ "version": "0.1.100",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "description": "Separate BTC-only wallet service built on Tether WDK.",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wdk-evm-wallet",
3
- "version": "0.1.98",
3
+ "version": "0.1.100",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "description": "Separate EVM wallet service built on Tether WDK.",