@q00bs/agent-sdk 1.1.2 → 1.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/SKILL.md +3 -3
- package/package.json +2 -1
package/SKILL.md
CHANGED
|
@@ -686,7 +686,7 @@ GET /api/v1/erc8004/identifier/build/{agentId}
|
|
|
686
686
|
|-----------|---------|----------|--------------------|
|
|
687
687
|
| `agentId` | integer | Yes | ERC-8004 agentId |
|
|
688
688
|
|
|
689
|
-
#### `register_erc8004_identity` (
|
|
689
|
+
#### `register_erc8004_identity` (FREE — no payment required)
|
|
690
690
|
Register a new ERC-8004 identity. Mints an ERC-721 NFT.
|
|
691
691
|
|
|
692
692
|
```
|
|
@@ -698,7 +698,7 @@ POST /api/v1/erc8004/identity/register
|
|
|
698
698
|
| `walletId` | string | Yes | Privy wallet ID |
|
|
699
699
|
| `ownerAddress` | string | No | Owner address |
|
|
700
700
|
|
|
701
|
-
#### `set_erc8004_agent_uri` (
|
|
701
|
+
#### `set_erc8004_agent_uri` (FREE — no payment required)
|
|
702
702
|
Set the URI for an ERC-8004 agent identity.
|
|
703
703
|
|
|
704
704
|
```
|
|
@@ -711,7 +711,7 @@ POST /api/v1/erc8004/identity/{agentId}/uri
|
|
|
711
711
|
| `agentId` | integer | Yes | ERC-8004 agentId |
|
|
712
712
|
| `uri` | string | Yes | New agent URI |
|
|
713
713
|
|
|
714
|
-
#### `set_erc8004_metadata` (
|
|
714
|
+
#### `set_erc8004_metadata` (FREE — no payment required)
|
|
715
715
|
Set a metadata key-value pair for an ERC-8004 agent identity.
|
|
716
716
|
|
|
717
717
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@q00bs/agent-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "TypeScript SDK for building trust-verified AI agents on the q00bs network (Base L2)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=18.0.0"
|
|
38
38
|
},
|
|
39
|
+
"homepage": "https://agent.q00bs.xyz",
|
|
39
40
|
"repository": {
|
|
40
41
|
"type": "git",
|
|
41
42
|
"url": "https://github.com/q00bs/agent-sdk"
|