@plexor-dev/claude-code-plugin-staging 0.1.0-beta.11 → 0.1.0-beta.12
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.
|
@@ -270,15 +270,9 @@ ${line(`└── Cost saved: $${sessionCostSaved}`)}
|
|
|
270
270
|
const routingIndicator = routing.active ? '🟢 PLEXOR MODE: ON' : '🔴 PLEXOR MODE: OFF';
|
|
271
271
|
const envLabel = routing.isStaging ? '(staging)' : '(production)';
|
|
272
272
|
|
|
273
|
-
//
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
? ` ⚠ Warning: Config uses ${envMismatch.config} but routing is ${envMismatch.routing}\n`
|
|
277
|
-
: '';
|
|
278
|
-
|
|
279
|
-
if (mismatchWarning) {
|
|
280
|
-
console.log(mismatchWarning);
|
|
281
|
-
}
|
|
273
|
+
// Note: Environment mismatch warning removed - it caused false positives during
|
|
274
|
+
// concurrent operations and transient states. The partial state and config/routing
|
|
275
|
+
// mismatch warnings below provide more actionable feedback.
|
|
282
276
|
|
|
283
277
|
// Check for partial routing state (Plexor URL without valid auth)
|
|
284
278
|
const partialState = detectPartialState();
|
|
@@ -192,6 +192,25 @@ function removeConfigDirectory() {
|
|
|
192
192
|
|
|
193
193
|
function main() {
|
|
194
194
|
const args = process.argv.slice(2);
|
|
195
|
+
|
|
196
|
+
// Handle help flag
|
|
197
|
+
if (args.includes('--help') || args.includes('-h')) {
|
|
198
|
+
console.log('');
|
|
199
|
+
console.log(' Usage: plexor-uninstall [options]');
|
|
200
|
+
console.log('');
|
|
201
|
+
console.log(' Cleans up Plexor integration before npm uninstall.');
|
|
202
|
+
console.log('');
|
|
203
|
+
console.log(' Options:');
|
|
204
|
+
console.log(' --remove-config, -c Also remove ~/.plexor/ config directory');
|
|
205
|
+
console.log(' --quiet, -q Suppress output messages');
|
|
206
|
+
console.log(' --help, -h Show this help message');
|
|
207
|
+
console.log('');
|
|
208
|
+
console.log(' After running this command:');
|
|
209
|
+
console.log(' npm uninstall -g @plexor-dev/claude-code-plugin-staging');
|
|
210
|
+
console.log('');
|
|
211
|
+
process.exit(0);
|
|
212
|
+
}
|
|
213
|
+
|
|
195
214
|
const removeConfig = args.includes('--remove-config') || args.includes('-c');
|
|
196
215
|
const quiet = args.includes('--quiet') || args.includes('-q');
|
|
197
216
|
|
package/package.json
CHANGED