swixter 0.0.9 → 0.0.11
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 +7 -2
- package/dist/cli/index.js +1042 -176
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -57,6 +57,9 @@ swixter claude switch my-profile
|
|
|
57
57
|
|
|
58
58
|
# Apply profile to Claude Code
|
|
59
59
|
swixter claude apply
|
|
60
|
+
|
|
61
|
+
# Or launch the Web UI (new!)
|
|
62
|
+
swixter ui
|
|
60
63
|
```
|
|
61
64
|
|
|
62
65
|
## Built-in Providers
|
|
@@ -92,6 +95,7 @@ Supports OpenRouter, DeepSeek, MiniMax, and any OpenAI-compatible API.
|
|
|
92
95
|
🔧 **Flexible** - Works with any OpenAI-compatible API
|
|
93
96
|
🎯 **Model config** - Set specific models per profile (Claude: Sonnet/Opus/Haiku; Codex/Qwen: any model)
|
|
94
97
|
📦 **Lightweight** - Small package size, zero bloat
|
|
98
|
+
🌐 **Web UI** - Browser-based configuration management (new in v0.1.0!)
|
|
95
99
|
|
|
96
100
|
## Commands
|
|
97
101
|
|
|
@@ -161,6 +165,7 @@ swixter providers remove <id> # Remove provider
|
|
|
161
165
|
### Configuration
|
|
162
166
|
|
|
163
167
|
```bash
|
|
168
|
+
swixter ui # Launch Web UI (new!)
|
|
164
169
|
swixter export config.json # Export configs
|
|
165
170
|
swixter import config.json # Import configs
|
|
166
171
|
swixter completion bash # Shell completion
|
|
@@ -343,8 +348,8 @@ Future plans for Swixter:
|
|
|
343
348
|
- [ ] Support for more AI coding assistants
|
|
344
349
|
- [ ] Profile templates for common setups
|
|
345
350
|
- [ ] Configuration validation and migration tools
|
|
346
|
-
- [
|
|
347
|
-
- [ ] Cloud sync for profiles (optional)
|
|
351
|
+
- [x] Web UI for profile management (v0.1.0)
|
|
352
|
+
- [ ] Cloud sync for profiles (optional, planned)
|
|
348
353
|
|
|
349
354
|
## Contributing
|
|
350
355
|
|