callme-openclaw-plugin 1.0.3 ā 1.0.4
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/package.json +1 -1
- package/setup.js +10 -40
package/package.json
CHANGED
package/setup.js
CHANGED
|
@@ -111,46 +111,16 @@ plugins:
|
|
|
111
111
|
|
|
112
112
|
// Done!
|
|
113
113
|
console.log('\n⨠\x1b[1;32mSetup complete!\x1b[0m\n');
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
// Step 6: Offer to start a call
|
|
125
|
-
const shouldCall = await question('š Start your first voice call now? (y/n): ');
|
|
126
|
-
|
|
127
|
-
if (shouldCall.toLowerCase() === 'y' || shouldCall.toLowerCase() === 'yes') {
|
|
128
|
-
console.log('\nš Starting voice call...');
|
|
129
|
-
console.log(' Type /call in your OpenClaw session to begin!\n');
|
|
130
|
-
console.log('š” Tip: You can also run:');
|
|
131
|
-
console.log(' - /voice-usage (Check your usage stats)');
|
|
132
|
-
console.log(' - /voice-keys (Manage API keys)\n');
|
|
133
|
-
} else {
|
|
134
|
-
console.log('\nš When ready, use these commands:');
|
|
135
|
-
console.log(' /call - Start voice call');
|
|
136
|
-
console.log(' /voice-usage - Check usage stats');
|
|
137
|
-
console.log(' /voice-keys - Manage API keys\n');
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
} catch (error) {
|
|
141
|
-
console.log('ā ļø Could not reload automatically. Please run manually:');
|
|
142
|
-
console.log(' \x1b[36mopenclaw reload\x1b[0m\n');
|
|
143
|
-
}
|
|
144
|
-
} else {
|
|
145
|
-
console.log('\nš Remember to reload OpenClaw:');
|
|
146
|
-
console.log(' \x1b[36mopenclaw reload\x1b[0m');
|
|
147
|
-
console.log('\nš Then use these commands:');
|
|
148
|
-
console.log(' /call - Start voice call');
|
|
149
|
-
console.log(' /voice-usage - Check usage stats');
|
|
150
|
-
console.log(' /voice-keys - Manage API keys\n');
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
console.log('Need help? https://docs.callme.ai/openclaw\n');
|
|
114
|
+
console.log('š \x1b[1mNext Steps:\x1b[0m\n');
|
|
115
|
+
console.log('1ļøā£ Restart your OpenClaw session (or restart the gateway)');
|
|
116
|
+
console.log('2ļøā£ Type \x1b[36m/call\x1b[0m to start your first voice call!\n');
|
|
117
|
+
console.log('š \x1b[1mAvailable Commands:\x1b[0m\n');
|
|
118
|
+
console.log(' /call Start a voice call');
|
|
119
|
+
console.log(' /voice-usage Check your usage stats');
|
|
120
|
+
console.log(' /voice-keys Manage your API keys\n');
|
|
121
|
+
console.log('š” \x1b[1mTip:\x1b[0m If you\'re in an active OpenClaw session, just restart it');
|
|
122
|
+
console.log(' (Ctrl+C and start again) for the plugin to load.\n');
|
|
123
|
+
console.log('š Need help? https://docs.callme.ai/openclaw\n');
|
|
154
124
|
|
|
155
125
|
rl.close();
|
|
156
126
|
}
|