@holic512/slothtool 1.0.7 → 1.0.9
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 +1 -0
- package/lib/official-plugins.json +48 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -145,6 +145,7 @@ Package names are automatically converted to simple aliases:
|
|
|
145
145
|
## Official Plugins
|
|
146
146
|
|
|
147
147
|
- [@holic512/plugin-loc](../plugin-loc) - Lines of code counter with interactive features
|
|
148
|
+
- [@holic512/plugin-codex-switch](../plugin-codex-switch) - Codex config switcher with interactive menu, Ink views, backup/rollback, and cache cleanup
|
|
148
149
|
|
|
149
150
|
## Creating Plugins
|
|
150
151
|
|
|
@@ -65,6 +65,54 @@
|
|
|
65
65
|
"History cache",
|
|
66
66
|
"Bilingual support"
|
|
67
67
|
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "@holic512/plugin-llm-base",
|
|
71
|
+
"alias": "llm-base",
|
|
72
|
+
"description": "LLM 基础能力层 - 配置管理、OpenAI 协议兼容调用与调用日志",
|
|
73
|
+
"descriptionEn": "LLM base layer for profile management, OpenAI-compatible calls, and call logs",
|
|
74
|
+
"version": "latest",
|
|
75
|
+
"author": "holic512",
|
|
76
|
+
"features": [
|
|
77
|
+
"多 profile 配置管理",
|
|
78
|
+
"low/high 双模型切换",
|
|
79
|
+
"OpenAI Chat Completions 兼容",
|
|
80
|
+
"统一返回结构与错误码",
|
|
81
|
+
"调用日志(最近 500 条)",
|
|
82
|
+
"默认安全脱敏"
|
|
83
|
+
],
|
|
84
|
+
"featuresEn": [
|
|
85
|
+
"Multi-profile configuration",
|
|
86
|
+
"Low/high model switching",
|
|
87
|
+
"OpenAI Chat Completions compatible",
|
|
88
|
+
"Unified response schema and error codes",
|
|
89
|
+
"Call logs (latest 500 entries)",
|
|
90
|
+
"Secure masking by default"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "@holic512/plugin-codex-switch",
|
|
95
|
+
"alias": "codex-switch",
|
|
96
|
+
"description": "Codex 配置切换工具 - 自动发现配置、模型切换、缓存清理与回滚",
|
|
97
|
+
"descriptionEn": "Codex config switcher with auto discovery, model switching, cache cleanup, and rollback",
|
|
98
|
+
"version": "latest",
|
|
99
|
+
"author": "holic512",
|
|
100
|
+
"features": [
|
|
101
|
+
"自动发现 Codex 配置",
|
|
102
|
+
"modes/models 拉取与缓存回退",
|
|
103
|
+
"model/provider 切换与原子写入",
|
|
104
|
+
"自动备份与回滚",
|
|
105
|
+
"缓存清理 dry-run",
|
|
106
|
+
"交互菜单 + Ink 详情视图"
|
|
107
|
+
],
|
|
108
|
+
"featuresEn": [
|
|
109
|
+
"Auto-discover Codex config",
|
|
110
|
+
"Modes/models fetch with cache fallback",
|
|
111
|
+
"Model/provider switching with atomic write",
|
|
112
|
+
"Auto backup and rollback",
|
|
113
|
+
"Cache cleanup with dry-run",
|
|
114
|
+
"Interactive menu + Ink detail view"
|
|
115
|
+
]
|
|
68
116
|
}
|
|
69
117
|
]
|
|
70
118
|
}
|