shellmail 1.0.4 → 1.0.5

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/dist/index.js +5 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -117,12 +117,11 @@ program
117
117
  // Show OpenClaw integration snippet
118
118
  console.log(chalk.bold("─".repeat(50)));
119
119
  console.log(chalk.bold("\nOpenClaw Integration\n"));
120
- console.log(chalk.gray("Add this to your openclaw.json:\n"));
121
- console.log(chalk.cyan(`"shellmail": {
122
- "apiUrl": "https://shellmail.ai",
123
- "token": "${result.token}"
124
- }`));
125
- console.log(chalk.gray("\n(inside skills.entries)\n"));
120
+ console.log(chalk.gray("Install the skill from ClawHub:\n"));
121
+ console.log(chalk.cyan(" clawhub install aaronbatchelder/shellmail\n"));
122
+ console.log(chalk.gray("Then set your token:\n"));
123
+ console.log(chalk.cyan(` export SHELLMAIL_TOKEN="${result.token}"\n`));
124
+ console.log(chalk.gray("Or add to your openclaw.json under skills.entries.shellmail.env\n"));
126
125
  // Show CLI commands
127
126
  console.log(chalk.bold("─".repeat(50)));
128
127
  console.log(chalk.bold("\nCLI Commands\n"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shellmail",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "CLI for ShellMail - Email for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",