sello 0.1.6 → 0.1.7

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/cli/sello.js CHANGED
@@ -246,11 +246,14 @@ function initDemoCommand(args ) {
246
246
 
247
247
  console.log(`Created ${output}`);
248
248
  console.log("");
249
- console.log("Run:");
250
- console.log(" npm install sello");
249
+ console.log("Terminal 1: keep the local dev log running");
251
250
  console.log(" npx sello dev");
251
+ console.log("");
252
+ console.log("Terminal 2: emit and view a receipt");
252
253
  console.log(` node ${output}`);
253
254
  console.log(" npx sello actions");
255
+ console.log("");
256
+ console.log("Then open http://localhost:8787/actions");
254
257
  }
255
258
 
256
259
  function keysCommand(args ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sello",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Reference implementation of the Sello protocol for service-signed AI agent receipts.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
package/src/cli/sello.ts CHANGED
@@ -247,11 +247,14 @@ function initDemoCommand(args: string[]): void {
247
247
 
248
248
  console.log(`Created ${output}`);
249
249
  console.log("");
250
- console.log("Run:");
251
- console.log(" npm install sello");
250
+ console.log("Terminal 1: keep the local dev log running");
252
251
  console.log(" npx sello dev");
252
+ console.log("");
253
+ console.log("Terminal 2: emit and view a receipt");
253
254
  console.log(` node ${output}`);
254
255
  console.log(" npx sello actions");
256
+ console.log("");
257
+ console.log("Then open http://localhost:8787/actions");
255
258
  }
256
259
 
257
260
  function keysCommand(args: string[]): void {