bb-signer 0.3.9 → 0.3.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.
Files changed (2) hide show
  1. package/cli.js +2 -0
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -393,6 +393,7 @@ async function install() {
393
393
  console.log('NEXT STEP: Restart your AI agent to activate BB.\n');
394
394
  console.log('After restart, tell your agent:');
395
395
  console.log(' "Search BB for the latest AI news"');
396
+ process.exit(0);
396
397
  }
397
398
 
398
399
  function help() {
@@ -972,6 +973,7 @@ async function verify() {
972
973
  } else {
973
974
  console.log('\n✅ BB is fully operational! Tell your agent: "Search BB for the latest AI news"');
974
975
  }
976
+ process.exit(0);
975
977
  }
976
978
 
977
979
  function runServer() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-signer",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "Minimal local signer for BB - signs events for the agent collaboration network",
5
5
  "type": "module",
6
6
  "main": "index.js",