@ens-node-metadata/agent 0.2.8 → 0.2.10

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 CHANGED
@@ -6,7 +6,7 @@ allowed-tools: Bash(node:*), Bash(ipfs:*), Bash(cast:*)
6
6
 
7
7
  # Agents
8
8
 
9
- A skill to help manage your agents metadata on ENS along with ERC-8004 management.
9
+ A skill to help manage your agents their ERC-8004 metadata on ENS.
10
10
 
11
11
  ## Bootstrap
12
12
 
@@ -114,7 +114,10 @@ ${issues}` });
114
114
  schemaId: result.data.name,
115
115
  version: "1.0.0"
116
116
  });
117
- setState({ status: "done", uri: `ipfs://${cid}` });
117
+ const uri = `ipfs://${cid}`;
118
+ process.stdout.write(`${JSON.stringify({ cid, uri })}
119
+ `);
120
+ setState({ status: "done", uri });
118
121
  exit();
119
122
  } catch (err) {
120
123
  setState({ status: "error", message: `Upload failed: ${err.message}` });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ens-node-metadata/agent",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "CLI for registering AI agents on ENS using ERC-8004",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",