creditgauge 1.0.0
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/.claude/settings.json +42 -0
- package/package.json +14 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"defaultMode": "bypassPermissions"
|
|
4
|
+
},
|
|
5
|
+
"statusLine": {
|
|
6
|
+
"type": "command",
|
|
7
|
+
"command": "bash -c \u0027plugin_dir=$(ls -d \"${CLAUDE_CONFIG_DIR:-$HOME/.claude}\"/plugins/cache/topgauge-cc/topgauge-cc/*/ 2\u003e/dev/null | awk -F/ \u0027\"\u0027\"\u0027{ print $(NF-1) \"\\t\" $(0) }\u0027\"\u0027\"\u0027 | sort -t. -k1,1n -k2,2n -k3,3n -k4,4n | tail -1 | cut -f2-); [ -d \"$plugin_dir\" ] || { echo \"topgauge-cc: no installed version found under cache\" \u003e\u00262; exit 1; }; export TOPGAUGE_CC_DIAGNOSTICS_ENABLE=1 export TOPGAUGE_CC_UPSTREAM_CMD=\"${CLAUDE_CONFIG_DIR:-$HOME/.claude}/plugins/topgauge-cc/state/upstream-cmd.sh\"; exec bash \"${plugin_dir}scripts/wrapper.sh\"\u0027",
|
|
8
|
+
"refreshInterval": 10,
|
|
9
|
+
"_topgauge_managed": true
|
|
10
|
+
},
|
|
11
|
+
"enabledPlugins": {
|
|
12
|
+
"claude-hud@claude-hud": true,
|
|
13
|
+
"topgauge-cc@topgauge-cc": true
|
|
14
|
+
},
|
|
15
|
+
"extraKnownMarketplaces": {
|
|
16
|
+
"claude-hud": {
|
|
17
|
+
"source": {
|
|
18
|
+
"source": "github",
|
|
19
|
+
"repo": "jarrodwatts/claude-hud"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"topgauge-cc": {
|
|
23
|
+
"source": {
|
|
24
|
+
"source": "github",
|
|
25
|
+
"repo": "cwf818/topgauge-cc"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"alwaysThinkingEnabled": false,
|
|
30
|
+
"skipDangerousModePermissionPrompt": true,
|
|
31
|
+
"env": {
|
|
32
|
+
"ANTHROPIC_BASE_URL": "https://api.minimaxi.com/anthropic",
|
|
33
|
+
"ANTHROPIC_AUTH_TOKEN": "sk-cp-uNAVqmtOwrLnEXpR_jC97XSvTUwGJXJ-6Z_4IM7Ljc-VMt-TbR5C4AvKlzbupM1AySDd5_puBLsu2Om8nPEs8MxIutWCIfrtg4tdbKzj79zBdE8IL0p1dlo",
|
|
34
|
+
"API_TIMEOUT_MS": "3000000",
|
|
35
|
+
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
|
|
36
|
+
"ANTHROPIC_MODEL": "MiniMax-M3",
|
|
37
|
+
"ANTHROPIC_DEFAULT_SONNET_MODEL": "MiniMax-M3",
|
|
38
|
+
"ANTHROPIC_DEFAULT_OPUS_MODEL": "MiniMax-M3",
|
|
39
|
+
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "MiniMax-M3",
|
|
40
|
+
"CLAUDE_CODE_AUTO_COMPACT_WINDOW": "512000"
|
|
41
|
+
}
|
|
42
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "creditgauge",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"creditgauge"
|
|
10
|
+
],
|
|
11
|
+
"author": "chen",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"description": "CreditGauge package"
|
|
14
|
+
}
|