@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 CHANGED
@@ -32,14 +32,11 @@ This installs slash commands to `~/.claude/commands/`.
32
32
 
33
33
  | Command | Description |
34
34
  |---------|-------------|
35
- | `/plexor-login` | Authenticate with Plexor |
36
- | `/plexor-status` | View usage stats and savings |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plexor-dev/claude-code-plugin",
3
- "version": "0.1.0-beta.29",
3
+ "version": "0.1.0-beta.30",
4
4
  "description": "LLM cost optimization plugin for Claude Code - Save up to 90% on AI costs",
5
5
  "main": "lib/constants.js",
6
6
  "bin": {
@@ -218,10 +218,10 @@ function main() {
218
218
  console.log(' └─────────────────────────────────────────────────────────────────┘');
219
219
  console.log('');
220
220
  console.log(' Available commands:');
221
- console.log(' /plexor-status - Check connection and see savings');
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-settings - View/modify settings');
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('');