@plexor-dev/claude-code-plugin-staging 0.1.0-beta.1 → 0.1.0-beta.2
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/commands/plexor-setup.md
CHANGED
|
@@ -61,7 +61,7 @@ If user selected "Yes, I have Claude MAX":
|
|
|
61
61
|
},
|
|
62
62
|
"settings": {
|
|
63
63
|
"enabled": true,
|
|
64
|
-
"apiUrl": "https://api.plexor.dev",
|
|
64
|
+
"apiUrl": "https://staging.api.plexor.dev",
|
|
65
65
|
"mode": "balanced",
|
|
66
66
|
"localCacheEnabled": true
|
|
67
67
|
}
|
|
@@ -72,7 +72,7 @@ If user selected "Yes, I have Claude MAX":
|
|
|
72
72
|
```json
|
|
73
73
|
{
|
|
74
74
|
"env": {
|
|
75
|
-
"ANTHROPIC_BASE_URL": "https://api.plexor.dev/gateway/anthropic",
|
|
75
|
+
"ANTHROPIC_BASE_URL": "https://staging.api.plexor.dev/gateway/anthropic",
|
|
76
76
|
"ANTHROPIC_AUTH_TOKEN": "[user's Plexor key]"
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -122,7 +122,7 @@ If user selected "No, I'll use a Plexor API key":
|
|
|
122
122
|
},
|
|
123
123
|
"settings": {
|
|
124
124
|
"enabled": true,
|
|
125
|
-
"apiUrl": "https://api.plexor.dev",
|
|
125
|
+
"apiUrl": "https://staging.api.plexor.dev",
|
|
126
126
|
"preferred_provider": "auto",
|
|
127
127
|
"mode": "balanced",
|
|
128
128
|
"localCacheEnabled": true
|
|
@@ -134,7 +134,7 @@ If user selected "No, I'll use a Plexor API key":
|
|
|
134
134
|
```json
|
|
135
135
|
{
|
|
136
136
|
"env": {
|
|
137
|
-
"ANTHROPIC_BASE_URL": "https://api.plexor.dev/gateway/anthropic",
|
|
137
|
+
"ANTHROPIC_BASE_URL": "https://staging.api.plexor.dev/gateway/anthropic",
|
|
138
138
|
"ANTHROPIC_AUTH_TOKEN": "[user's Plexor key]"
|
|
139
139
|
}
|
|
140
140
|
}
|
|
@@ -192,7 +192,8 @@ ${line('Settings')}
|
|
|
192
192
|
${line(`├── Optimization: ${optEnabled}`)}
|
|
193
193
|
${line(`├── Local cache: ${cacheEnabled}`)}
|
|
194
194
|
${line(`├── Mode: ${mode}`)}
|
|
195
|
-
${line(
|
|
195
|
+
${line(`├── Provider routing: ${provider}`)}
|
|
196
|
+
${line(`└── Endpoint: ${routing.baseUrl ? routing.baseUrl.replace('https://', '').substring(0, 30) : 'not configured'}`)}
|
|
196
197
|
└─────────────────────────────────────────────┘
|
|
197
198
|
|
|
198
199
|
Dashboard: ${dashboardUrl}
|
package/package.json
CHANGED