@portkey/eoa-agent-skills 1.2.0 → 1.2.1

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/bin/setup.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bun
2
+ import './setup.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@portkey/eoa-agent-skills",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "AI Agent Skills for Portkey EOA Wallet — MCP, CLI, and SDK interfaces for wallet management, token transfers, asset queries, and contract interactions on aelf blockchain.",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -9,8 +9,8 @@
9
9
  "./mcp": "./src/mcp/server.ts"
10
10
  },
11
11
  "bin": {
12
- "portkey-eoa": "./portkey_eoa_skill.ts",
13
- "portkey-setup": "./bin/setup.ts"
12
+ "portkey-eoa": "./portkey_eoa_skill.js",
13
+ "portkey-setup": "./bin/setup.js"
14
14
  },
15
15
  "files": [
16
16
  "index.ts",
@@ -19,12 +19,17 @@
19
19
  "bin/",
20
20
  "cli-helpers.ts",
21
21
  "portkey_eoa_skill.ts",
22
+ "portkey_eoa_skill.js",
22
23
  "openclaw.json",
23
24
  "mcp-config.example.json",
24
25
  "README.md",
25
26
  "README.zh-CN.md",
26
27
  "LICENSE"
27
28
  ],
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/Portkey-Wallet/eoa-agent-skills.git"
32
+ },
28
33
  "publishConfig": {
29
34
  "access": "public"
30
35
  },
@@ -40,7 +45,7 @@
40
45
  },
41
46
  "dependencies": {
42
47
  "@modelcontextprotocol/sdk": "^1.26.0",
43
- "@portkey/aelf-signer": "^1.0.0",
48
+ "@portkey/aelf-signer": "1.0.1",
44
49
  "aelf-sdk": "^3.5.1-beta.0",
45
50
  "commander": "^12.1.0",
46
51
  "zod": "^3.24.0"
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bun
2
+ import './portkey_eoa_skill.ts';
File without changes