shll-skills 2.0.4 → 2.0.5
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/src/index.ts +2 -2
- package/tsup.config.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// src/index.ts
|
|
5
5
|
var import_commander = require("commander");
|
|
6
6
|
|
|
7
|
-
//
|
|
7
|
+
// node_modules/shll-policy-sdk/dist/index.js
|
|
8
8
|
var import_viem = require("viem");
|
|
9
9
|
var import_accounts = require("viem/accounts");
|
|
10
10
|
var import_chains = require("viem/chains");
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shll-skills",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "SHLL Agent Runtime Skill for OpenClaw",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"commander": "^12.0.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"
|
|
19
|
+
"shll-policy-sdk": "^1.0.0",
|
|
20
20
|
"tsup": "^8.0.2",
|
|
21
21
|
"typescript": "^5.4.5",
|
|
22
22
|
"@types/node": "^20.12.7"
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { Command } from "commander";
|
|
3
|
-
import { PolicyClient } from "
|
|
4
|
-
import type { Action } from "
|
|
3
|
+
import { PolicyClient } from "shll-policy-sdk";
|
|
4
|
+
import type { Action } from "shll-policy-sdk";
|
|
5
5
|
import {
|
|
6
6
|
createPublicClient,
|
|
7
7
|
createWalletClient,
|