@silkysquad/silk 1.0.0 → 1.0.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/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/SKILL.md +2 -2
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
24
|
|
|
25
25
|
### Distribution
|
|
26
26
|
|
|
27
|
-
- Published to npm registry as `@
|
|
27
|
+
- Published to npm registry as `@silkysquad/silk`
|
|
28
28
|
- Published to ClawHub as "silkyway" skill
|
|
29
29
|
- Dedicated repository at https://github.com/silkysquad/silk
|
|
30
30
|
|
package/README.md
CHANGED
package/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: silk
|
|
|
3
3
|
version: 0.1.0
|
|
4
4
|
description: Agent payments on Solana. Send and receive USDC with cancellable escrow transfers. Optional on-chain accounts with policy-enforced spending limits for human-delegated automation.
|
|
5
5
|
homepage: https://silkyway.ai
|
|
6
|
-
metadata: {"category":"payments","api_base":"https://api.silkyway.ai","author":"silkysquad","openclaw":{"requires":{"bins":["silk"]},"install":[{"id":"silk-npm","kind":"node","label":"Silk CLI","package":"@
|
|
6
|
+
metadata: {"category":"payments","api_base":"https://api.silkyway.ai","author":"silkysquad","openclaw":{"requires":{"bins":["silk"]},"install":[{"id":"silk-npm","kind":"node","label":"Silk CLI","package":"@silkysquad/silk"}]}}
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
# Silkyway
|
|
@@ -13,7 +13,7 @@ Agent payments on Solana. Send and receive USDC — non-custodial, on-chain.
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install -g @
|
|
16
|
+
npm install -g @silkysquad/silk
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Requires Node.js 18+.
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silkysquad/silk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
|
-
"private": false
|
|
9
|
+
"private": false,
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
}
|
|
10
13
|
}
|