@plexor-dev/claude-code-plugin 0.1.0-beta.29 → 0.1.0-beta.30
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/README.md +4 -7
- package/package.json +1 -1
- package/scripts/postinstall.js +3 -3
package/README.md
CHANGED
|
@@ -32,14 +32,11 @@ This installs slash commands to `~/.claude/commands/`.
|
|
|
32
32
|
|
|
33
33
|
| Command | Description |
|
|
34
34
|
|---------|-------------|
|
|
35
|
-
| `/plexor-
|
|
36
|
-
| `/plexor-
|
|
37
|
-
| `/plexor-mode` | Set optimization mode (eco/balanced/quality/passthrough) |
|
|
38
|
-
| `/plexor-provider` | Force specific provider (auto/claude/deepseek/mistral/gemini) |
|
|
39
|
-
| `/plexor-config` | Quick config (enable/disable/cache/reset) |
|
|
40
|
-
| `/plexor-settings` | Advanced settings (API URL, mode, provider) |
|
|
41
|
-
| `/plexor-enabled` | Enable/disable the proxy |
|
|
35
|
+
| `/plexor-setup` | First-time setup wizard |
|
|
36
|
+
| `/plexor-login` | Authenticate with Plexor API key |
|
|
42
37
|
| `/plexor-logout` | Sign out and clear credentials |
|
|
38
|
+
| `/plexor-status` | View usage stats and savings |
|
|
39
|
+
| `/plexor-enabled` | Enable/disable Plexor routing |
|
|
43
40
|
|
|
44
41
|
## How It Works
|
|
45
42
|
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -218,10 +218,10 @@ function main() {
|
|
|
218
218
|
console.log(' └─────────────────────────────────────────────────────────────────┘');
|
|
219
219
|
console.log('');
|
|
220
220
|
console.log(' Available commands:');
|
|
221
|
-
console.log(' /plexor-
|
|
222
|
-
console.log(' /plexor-mode - Switch modes (eco/balanced/quality)');
|
|
221
|
+
console.log(' /plexor-setup - First-time setup wizard');
|
|
223
222
|
console.log(' /plexor-login - Authenticate with API key');
|
|
224
|
-
console.log(' /plexor-
|
|
223
|
+
console.log(' /plexor-status - Check connection and see savings');
|
|
224
|
+
console.log(' /plexor-enabled - Enable/disable Plexor routing');
|
|
225
225
|
console.log('');
|
|
226
226
|
console.log(' Documentation: https://plexor.dev/docs');
|
|
227
227
|
console.log('');
|