@plexor-dev/claude-code-plugin-staging 0.1.0-beta.6 → 0.1.0-beta.7

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-staging",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.7",
4
4
  "description": "STAGING - LLM cost optimization plugin for Claude Code (internal testing)",
5
5
  "main": "lib/constants.js",
6
6
  "bin": {
@@ -239,10 +239,10 @@ function main() {
239
239
  console.log(' └─────────────────────────────────────────────────────────────────┘');
240
240
  console.log('');
241
241
  console.log(' Available commands:');
242
- console.log(' /plexor-status - Check connection and see savings');
243
- console.log(' /plexor-mode - Switch modes (eco/balanced/quality)');
242
+ console.log(' /plexor-setup - First-time setup wizard');
244
243
  console.log(' /plexor-login - Authenticate with API key');
245
- console.log(' /plexor-settings - View/modify settings');
244
+ console.log(' /plexor-status - Check connection and see savings');
245
+ console.log(' /plexor-enabled - Enable/disable Plexor routing');
246
246
  console.log('');
247
247
  console.log(' Documentation: https://plexor.dev/docs');
248
248
  console.log('');