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.
- package/dist/index.js +5 -6
- 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("
|
|
121
|
-
console.log(chalk.cyan(
|
|
122
|
-
|
|
123
|
-
|
|
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"));
|